/* ============================================================
   TRIPLE MATCH CITY - NEON GLOW DESIGN SYSTEM
   ============================================================ */

/* --- CSS VARIABLES --- */
:root {
    --primary: #00ff88;
    --primary-dim: #00cc6a;
    --primary-dark: #009950;
    --primary-rgb: 0, 255, 136;
    --secondary: #0a0a0a;
    --secondary-light: #111111;
    --secondary-lighter: #1a1a1a;
    --secondary-mid: #222222;
    --accent: #ff0080;
    --accent-dim: #cc0066;
    --accent-rgb: 255, 0, 128;
    --white: #ffffff;
    --white-dim: #e0e0e0;
    --white-muted: #999999;
    --gray: #666666;
    --gray-dark: #333333;
    --danger: #ff3333;
    --warning: #ffaa00;
    --cyan: #00ddff;
    --cyan-rgb: 0, 221, 255;
    --purple: #aa00ff;
    --purple-rgb: 170, 0, 255;

    --font-display: 'Orbitron', monospace, sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Exo 2', sans-serif;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-neon-primary: 0 0 5px rgba(var(--primary-rgb), 0.3), 0 0 20px rgba(var(--primary-rgb), 0.15), 0 0 40px rgba(var(--primary-rgb), 0.08);
    --shadow-neon-accent: 0 0 5px rgba(var(--accent-rgb), 0.3), 0 0 20px rgba(var(--accent-rgb), 0.15), 0 0 40px rgba(var(--accent-rgb), 0.08);
    --shadow-neon-cyan: 0 0 5px rgba(var(--cyan-rgb), 0.3), 0 0 20px rgba(var(--cyan-rgb), 0.15);

    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
    --transition-xslow: 1s ease;

    --z-base: 1;
    --z-header: 100;
    --z-overlay: 200;
    --z-modal: 300;
    --z-cookie: 400;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--secondary);
    color: var(--white-dim);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover {
    color: var(--white);
    text-decoration: underline;
}
a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

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

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

ul {
    list-style: none;
}

::selection {
    background-color: rgba(var(--primary-rgb), 0.3);
    color: var(--white);
}

/* --- CONTAINER --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- UTILITY CLASSES --- */
.text-glow-primary {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5), 0 0 30px rgba(var(--primary-rgb), 0.2);
}
.text-glow-accent {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(var(--accent-rgb), 0.5), 0 0 30px rgba(var(--accent-rgb), 0.2);
}

/* --- SECTION STYLING --- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 100px;
    background: rgba(var(--primary-rgb), 0.05);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 20px;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--white-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-cookie);
    background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.99) 100%);
    border-top: 1px solid rgba(var(--primary-rgb), 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.5), 0 -1px 0 rgba(var(--primary-rgb), 0.2);
}
.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-text {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 280px;
}
.cookie-icon {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    flex-shrink: 0;
}
.cookie-text p {
    font-size: 0.9rem;
    color: var(--white-muted);
    line-height: 1.5;
}
.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.cookie-settings-panel {
    max-width: 1200px;
    margin: 16px auto 0;
    padding: 20px 24px;
    border-top: 1px solid var(--gray-dark);
}
.cookie-settings-panel h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
}
.cookie-option {
    margin-bottom: 10px;
}
.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--white-dim);
    cursor: pointer;
}
.cookie-option input[type="checkbox"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

/* ============================================================
   AGE GATE
   ============================================================ */
.age-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(10px);
}
.age-gate-modal {
    position: relative;
    background: var(--secondary-light);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    overflow: hidden;
}
.age-gate-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.age-gate-content {
    position: relative;
    z-index: 2;
}
.age-gate-icon {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    text-shadow: var(--shadow-neon-primary);
}
.age-gate-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 12px;
}
.age-gate-content p {
    font-size: 1rem;
    color: var(--white-dim);
    margin-bottom: 8px;
}
.age-gate-sub {
    font-size: 0.85rem !important;
    color: var(--white-muted) !important;
    margin-bottom: 28px !important;
}
.age-gate-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-neon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
}
.btn-neon::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-base);
}
.btn-neon:hover::before {
    opacity: 1;
}

.btn-neon-primary {
    background: var(--primary);
    color: var(--secondary);
    border: 1px solid var(--primary);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-neon-primary::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 100%);
}
.btn-neon-primary:hover {
    background: var(--primary-dim);
    box-shadow: 0 0 25px rgba(var(--primary-rgb), 0.5), 0 0 50px rgba(var(--primary-rgb), 0.2);
    transform: translateY(-2px);
    color: var(--secondary);
    text-decoration: none;
}
.btn-neon-primary:active {
    transform: translateY(0);
}

