/* ============================================
   ARCHIE'S FOOTBALL — Marketing Website
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Pitch & Stadium palette */
    --bg-dark: #0a1628;
    --bg-darker: #060f1d;
    --bg-card: #0f1f3a;
    --bg-card-hover: #142747;
    --pitch-green: #1a8d3f;
    --pitch-light: #22b84e;
    --accent: #00e676;
    --accent-glow: rgba(0, 230, 118, 0.3);
    --accent-secondary: #ffd740;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(0, 230, 118, 0.25);

    /* Typography */
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.3s, opacity 0.3s;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

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

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

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-description {
    max-width: 600px;
    margin: 16px auto 0;
    color: var(--text-secondary);
    font-size: 16px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(165deg, #0a1628 0%, #0d2137 30%, #0f2a1e 50%, #0a1628 100%);
}

.hero-pitch-lines {
    position: absolute;
    inset: 0;
    background:
        /* Centre circle */
        radial-gradient(circle at 50% 55%, transparent 120px, rgba(255,255,255,0.03) 120px, rgba(255,255,255,0.03) 122px, transparent 122px),
        /* Centre line */
        linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,0.04) 49.8%, rgba(255,255,255,0.04) 50.2%, transparent 50.2%),
        /* Halfway touchline */
        linear-gradient(0deg, transparent 84%, rgba(255,255,255,0.03) 84%, rgba(255,255,255,0.03) 84.3%, transparent 84.3%),
        /* Top edge */
        linear-gradient(0deg, transparent 16%, rgba(255,255,255,0.03) 16%, rgba(255,255,255,0.03) 16.3%, transparent 16.3%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    animation: floatParticle 6s ease-in-out infinite;
}

