:root {
    --bg-color: #0b0e14;
    --card-bg: rgba(22, 27, 34, 0.8);
    --accent-color: #00d4ff;
    --accent-glow: rgba(0, 212, 255, 0.3);
    --text-main: #e6edf3;
    --text-dim: #8b949e;
    --star-color: #FFF;
    --nav-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Custom Cursor */
@media (pointer: fine) {
    body { cursor: none; }
    .custom-cursor {
        width: 20px;
        height: 20px;
        border: 2px solid var(--accent-color);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, background 0.2s;
        box-shadow: 0 0 10px var(--accent-glow);
    }
    .custom-cursor.cursor-hover {
        width: 40px;
        height: 40px;
        background: rgba(0, 212, 255, 0.1);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb { 
    background: #30363d; 
    border-radius: 10px; 
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-color); }

h1, h2, h3, .logo {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Scroll Progress HUD */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 2000;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--accent-color);
    width: 0%;
    box-shadow: 0 0 10px var(--accent-glow);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
header {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(11, 14, 20, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    height: 70px;
}

nav {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Production Note: Replace with local optimized WebP asset */
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.05) 0%, rgba(11, 14, 20, 1) 100%),
                url('https://images.unsplash.com/photo-1614732414444-096e5f1122d5?auto=format&fit=crop&q=80&w=1920');
    background-color: var(--bg-color);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--accent-glow);
    animation: float 6s ease-in-out infinite;
}

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

.hero-subtext {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}

.accent {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: var(--accent-color);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: #000;
}

.fever-btn {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 5px 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.fever-btn:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Games Section */
.games-section {
    padding: 100px 0;
}

.games-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.game-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #30363d;
    transition: var(--transition);
}

.game-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-info {
    padding: 40px;
}

.status {
    color: var(--accent-color);
    font-size: 0.8rem;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}

.platforms {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.platform-badge {
    font-size: 0.7rem;
    font-family: 'Orbitron', sans-serif;
    padding: 4px 10px;
    border: 1px solid #30363d;
    border-radius: 4px;
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    transition: var(--transition);
    cursor: default;
}

.platform-badge:hover {
    border-color: var(--accent-color);
    color: var(--text-main);
    box-shadow: 0 0 10px var(--accent-glow);
}

.mechanic-highlight {
    margin: 25px 0;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border-left: 3px solid var(--accent-color);
}

.mechanic-highlight h4 { font-size: 0.9rem; margin-bottom: 10px; color: var(--accent-color); }
.mechanic-highlight ul { list-style: none; font-size: 0.85rem; }
.mechanic-highlight li { margin-bottom: 5px; color: var(--text-dim); }
.mechanic-highlight strong { color: var(--text-main); }

/* Arcade Scanline Effect */
.game-display {
    position: relative;
    overflow: hidden;
}

.scanlines {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(18, 16, 16, 0) 50%,
        rgba(0, 0, 0, 0.25) 50%
    );
    background-size: 100% 4px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.3;
}