.btn-neon-secondary {
    background: transparent;
    color: var(--white-dim);
    border: 1px solid var(--gray-dark);
}
.btn-neon-secondary:hover {
    border-color: var(--white-muted);
    color: var(--white);
    text-decoration: none;
}

.btn-neon-ghost {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(var(--primary-rgb), 0.4);
}
.btn-neon-ghost:hover {
    background: rgba(var(--primary-rgb), 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.15);
    text-decoration: none;
    color: var(--primary);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}
.btn-full {
    width: 100%;
}
.btn-icon {
    font-size: 0.85em;
}

.btn-glow-pulse {
    animation: glowPulse 2.5s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3), inset 0 1px 0 rgba(255,255,255,0.15);
    }
    50% {
        box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.5), 0 0 60px rgba(var(--primary-rgb), 0.2), inset 0 1px 0 rgba(255,255,255,0.15);
    }
}

.btn-loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(10,10,10,0.3);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-base);
}
.main-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-glow-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--cyan), transparent);
    opacity: 0.7;
    animation: headerGlowShift 8s linear infinite;
}
@keyframes headerGlowShift {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.header-glow-line {
    background-size: 200% 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo-icon {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    color: var(--secondary);
    background: var(--primary);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.4);
}
.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}
.logo-accent {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white-muted);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
}
.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
    text-decoration: none;
}
.nav-link.active {
    color: var(--primary);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.5);
}
.nav-cta {
    color: var(--secondary) !important;
    background: var(--primary) !important;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
}
.nav-cta:hover {
    background: var(--primary-dim) !important;
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5) !important;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 10;
}
.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}
.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    overflow: hidden;
    background: var(--secondary);
}

/* Grid background */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--primary-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb), 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Particles container */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    10% {
        opacity: 0.6;
        transform: scale(1);
    }
    90% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(0.5);
    }
}

/* Radial glows */
.hero-radial-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}
.hero-glow-1 {
    width: 600px;
    height: 600px;
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 70%);
    animation: glowDrift1 12s ease-in-out infinite;
}
.hero-glow-2 {
    width: 500px;
    height: 500px;
    bottom: -5%;
    left: -10%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%);
    animation: glowDrift2 15s ease-in-out infinite;
}
.hero-glow-3 {
    width: 400px;
    height: 400px;
    top: 40%;
    left: 30%;
    background: radial-gradient(circle, rgba(var(--cyan-rgb), 0.06) 0%, transparent 70%);
    animation: glowDrift3 10s ease-in-out infinite;
}
@keyframes glowDrift1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}
@keyframes glowDrift2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -20px); }
}
@keyframes glowDrift3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -40px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero text */
.hero-text-block {
    animation: heroTextIn 1s ease-out 0.2s both;
}
@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: badgePulse 1.5s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(var(--primary-rgb), 0); }
}

.hero-title {
    margin-bottom: 24px;
}
.hero-title-line {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
}
.hero-title-line-1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--white);
    animation: titleLine1 0.8s ease-out 0.4s both;
}
.hero-title-line-2 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--primary);
    text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4), 0 0 60px rgba(var(--primary-rgb), 0.15);
    animation: titleLine2 0.8s ease-out 0.6s both;
}
.hero-title-line-3 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    background: linear-gradient(135deg, var(--accent), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleLine3 0.8s ease-out 0.8s both;
}
@keyframes titleLine1 {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes titleLine2 {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes titleLine3 {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--white-muted);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 32px;
    animation: heroTextIn 1s ease-out 1s both;
}

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    animation: heroTextIn 1s ease-out 1.2s both;
}
.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}
.hero-stat-label {
    font-size: 0.8rem;
    color: var(--white-muted);
    letter-spacing: 0.5px;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--gray-dark), transparent);
}

/* Hero CTA */
.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroTextIn 1s ease-out 1.4s both;
}

/* Hero visual / phone mockup */
.hero-visual-block {
    position: relative;
    display: flex;
    justify-content: center;
    animation: heroVisualIn 1.2s ease-out 0.6s both;
}
@keyframes heroVisualIn {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-phone-mockup {
    position: relative;
}
.phone-frame {
    position: relative;
    width: 280px;
    height: 560px;
    background: var(--secondary-lighter);
    border-radius: 36px;
    border: 3px solid var(--gray-dark);
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,0,0,0.5), 0 0 80px rgba(var(--primary-rgb), 0.1);
}
.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: var(--secondary);
    border-radius: 0 0 16px 16px;
    z-index: 3;
}
.phone-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.phone-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: phoneGlowPulse 3s ease-in-out infinite;
    z-index: -1;
}
@keyframes phoneGlowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Floating cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    border-radius: var(--radius-lg);
    padding: 12px 18px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 15px rgba(var(--primary-rgb), 0.1);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}
