/* Steam-Themed Portfolio Styles - Single Page Version */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Steam Color Palette */
    --steam-dark: #1b2838;
    --steam-darker: #171a21;
    --steam-darkest: #0e1015;
    --steam-blue: #66c0f4;
    --steam-blue-hover: #9cc8e4;
    --steam-green: #4c9e00;
    --steam-green-light: #a4d007;
    --steam-grey: #2a475e;
    --steam-grey-light: #c7d5e0;
    --steam-text: #c6d4df;
    --steam-text-dim: #8f98a0;
    --steam-card: #16202d;
    --steam-highlight: #00d4ff;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: scroll; /* Always show scrollbar */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, var(--steam-darker) 0%, var(--steam-darkest) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--steam-text);
    padding: 20px;
    padding-left: 100px; /* Space for floating nav */
    position: relative;
    overflow-x: hidden;
}

/* Animated Background Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--steam-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--steam-blue);
    animation: float-up 15s infinite linear;
    opacity: 0;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 15s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 12s; }
.particle:nth-child(3) { left: 35%; animation-delay: 4s; animation-duration: 18s; }
.particle:nth-child(4) { left: 50%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(5) { left: 65%; animation-delay: 3s; animation-duration: 14s; }
.particle:nth-child(6) { left: 80%; animation-delay: 5s; animation-duration: 16s; }
.particle:nth-child(7) { left: 90%; animation-delay: 1s; animation-duration: 13s; }
.particle:nth-child(8) { left: 45%; animation-delay: 6s; animation-duration: 17s; }

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    background: rgba(22, 32, 45, 0.95);
    padding: 20px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    max-height: 90vh; /* Limit height to viewport */
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden;
}

/* Custom scrollbar for floating nav */
.floating-nav::-webkit-scrollbar {
    width: 4px;
}

.floating-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.floating-nav::-webkit-scrollbar-thumb {
    background: var(--steam-blue);
    border-radius: 2px;
}

.floating-nav::-webkit-scrollbar-thumb:hover {
    background: var(--steam-blue-hover);
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--steam-text-dim);
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 12px;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--steam-blue);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.nav-link.active::before {
    height: 30px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--steam-blue);
    background: rgba(102, 192, 244, 0.1);
}

.nav-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.nav-link:hover .nav-icon {
    transform: scale(1.2);
}

.nav-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.nav-link:hover .nav-label,
.nav-link.active .nav-label {
    opacity: 1;
    max-height: 20px;
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

/* Section Cards */
.section-card {
    margin-bottom: 40px;
    scroll-margin-top: 20px;
}

/* Steam Card Styles */
.steam-card {
    background: var(--steam-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    animation: card-entrance 0.8s ease;
    position: relative;
    overflow: hidden;
}

.steam-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--steam-blue) 0%, transparent 70%);
    opacity: 0.03;
    animation: rotate-glow 30s linear infinite;
    pointer-events: none;
    z-index: 0;
    border-radius: 8px;
}

/* Ensure content is above the rotating background */
.steam-card > * {
    position: relative;
    z-index: 1;
}

@keyframes rotate-glow {
    0% { opacity: 0.03; }
    50% { opacity: 0.05; }
    100% { opacity: 0.03; }
}

@keyframes card-entrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--steam-text);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-subtitle {
    font-size: 14px;
    color: var(--steam-text-dim);
}

/* Status Bar */
.status-bar {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Internship Banner */
.internship-banner {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 140, 0, 0.15));
    border: 2px solid rgba(255, 140, 0, 0.6);
    border-radius: 8px;
    padding: 12px 20px;
    margin-top: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: banner-pulse 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.2);
}

.banner-icon {
    font-size: 20px;
    animation: bounce-subtle 2s ease-in-out infinite;
}