.game-display {
    background: radial-gradient(circle at center, #1a1f26, #0b0e14);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Satellite Animation */
.satellite-orbit {
    position: relative;
    width: 200px;
    height: 200px;
    border: 1px dashed rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.core { position: absolute; top: 50%; left: 50%; width: 40px; height: 40px; background: white; border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 20px white; }
.sat { position: absolute; width: 20px; height: 20px; border-radius: 50%; }
.collector { top: -10px; left: 50%; transform: translateX(-50%); background: var(--accent-color); box-shadow: 0 0 15px var(--accent-color); }
.shield { bottom: -10px; left: 50%; transform: translateX(-50%); background: #ff0055; box-shadow: 0 0 15px #ff0055; }

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

/* Starfield Parallax */
.starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.stars {
    position: absolute;
    background: transparent;
    top: 0;
    left: 0;
}

.stars-sm {
    --p-speed: 15;
    width: 1px;
    height: 1px;
    box-shadow: 454px 582px var(--star-color), 1754px 348px var(--star-color), 251px 1667px var(--star-color), 1200px 800px var(--star-color), 400px 100px var(--star-color), 1500px 1500px var(--star-color), 800px 2000px var(--star-color), 100px 1200px var(--star-color), 1900px 100px var(--star-color), 600px 900px var(--star-color);
    animation: space-drift 150s linear infinite, twinkle 4s ease-in-out infinite;
}

.stars-md {
    --p-speed: 30;
    width: 2px;
    height: 2px;
    box-shadow: 104px 482px var(--star-color), 154px 148px var(--star-color), 851px 667px var(--star-color), 300px 1100px var(--star-color), 1400px 400px var(--star-color), 900px 1800px var(--star-color), 1800px 1200px var(--star-color);
    animation: space-drift 100s linear infinite, twinkle 3s ease-in-out infinite 1s;
    opacity: 0.7;
}

.stars-lg {
    --p-speed: 50;
    width: 3px;
    height: 3px;
    box-shadow: 204px 182px var(--star-color), 554px 848px var(--star-color), 1251px 267px var(--star-color), 1000px 1400px var(--star-color), 200px 1900px var(--star-color);
    animation: space-drift 50s linear infinite, twinkle 5s ease-in-out infinite 2s;
    opacity: 0.5;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Shooting Stars */
.shooting-star {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0;
    transform: rotate(-45deg) translateX(0);
    pointer-events: none;
    animation: shooting-star-ani 8s ease-in infinite;
}

.shooting-star:nth-child(1) { top: 10%; left: 90%; animation-delay: 0s; }
.shooting-star:nth-child(2) { top: 30%; left: 80%; animation-delay: 3s; animation-duration: 10s; }
.shooting-star:nth-child(3) { top: 0%; left: 70%; animation-delay: 6s; animation-duration: 12s; }

@keyframes shooting-star-ani {
    0% {
        opacity: 0;
        transform: rotate(-45deg) translateX(0);
    }
    1% {
        opacity: 1;
    }
    10% {
        opacity: 0;
        transform: rotate(-45deg) translateX(-1000px);
    }
    100% {
        opacity: 0;
    }
}

@keyframes space-drift {
    from { transform: translate(calc(var(--m-x, 0) * var(--p-speed, 0) * -1px), calc(var(--m-y, 0) * var(--p-speed, 0) * -1px)); }
    to { transform: translate(calc(var(--m-x, 0) * var(--p-speed, 0) * -1px), calc(var(--m-y, 0) * var(--p-speed, 0) * -1px - 2000px)); }
}

/* Features & Powerups */
.features-section { padding: 60px 0; background: rgba(255, 255, 255, 0.02); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; }
.feature-item .icon { font-size: 2rem; display: block; margin-bottom: 15px; }

.powerups-section { 
    padding: 100px 0; 
    text-align: center; 
    position: relative; 
    overflow: hidden; 
}

.powerups-section .container {
    position: relative;
    z-index: 1;
}

.powerups-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; }
.powerup-card {
    padding: 30px 20px;
    background: var(--card-bg);
    border: 1px solid #30363d;
    border-radius: 10px;
    transition: var(--transition);
}
.powerup-card h4 { font-size: 0.9rem; margin-bottom: 10px; }
.powerup-card p { font-size: 0.8rem; color: var(--text-dim); }

.chronos:hover { border-color: #ffd700; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
.ion:hover { border-color: #e0e0e0; box-shadow: 0 0 15px rgba(224, 224, 224, 0.2); }
.vortex:hover { border-color: #00d4ff; box-shadow: 0 0 15px rgba(0, 212, 255, 0.2); }
.hyper:hover { border-color: #00ff88; box-shadow: 0 0 15px rgba(0, 255, 136, 0.2); }

.modes-tagline { margin-top: 50px; padding: 20px; border-top: 1px solid #30363d; color: var(--accent-color); font-family: 'Orbitron'; font-size: 0.8rem; }

/* Gallery & FAQ Sections */
.gallery-section, .faq-section {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    aspect-ratio: 16/9;
    background: var(--card-bg);
    border: 1px solid #30363d;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    border-color: var(--accent-color);
    transform: scale(1.03);
}

.img-placeholder { color: var(--text-dim); font-size: 0.8rem; }

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
    display: grid;
    gap: 30px;
    text-align: left;
}

.faq-item h4 { color: var(--accent-color); margin-bottom: 10px; }
.faq-item p { color: var(--text-dim); font-size: 0.95rem; }

/* Roadmap Section */
.roadmap-section {
    padding: 100px 0;
    text-align: center;
}

.roadmap-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding-left: 30px;
    border-left: 2px solid #30363d;
    text-align: left;
}

.roadmap-item { position: relative; margin-bottom: 50px; }
.roadmap-dot { position: absolute; left: -41px; top: 0; width: 20px; height: 20px; background: #30363d; border-radius: 50%; border: 4px solid var(--bg-color); }
.roadmap-item.completed .roadmap-dot { background: var(--accent-color); box-shadow: 0 0 10px var(--accent-glow); }
.roadmap-item.current .roadmap-dot { background: #fff; box-shadow: 0 0 15px rgba(255, 255, 255, 0.4); animation: pulse 2s infinite; }
.roadmap-item h4 { margin-bottom: 5px; }
.roadmap-item.completed h4 { color: var(--accent-color); }

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
}
.scroll-hint span {
    width: 25px;
    height: 45px;
    border: 2px solid var(--text-dim);
    border-radius: 20px;
    position: relative;
    display: block;
}
.scroll-hint span::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--accent-color);
    position: absolute;
    left: 50%; top: 10px; transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}
.loading-screen.fade-out { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    animation: loader-pulse 2s infinite;
}
@keyframes loader-pulse {
    0%, 100% { opacity: 0.5; filter: blur(2px); }
    50% { opacity: 1; filter: blur(0); }
}
.loader-bar-container {
    width: 200px; height: 4px;
    background: #161b22;
    margin: 0 auto 10px;
    border-radius: 2px;
    overflow: hidden;
}
.loader-bar {
    width: 0%; height: 100%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
    animation: loader-fill 1.8s ease-in-out forwards;
}
@keyframes loader-fill { 0% { width: 0%; } 100% { width: 100%; } }

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* About Section */
.about-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(0, 212, 255, 0.02) 100%);
}

.about-lead {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--text-dim);
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #30363d;
    width: 100%;
    max-width: 350px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member:hover { border-color: var(--accent-color); }

.member-bio {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-top: 15px;
    line-height: 1.5;
}

.member-socials {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-socials a {
    font-size: 1.1rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: var(--transition);
}

.member-socials a:hover { color: var(--accent-color); }

.member-avatar {
    width: 80px;
    height: 80px;
    background: #21262d;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 15px rgba(0, 212, 255, 0.2);
}

.member-avatar::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.3;
    top: -10%;
    left: -25%;
    box-shadow: 0 0 10px var(--accent-color);
    animation: avatar-scan 3s linear infinite;
}

@keyframes avatar-scan {
    0% { top: -10%; }
    100% { top: 110%; }
}

/* Discord CTA */
.discord-cta { padding: 80px 0; }
.discord-card {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.3);
    transition: var(--transition);
}
.discord-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(88, 101, 242, 0.5); }
.discord-icon { font-size: 3.5rem; margin-bottom: 20px; }
.discord-card p { max-width: 500px; margin: 15px auto 30px; opacity: 0.9; }
.discord-btn { background: white; color: #5865F2; }
.discord-btn:hover { background: #f0f0f0; color: #4752C4; box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); }

.team-member h4 { margin-bottom: 5px; }
.team-member span { color: var(--accent-color); font-size: 0.8rem; font-weight: bold; }

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.press-section {
    padding: 100px 0;
    border-top: 1px solid #30363d;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    background: #161b22;
    border: 1px solid #30363d;
    color: var(--text-main);
    border-radius: 5px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--accent-color);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.newsletter-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--accent-color);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    background: #0b0e14;
    border: 1px solid #30363d;
    color: white;
    border-radius: 5px;
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid #30363d;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
}

.social-links {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    font-size: 1.2rem;
    color: var(--text-main);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-glow);
}

/* Legal Content Styles */
.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--accent-color);
}
.legal-content p { margin-bottom: 15px; color: var(--text-dim); }

/* Contact Success State */
.contact-success {
    text-align: center;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    animation: fadeIn 0.5s ease-out;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 0 15px var(--accent-glow);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px var(--accent-glow);
}

body.fever-mode {
    --accent-color: #ff00e5;
    --accent-glow: rgba(255, 0, 229, 0.3);
    --star-color: var(--accent-color);
    animation: fever-shake 0.15s infinite;
}

@keyframes fever-shake {
    0% { transform: translate(0, 0); }
    25% { transform: translate(1px, 1px); }
    50% { transform: translate(-1px, -1px); }
    75% { transform: translate(1px, -1px); }
    100% { transform: translate(0, 0); }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    nav ul.active { right: 0; }
    nav ul li { margin: 20px 0; }
    .nav-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); background: var(--accent-color); }
    .nav-toggle.active .bar:nth-child(2) { opacity: 0; }
    .nav-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background: var(--accent-color); }
    .game-card {
        grid-template-columns: 1fr;
    }
    .game-display {
        min-height: 250px;
    }
}