.hero-card-1 {
    top: 15%;
    right: -10%;
    animation: floatCard1 4s ease-in-out infinite, heroCardIn 1s ease-out 1.5s both;
}
.hero-card-2 {
    bottom: 20%;
    left: -5%;
    animation: floatCard2 5s ease-in-out infinite, heroCardIn 1s ease-out 1.8s both;
}
.card-icon {
    font-size: 1.2rem;
    color: var(--primary);
}
@keyframes floatCard1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes floatCard2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}
@keyframes heroCardIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: heroTextIn 1s ease-out 2s both;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary), transparent);
    animation: scrollLineAnim 2s ease-in-out infinite;
}
@keyframes scrollLineAnim {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}
.hero-scroll-indicator span {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white-muted);
}

/* ============================================================
   GAME SECTION
   ============================================================ */
.game-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(var(--primary-rgb), 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(var(--accent-rgb), 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.game-showcase {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: start;
}

/* Game icon display */
.game-icon-display {
    position: sticky;
    top: 120px;
}
.game-icon-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 28px;
}
.game-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.15), 0 8px 40px rgba(0,0,0,0.4);
}
.game-icon-ring {
    position: absolute;
    inset: -15px;
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    border-radius: 52px;
    animation: ringPulse 3s ease-in-out infinite;
}
.game-icon-ring-2 {
    inset: -30px;
    border-radius: 62px;
    animation-delay: 0.5s;
    border-color: rgba(var(--accent-rgb), 0.1);
}
@keyframes ringPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.03); }
}

.game-info-card {
    background: var(--secondary-lighter);
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}
.game-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.game-dev {
    font-size: 0.85rem;
    color: var(--white-muted);
    margin-bottom: 16px;
}
.game-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}
.stars {
    color: var(--warning);
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.rating-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--white-dim);
}
.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    padding: 4px 14px;
    border-radius: 100px;
}

/* Features grid */
.game-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.feature-card {
    background: var(--secondary-lighter);
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}
.feature-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px rgba(var(--primary-rgb), 0.05);
}
.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 18px;
}
.feature-icon-box-accent {
    background: rgba(var(--accent-rgb), 0.1);
    border-color: rgba(var(--accent-rgb), 0.2);
}
.feature-icon-box-accent .feature-icon {
    color: var(--accent);
}
.feature-icon-box-mixed {
    background: rgba(var(--cyan-rgb), 0.1);
    border-color: rgba(var(--cyan-rgb), 0.2);
}
.feature-icon-box-mixed .feature-icon {
    color: var(--cyan);
}
.feature-icon {
    font-size: 1.3rem;
    color: var(--primary);
}
.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--white-muted);
    line-height: 1.6;
}

/* ============================================================
   SCREENSHOTS SECTION
   ============================================================ */
.screenshots-section {
    padding: 120px 0;
    background: var(--secondary-light);
}

.screenshots-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
.screenshot-card {
    cursor: pointer;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-base);
}
.screenshot-card-large {
    grid-column: span 2;
    grid-row: span 2;
}
.screenshot-card-wide {
    grid-column: span 2;
}
.screenshot-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-lg);
}
.screenshot-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    min-height: 200px;
}
.screenshot-card:hover .screenshot-frame img {
    transform: scale(1.05);
}
.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-base);
}
.screenshot-card:hover .screenshot-overlay {
    opacity: 1;
}
.screenshot-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}
.screenshot-card:hover {
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.15);
}
.screenshot-card:hover .screenshot-frame {
    border-color: rgba(var(--primary-rgb), 0.4);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backdrop-filter: blur(10px);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition-fast);
    z-index: 5;
    line-height: 1;
}
.lightbox-close:hover {
    color: var(--accent);
}
.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 60px rgba(var(--primary-rgb), 0.2);
}
.lightbox-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}
.lightbox-prev, .lightbox-next {
    font-size: 1.5rem;
    color: var(--white);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(var(--primary-rgb), 0.2);
    border-color: var(--primary);
}

/* ============================================================
   DETAILS SECTION
   ============================================================ */