.banner-text {
    font-size: 13px;
    font-weight: 600;
    color: #ffa500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

@keyframes banner-pulse {
    0%, 100% {
        border-color: rgba(255, 140, 0, 0.6);
        box-shadow: 0 4px 15px rgba(255, 140, 0, 0.2);
    }
    50% {
        border-color: rgba(255, 140, 0, 0.9);
        box-shadow: 0 4px 20px rgba(255, 140, 0, 0.4);
    }
}

@keyframes bounce-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.online {
    background: var(--steam-green-light);
    box-shadow: 0 0 10px var(--steam-green-light);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.status-text {
    font-size: 11px;
    color: var(--steam-green-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Avatar with Animation */
.avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.avatar-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, var(--steam-blue), transparent);
    opacity: 0.3;
    animation: glow 2s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes glow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.avatar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--steam-blue), var(--steam-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    animation: avatar-float 3s ease-in-out infinite;
}

@keyframes avatar-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.avatar-emoji {
    font-size: 60px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.level-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--steam-green);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    z-index: 3;
    animation: badge-pop 0.5s ease 1s both;
}

@keyframes badge-pop {
    0% { transform: scale(0) rotate(-180deg); }
    50% { transform: scale(1.2) rotate(10deg); }
    100% { transform: scale(1) rotate(0); }
}

/* Glitch Text Effect */
.name {
    font-size: 32px;
    font-weight: 700;
    color: var(--steam-text);
    margin-bottom: 5px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch-active::before {
    animation: glitch-1 0.3s ease;
    color: var(--steam-blue);
    z-index: -1;
}

.glitch-active::after {
    animation: glitch-2 0.3s ease;
    color: var(--steam-green-light);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); opacity: 0; }
    20% { clip-path: inset(20% 0 30% 0); transform: translate(-2px, 2px); opacity: 1; }
    40% { clip-path: inset(50% 0 20% 0); transform: translate(2px, -2px); opacity: 1; }
    60% { clip-path: inset(10% 0 60% 0); transform: translate(-1px, 1px); opacity: 1; }
    80% { clip-path: inset(80% 0 5% 0); transform: translate(1px, -1px); opacity: 1; }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); opacity: 0; }
    20% { clip-path: inset(60% 0 10% 0); transform: translate(2px, -1px); opacity: 1; }
    40% { clip-path: inset(20% 0 40% 0); transform: translate(-2px, 1px); opacity: 1; }
    60% { clip-path: inset(70% 0 15% 0); transform: translate(1px, 2px); opacity: 1; }
    80% { clip-path: inset(5% 0 80% 0); transform: translate(-1px, -2px); opacity: 1; }
}

/* Neon Text */
.neon-text {
    font-size: 18px;
    color: var(--steam-blue);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    text-shadow: 0 0 10px var(--steam-blue), 0 0 20px var(--steam-blue);
    animation: neon-pulse 2s ease-in-out infinite;
}

@keyframes neon-pulse {
    0%, 100% { text-shadow: 0 0 10px var(--steam-blue), 0 0 20px var(--steam-blue); }
    50% { text-shadow: 0 0 15px var(--steam-blue), 0 0 30px var(--steam-blue), 0 0 40px var(--steam-blue); }
}

.bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--steam-text-dim);
    margin-bottom: 30px;
    padding: 0 10px;
    text-align: center;
}

/* Animated Stats */
.stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: stat-slide 0.6s ease both;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.3s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }

@keyframes stat-slide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-icon {
    font-size: 24px;
    margin-bottom: 5px;
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--steam-green-light);
    text-shadow: 0 0 10px rgba(164, 208, 7, 0.5);
}

.stat-label {
    font-size: 10px;
    color: var(--steam-text-dim);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-bar {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--steam-blue), var(--steam-green-light));
    border-radius: 2px;
    animation: fill-bar 1.5s ease both;
}

@keyframes fill-bar {
    from { width: 0; }
}

/* Achievements */
.achievements {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.achievement {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 0;
    font-family: inherit;
}

.achievement.unlocked {
    background: linear-gradient(135deg, rgba(164, 208, 7, 0.2), rgba(76, 158, 0, 0.2));
    border-color: var(--steam-green);
}

.achievement.unlocked:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px var(--steam-green-light);
}

.achievement.locked {
    opacity: 0.5;
    cursor: not-allowed;
}

.achievement::after {
    content: attr(title);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--steam-darker);
    color: var(--steam-text);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.achievement:hover::after {
    opacity: 1;
}

/* Steam-style Buttons */
.buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.steam-btn {
    flex: 1;
    max-width: 300px;
    padding: 15px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg) translate(-100%, -100%);
    transition: transform 0.6s ease;
}

.steam-btn:hover .btn-shine {
    transform: rotate(45deg) translate(100%, 100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--steam-green) 0%, var(--steam-green-light) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 158, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(76, 158, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--steam-blue);
    border: 2px solid var(--steam-blue);
}