@keyframes floatParticle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
    20% { opacity: 0.6; transform: translateY(-20px) scale(1); }
    80% { opacity: 0.3; transform: translateY(-80px) scale(0.5); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 32px;
    background: rgba(0, 230, 118, 0.05);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.15); }
    50% { box-shadow: 0 0 0 12px rgba(0, 230, 118, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.hero-title-accent {
    color: var(--accent);
    text-shadow: 0 0 40px var(--accent-glow);
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 12px;
}

.hero-description {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: var(--section-padding);
    background: var(--bg-darker);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   GAMEPLAY SECTION
   ============================================ */
.gameplay {
    padding: var(--section-padding);
    position: relative;
}

.gameplay-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Phone mockup */
.phone-frame {
    width: 280px;
    margin: 0 auto;
    background: #1a1a2e;
    border-radius: 36px;
    padding: 12px;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    position: relative;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: #1a1a2e;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.phone-screen {
    background: var(--pitch-green);
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
    position: relative;
}

#gameplayCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Gameplay steps */
.gameplay-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gameplay-step {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
}

.gameplay-step:hover,
.gameplay-step.active {
    background: var(--bg-card);
    border-color: var(--border);
}

.gameplay-step.active {
    border-color: var(--border-accent);
}

.step-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    min-width: 48px;
    transition: opacity 0.3s;
}

.gameplay-step.active .step-number,
.gameplay-step:hover .step-number {
    opacity: 1;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   CONTROLS SECTION
   ============================================ */
.controls {
    padding: var(--section-padding);
    background: var(--bg-darker);
}

.controls-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.controls-info p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-top: 20px;
    max-width: 480px;
}

.controls-keys {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.control-key {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.key-visual {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
}

.key-visual svg {
    width: 40px;
    height: 40px;
}

.key-btn-shoot {
    font-size: 11px !important;
    letter-spacing: 1px;
    background: rgba(0, 230, 118, 0.1);
    border-color: var(--accent) !important;
}

.key-btn-sprint {
    background: rgba(255, 215, 64, 0.1);
    border-color: var(--accent-secondary) !important;
    color: var(--accent-secondary) !important;
}

.key-label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
}

.key-label small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}

/* Landscape phone visual */
.controls-phone-landscape {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background: #1a1a2e;
    border-radius: 24px;
    padding: 10px;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.landscape-screen {
    background: var(--pitch-green);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 19.5/9;
}

.landscape-pitch {
    width: 100%;
    height: 100%;
    position: relative;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,0.03) 0px,
            rgba(255,255,255,0.03) 1px,
            transparent 1px,
            transparent 60px
        ),
        linear-gradient(180deg, #1a7a35 0%, #1a8d3f 50%, #1a7a35 100%);
}

.landscape-joystick {
    position: absolute;
    bottom: 20%;
    left: 10%;
}

.joystick-outer {
    width: 64px;
    height: 64px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    position: relative;
}

.joystick-inner {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    animation: joystickMove 3s ease-in-out infinite;
}

@keyframes joystickMove {
    0%, 100% { left: 60%; top: 50%; }
    25% { left: 65%; top: 40%; }
    50% { left: 55%; top: 55%; }
    75% { left: 40%; top: 45%; }
}

.landscape-buttons {
    position: absolute;
    bottom: 15%;
    right: 8%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.action-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

.shoot-btn {
    background: rgba(0, 230, 118, 0.3);
    border: 1px solid var(--accent);
    color: var(--accent);
    animation: btnPulse 2s ease-in-out infinite;
}

.sprint-btn {
    background: rgba(255, 215, 64, 0.2);
    border: 1px solid var(--accent-secondary);
    color: var(--accent-secondary);
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
}

/* ============================================
   TEAMS SECTION
   ============================================ */
.teams {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.teams-carousel {
    overflow: hidden;
    margin: 0 -24px;
    padding: 0 24px;
}

.teams-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.team-card {
    flex: 0 0 220px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--team-color, var(--accent));
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--team-color, var(--accent));
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.team-crest {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-display);
    color: white;
    background: var(--team-color, #333);
    border: 3px solid rgba(255,255,255,0.15);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.team-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.team-players {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-player {
    font-size: 12px;
    color: var(--text-secondary);
    padding: 3px 0;
    border-bottom: 1px solid var(--border);
}

.team-player:last-child {
    border-bottom: none;
}

.teams-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   SCREENSHOTS / DEVELOPMENT TIMELINE
   ============================================ */
.screenshots {
    padding: var(--section-padding);
    background: var(--bg-darker);
}

.dev-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.dev-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-left: 56px;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 12px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    background: var(--bg-darker);
    z-index: 1;
    transition: all 0.3s;
}

.timeline-item.completed .timeline-marker {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.timeline-status {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(100, 116, 139, 0.15);
    color: var(--text-muted);
}

.timeline-item.completed .timeline-status {
    background: rgba(0, 230, 118, 0.1);
    color: var(--accent);
}

/* ============================================
   ABOUT / CTA SECTION
   ============================================ */
.about {
    padding: var(--section-padding);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-top: 16px;
}

.tech-stack {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.tech-badge {
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.about-cta-card {
    perspective: 1000px;
}

.cta-card-inner {
    background: linear-gradient(135deg, var(--bg-card) 0%, #112240 100%);
    border: 1px solid var(--border-accent);
    border-radius: 20px;
    padding: 48px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.1;
    pointer-events: none;
}

.cta-icon {
    font-size: 48px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 16px var(--accent-glow));
}

.cta-card-inner h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cta-card-inner > p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.cta-form {
    display: flex;
    gap: 8px;
}

.cta-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(0,0,0,0.3);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.cta-input:focus {
    border-color: var(--accent);
}

.cta-input::placeholder {
    color: var(--text-muted);
}

.cta-submit {
    padding: 12px 20px;
    white-space: nowrap;
}

.cta-note {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-darker);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    text-align: center;
}

.footer-copy p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-disclaimer {
    font-size: 11px !important;
    max-width: 480px;
    margin-top: 4px;
    opacity: 0.6;
}

/* ============================================
   ANIMATIONS — Scroll reveal
   ============================================ */
.feature-card,
.gameplay-step,
.timeline-item,
.team-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.visible,
.gameplay-step.visible,
.timeline-item.visible,
.team-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger */
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4) { transition-delay: 0.3s; }
.feature-card:nth-child(5) { transition-delay: 0.4s; }
.feature-card:nth-child(6) { transition-delay: 0.5s; }

.timeline-item:nth-child(2) { transition-delay: 0.1s; }
.timeline-item:nth-child(3) { transition-delay: 0.2s; }
.timeline-item:nth-child(4) { transition-delay: 0.3s; }
.timeline-item:nth-child(5) { transition-delay: 0.4s; }
.timeline-item:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gameplay-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .gameplay-phone {
        order: -1;
    }

    .controls-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 72px 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 22, 40, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 20px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translateY(5px) translateX(5px);
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translateY(-5px) translateX(5px);
    }

    .hero-stats {
        gap: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .controls-keys {
        gap: 16px;
    }

    .team-card {
        flex: 0 0 180px;
    }

    .cta-form {
        flex-direction: column;
    }

    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: 2px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}