.details-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.details-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.detail-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    padding: 36px 28px;
    border: 1px solid transparent;
    border-bottom-color: var(--gray-dark);
    transition: all var(--transition-base);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}
.detail-item.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.detail-item:hover {
    background: rgba(var(--primary-rgb), 0.02);
    border-color: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-md);
}
.detail-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: rgba(var(--primary-rgb), 0.15);
    line-height: 1;
    transition: color var(--transition-base);
}
.detail-item:hover .detail-number {
    color: rgba(var(--primary-rgb), 0.4);
}
.detail-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.detail-content p {
    font-size: 0.92rem;
    color: var(--white-muted);
    line-height: 1.65;
}

/* ============================================================
   SOCIAL PROOF SECTION
   ============================================================ */
.social-proof-section {
    padding: 80px 0;
    background: var(--secondary-light);
}
.social-proof-banner {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-lighter) 0%, var(--secondary-mid) 100%);
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    overflow: hidden;
}
.proof-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.proof-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    z-index: 2;
}
.proof-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}
.proof-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.7;
}
.proof-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}
.proof-label {
    font-size: 0.85rem;
    color: var(--white-muted);
}
.proof-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--gray-dark), transparent);
}
.proof-live-indicator {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-dark);
}
.live-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: liveDotPulse 1.5s ease-in-out infinite;
}
@keyframes liveDotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(var(--primary-rgb), 0); }
}
.live-text {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--white-muted);
}
.live-text span {
    color: var(--primary);
    font-weight: 700;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    padding: 120px 0;
}
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}
.faq-item:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
}
.faq-item.active {
    border-color: rgba(var(--primary-rgb), 0.4);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.05);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: var(--secondary-lighter);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}
.faq-question:hover {
    background: var(--secondary-mid);
}
.faq-toggle {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
    background: rgba(var(--primary-rgb), 0.02);
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
}
.faq-answer p {
    font-size: 0.95rem;
    color: var(--white-muted);
    line-height: 1.7;
    padding-top: 4px;
}
.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
}

/* ============================================================
   REGISTER / LEAD FORM SECTION
   ============================================================ */
.register-section {
    position: relative;
    padding: 120px 0;
    background: var(--secondary-light);
    overflow: hidden;
}
.register-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.register-glow-1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 60%);
    filter: blur(60px);
}
.register-glow-2 {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.06) 0%, transparent 60%);
    filter: blur(60px);
}

.register-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.register-info {
    padding-top: 20px;
}
.register-desc {
    font-size: 1.05rem;
    color: var(--white-muted);
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 32px;
}
.register-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.register-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--white-dim);
}
.benefit-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(var(--primary-rgb), 0.12);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 50%;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Form wrapper */
.register-form-wrapper {
    position: relative;
}
.form-glow-border {
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.3), transparent 40%, transparent 60%, rgba(var(--accent-rgb), 0.2));
    z-index: 0;
    pointer-events: none;
}
.register-form {
    position: relative;
    z-index: 1;
    background: var(--secondary);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    border: 1px solid var(--gray-dark);
}
.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 28px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white-dim);
    margin-bottom: 8px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    background: var(--secondary-lighter);
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}
.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15), 0 0 15px rgba(var(--primary-rgb), 0.1);
}
.form-group input::placeholder {
    color: var(--gray);
}
.form-group input.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(255,51,51,0.15);
}
.form-error {
    display: block;
    font-size: 0.8rem;
    color: var(--danger);
    margin-top: 6px;
    min-height: 0;
}

/* Checkbox */
.form-checkbox-group {
    margin-bottom: 16px;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--white-muted);
    line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
    display: none;
}
.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-dark);
    border-radius: 4px;
    background: var(--secondary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 2px;
    position: relative;
}
.checkbox-label input:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}
.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    border: solid var(--secondary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}
.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--gray);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}
.form-disclaimer a {
    color: var(--primary);
    text-decoration: underline;
}