.btn-secondary:hover {
    background: var(--steam-blue);
    color: var(--steam-darkest);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 192, 244, 0.5);
}

.btn-resume {
    background: linear-gradient(135deg, #b366ff 0%, #8b3dff 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 61, 255, 0.3);
}

.btn-resume:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 61, 255, 0.5);
}

.btn-icon {
    font-size: 18px;
}

.btn-text {
    font-size: 13px;
}

.btn-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    margin-left: 5px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--steam-blue), var(--steam-green-light), var(--steam-blue));
    background-size: 200% 100%;
    animation: gradient-slide 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover::after {
    opacity: 1;
}

@keyframes gradient-slide {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.project-card:hover {
    transform: translateY(-5px);
    background: rgba(102, 192, 244, 0.1);
    border-color: var(--steam-blue);
    box-shadow: 0 10px 30px rgba(102, 192, 244, 0.2);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.project-icon {
    font-size: 32px;
    animation: project-icon-glow 2s ease-in-out infinite;
}

@keyframes project-icon-glow {
    0%, 100% { filter: drop-shadow(0 0 5px transparent); }
    50% { filter: drop-shadow(0 0 10px var(--steam-blue)); }
}

.project-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--steam-text);
    margin-bottom: 5px;
}

.project-tech {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.tech-tag {
    background: rgba(102, 192, 244, 0.2);
    color: var(--steam-blue);
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 10px;
    border: 1px solid var(--steam-blue);
    text-transform: uppercase;
}

.project-description {
    color: var(--steam-text-dim);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

.project-stats {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    font-size: 11px;
    color: var(--steam-text-dim);
    flex-wrap: wrap;
}

.project-stats .stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.project-links {
    display: flex;
    gap: 10px;
}

.project-link {
    padding: 8px 15px;
    background: var(--steam-green);
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-link:hover {
    background: var(--steam-green-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(164, 208, 7, 0.3);
}

/* Skills Section */
.skills-grid {
    display: grid;
    gap: 20px;
}

.skill-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.skill-category:hover {
    border-color: var(--steam-blue);
    background: rgba(102, 192, 244, 0.05);
    transform: translateX(5px);
}

.skill-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.skill-icon {
    font-size: 28px;
}

.skill-category-header h3 {
    font-size: 16px;
    color: var(--steam-text);
    font-weight: 600;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: rgba(102, 192, 244, 0.15);
    color: var(--steam-blue);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid rgba(102, 192, 244, 0.3);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(102, 192, 244, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(102, 192, 244, 0.3);
}

/* Social Links */
.social-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 15px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--steam-blue), transparent);
    transition: left 0.5s ease;
    opacity: 0.1;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateX(10px);
    background: rgba(102, 192, 244, 0.1);
    border-color: var(--steam-blue);
    box-shadow: 0 0 20px rgba(102, 192, 244, 0.3);
}

.social-icon {
    font-size: 24px;
}

.social-info {
    flex: 1;
}

.social-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--steam-text);
    display: block;
}

.social-username {
    font-size: 12px;
    color: var(--steam-text-dim);
}

.steam-arrow {
    color: var(--steam-green-light);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.social-link:hover .steam-arrow {
    transform: translateX(5px);
}

/* Project Filters */
.project-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--steam-text-dim);
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--steam-blue);
    color: white;
    border-color: var(--steam-blue);
    transform: scale(1.05);
}

.filter-tag:focus {
    outline: 2px solid var(--steam-blue);
    outline-offset: 2px;
}

/* Footer */
.footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.steam-logo {
    font-size: 20px;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer p {
    font-size: 11px;
    color: var(--steam-text-dim);
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .floating-nav {
        left: 10px;
        padding: 15px 10px;
        gap: 10px;
    }

    .nav-icon {
        font-size: 20px;
    }

    .nav-label {
        display: none;
    }

    .steam-card {
        padding: 30px 20px;
    }
    
    .name {
        font-size: 26px;
    }

    .section-title {
        font-size: 28px;
    }
    
    .stats {
        gap: 10px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .achievements {
        gap: 10px;
    }
    
    .achievement {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .internship-banner {
        padding: 10px 15px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    
    .banner-text {
        font-size: 11px;
        letter-spacing: 0.8px;
    }
    
    .banner-icon {
        font-size: 16px;
    }

    .buttons {
        flex-direction: column;
    }

    .steam-btn {
        max-width: 100%;
    }
}