/* Success message */
.form-success-message {
    position: relative;
    z-index: 1;
    background: var(--secondary);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    text-align: center;
    box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.1);
}
.success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: rgba(var(--primary-rgb), 0.12);
    border: 2px solid var(--primary);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.2);
    animation: successPop 0.5s ease-out;
}
@keyframes successPop {
    from { transform: scale(0); }
    50% { transform: scale(1.15); }
    to { transform: scale(1); }
}
.form-success-message h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 12px;
}
.form-success-message p {
    font-size: 1rem;
    color: var(--white-muted);
    line-height: 1.6;
}
.success-sub {
    margin-top: 12px;
    color: var(--primary) !important;
    font-weight: 600;
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
    padding: 100px 0 120px;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trust-card {
    background: var(--secondary-lighter);
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-base);
}
.trust-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.trust-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}
.trust-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.trust-card p {
    font-size: 0.88rem;
    color: var(--white-muted);
    line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
    background: var(--secondary);
    border-top: 1px solid var(--gray-dark);
    padding-top: 0;
}
.footer-glow-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    opacity: 0.5;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 60px 0 40px;
}
.footer-brand-desc {
    font-size: 0.9rem;
    color: var(--white-muted);
    line-height: 1.6;
    margin-top: 16px;
    margin-bottom: 18px;
}
.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.06);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    padding: 3px 12px;
    border-radius: 100px;
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}
.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links-col a {
    font-size: 0.9rem;
    color: var(--white-muted);
    transition: color var(--transition-fast);
    text-decoration: none;
}
.footer-links-col a:hover {
    color: var(--primary);
    text-decoration: none;
}
.footer-address {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    margin-top: 8px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--gray-dark);
}
.footer-bottom-left p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
}
.footer-responsible {
    margin-top: 6px;
    font-size: 0.78rem !important;
    color: var(--white-muted) !important;
}
.footer-age-badge {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--warning);
    border: 2px solid var(--warning);
    border-radius: var(--radius-md);
    padding: 6px 14px;
    white-space: nowrap;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: var(--secondary);
    position: relative;
}
.legal-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-dark), transparent);
}
.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.legal-hero p {
    font-size: 1rem;
    color: var(--white-muted);
}

.legal-content {
    padding: 60px 0 100px;
    background: #fafafa;
}
.legal-content .container {
    max-width: 860px;
}
.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}
.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    margin-top: 28px;
    margin-bottom: 12px;
}
.legal-content p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
    margin: 12px 0 18px 24px;
}
.legal-content li {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 6px;
    list-style: disc;
}
.legal-content ol li {
    list-style: decimal;
}
.legal-content a {
    color: var(--primary-dark);
    text-decoration: underline;
}
.legal-content strong {
    color: #222;
}
.legal-content .legal-update {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 30px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-visual-block {
        order: -1;
    }
    .hero-card-1 {
        right: 0;
    }
    .hero-card-2 {
        left: 0;
    }

    .game-showcase {
        grid-template-columns: 1fr;
    }
    .game-icon-display {
        position: static;
        text-align: center;
    }
    .game-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .register-layout {
        grid-template-columns: 1fr;
    }
    .register-info {
        text-align: center;
    }
    .register-benefits {
        align-items: center;
    }

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

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--secondary);
        border-left: 1px solid var(--gray-dark);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 8px;
        transition: right var(--transition-base);
        z-index: 5;
        align-items: flex-start;
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    }
    .nav-menu.open {
        right: 0;
    }
    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }
    .nav-cta {
        margin-top: 16px;
        text-align: center;
    }

    .hero-section {
        padding: 100px 20px 60px;
        min-height: auto;
    }
    .hero-title-line {
        font-size: clamp(2.5rem, 10vw, 4rem) !important;
    }

    .phone-frame {
        width: 220px;
        height: 440px;
    }

    .screenshots-gallery {
        grid-template-columns: 1fr 1fr;
    }
    .screenshot-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .screenshot-card-wide {
        grid-column: span 2;
    }

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

    .proof-content {
        flex-direction: column;
        text-align: center;
    }
    .proof-item {
        flex-direction: column;
        gap: 8px;
    }
    .proof-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gray-dark), transparent);
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
    }
    .cookie-actions {
        width: 100%;
        justify-content: stretch;
    }
    .cookie-actions .btn-neon {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .hero-stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gray-dark), transparent);
    }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    .hero-cta-group .btn-neon {
        width: 100%;
    }

    .hero-floating-card {
        display: none;
    }

    .register-form {
        padding: 28px 20px;
    }

    .screenshots-gallery {
        grid-template-columns: 1fr;
    }
    .screenshot-card-large,
    .screenshot-card-wide {
        grid-column: span 1;
    }

    .age-gate-modal {
        padding: 36px 24px;
    }
}

/* ============================================================
   SCROLL REVEAL ANIMATION CLASSES
   ============================================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   NOISE OVERLAY (subtle texture)
   ============================================================ */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--gray-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gray);
}

/* ============================================================
   FOCUS STYLES FOR ACCESSIBILITY
   ============================================================ */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Skip to content (sr only) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
