/* =============================================
   GLOBAL RESET & VARIABLES
   ============================================= */

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

:root {
    /* Core Neon Palette */
    --primary: #00ff88;
    --primary-dim: #00cc6a;
    --primary-dark: #009950;
    --primary-glow: rgba(0, 255, 136, 0.4);
    --primary-glow-strong: rgba(0, 255, 136, 0.7);
    --primary-glow-subtle: rgba(0, 255, 136, 0.15);

    --accent: #ff0080;
    --accent-dim: #cc0066;
    --accent-dark: #99004d;
    --accent-glow: rgba(255, 0, 128, 0.4);
    --accent-glow-strong: rgba(255, 0, 128, 0.7);
    --accent-glow-subtle: rgba(255, 0, 128, 0.15);

    --secondary: #0a0a0a;
    --bg-dark: #050508;
    --bg-card: #0d0d12;
    --bg-card-hover: #13131a;
    --bg-elevated: #111118;

    --neon-blue: #00aaff;
    --neon-blue-glow: rgba(0, 170, 255, 0.4);
    --neon-purple: #aa00ff;
    --neon-purple-glow: rgba(170, 0, 255, 0.3);
    --neon-yellow: #ffdd00;

    /* Text */
    --text-white: #f0f0f5;
    --text-light: #c8c8d4;
    --text-muted: #6e6e80;
    --text-dim: #44445a;

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-neon: rgba(0, 255, 136, 0.3);

    /* Sizing */
    --container-max: 1200px;
    --header-height: 72px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Fonts */
    --font-display: 'Orbitron', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Exo 2', sans-serif;

    /* Z-indices */
    --z-base: 1;
    --z-header: 100;
    --z-modal: 1000;
    --z-cookie: 999;
    --z-toast: 900;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dim);
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

ul, ol {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */

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

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

.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;
}

/* =============================================
   SCROLLBAR
   ============================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dim);
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes neonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes neonBreathe {
    0%, 100% {
        box-shadow: 0 0 5px var(--primary-glow), 0 0 15px var(--primary-glow-subtle);
    }
    50% {
        box-shadow: 0 0 10px var(--primary-glow), 0 0 30px var(--primary-glow), 0 0 60px var(--primary-glow-subtle);
    }
}

@keyframes neonBreatheAccent {
    0%, 100% {
        box-shadow: 0 0 5px var(--accent-glow), 0 0 15px var(--accent-glow-subtle);
    }
    50% {
        box-shadow: 0 0 10px var(--accent-glow), 0 0 30px var(--accent-glow), 0 0 60px var(--accent-glow-subtle);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px var(--primary-glow), 0 0 10px var(--primary-glow-subtle);
    }
    50% {
        text-shadow: 0 0 10px var(--primary-glow), 0 0 20px var(--primary-glow), 0 0 40px var(--primary-glow-subtle);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@keyframes scrollDot {
    0% { top: 4px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes loaderBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@keyframes glowLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-cookie);
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.97) 0%, rgba(5, 5, 10, 0.99) 100%);
    border-top: 1px solid var(--border-neon);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -4px 30px rgba(0, 255, 136, 0.1), 0 -1px 0 var(--primary-glow-subtle);
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

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

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.cookie-icon {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--primary);
    background: var(--primary-glow-subtle);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-neon);
    white-space: nowrap;
    flex-shrink: 0;
}

.cookie-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-text p a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-settings-panel {
    margin-top: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.cookie-setting-row {
    padding: 8px 0;
}

.cookie-setting-row label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
}

.cookie-setting-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.cookie-settings-panel .btn-neon {
    margin-top: 12px;
}

/* =============================================
   AGE VERIFICATION MODAL
   ============================================= */

.age-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.age-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.age-modal-content {
    position: relative;
    width: 90%;
    max-width: 480px;
}

.age-modal-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--neon-blue), var(--primary));
    background-size: 300% 300%;
    animation: gradientShift 4s ease infinite;
    filter: blur(2px);
    z-index: 0;
}

.age-modal-inner {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
}

.age-icon-wrap {
    margin-bottom: 20px;
}

.age-icon-shield {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    background: var(--accent-glow-subtle);
    border: 2px solid var(--accent);
    padding: 14px 22px;
    border-radius: var(--radius-lg);
    text-shadow: 0 0 10px var(--accent-glow);
    box-shadow: 0 0 20px var(--accent-glow-subtle);
}

.age-modal-inner h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.age-modal-inner p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.age-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn-neon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--bg-dark);
    background: var(--primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-base);
    text-transform: uppercase;
    box-shadow:
        0 0 10px var(--primary-glow),
        0 0 30px var(--primary-glow-subtle),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-neon:hover {
    background: var(--primary-dim);
    box-shadow:
        0 0 15px var(--primary-glow),
        0 0 40px var(--primary-glow),
        0 0 80px var(--primary-glow-subtle),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.btn-neon:active {
    transform: translateY(0);
}

.btn-neon .btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: none;
}

.btn-neon:hover .btn-glow {
    animation: glowLine 0.6s ease;
}

.btn-neon-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary);
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    box-shadow: 0 0 10px var(--primary-glow-subtle);
}

.btn-neon-outline:hover {
    background: var(--primary-glow-subtle);
    box-shadow:
        0 0 15px var(--primary-glow),
        0 0 30px var(--primary-glow-subtle);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-neon-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
}

.btn-neon-ghost:hover {
    color: var(--text-light);
    border-color: var(--text-muted);
    background: rgba(255,255,255,0.03);
}

.btn-neon-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-neon-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    height: var(--header-height);
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
}

.main-header.is-scrolled {
    background: rgba(5, 5, 8, 0.95);
    border-bottom-color: var(--border-neon);
    box-shadow: 0 2px 30px rgba(0, 255, 136, 0.08);
}

.header-glow-line {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-glow), var(--accent-glow), var(--primary-glow), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.main-header.is-scrolled .header-glow-line {
    opacity: 1;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-yoya {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow), 0 0 20px var(--primary-glow-subtle);
}

.logo-sparkle {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-white);
}

.logo-dot {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent-glow);
}

.logo-style {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent-glow-subtle);
    margin-left: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: all var(--transition-base);
    transform: translateX(-50%);
    box-shadow: 0 0 6px var(--primary-glow);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-cta {
    color: var(--bg-dark) !important;
    background: var(--primary);
    border-radius: var(--radius-md);
    padding: 8px 20px;
    font-weight: 600;
    box-shadow: 0 0 10px var(--primary-glow-subtle);
    margin-left: 8px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-dim);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 10;
}

.nav-toggle-bar {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-light);
    border-radius: 1px;
    transition: all var(--transition-base);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-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;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 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%);
}

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

.hero-radial-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
}

.hero-radial-glow-1 {
    top: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow-subtle) 0%, transparent 70%);
    animation: neonPulse 6s ease-in-out infinite;
}

.hero-radial-glow-2 {
    bottom: 0;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow-subtle) 0%, transparent 70%);
    animation: neonPulse 8s ease-in-out infinite 2s;
}

.hero-radial-glow-3 {
    top: 40%;
    left: 40%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--neon-blue-glow) 0%, transparent 70%);
    opacity: 0.3;
    animation: neonPulse 10s ease-in-out infinite 4s;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid var(--border-neon);
    border-radius: 100px;
    margin-bottom: 28px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 6px var(--primary-glow);
}

.badge-pulse::before {
    content: '';
    position: absolute;
    inset: -3px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

.badge-text {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-title-line-1 {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--text-white);
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.hero-title-line-2 {
    font-size: clamp(40px, 6vw, 68px);
    background: linear-gradient(135deg, var(--primary), var(--neon-blue), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    filter: drop-shadow(0 0 20px var(--primary-glow-subtle));
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

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

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow-subtle);
    line-height: 1.2;
}

.hero-stat-label {
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-light);
}

/* Hero Visual / Image */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-image-glow {
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--neon-blue));
    background-size: 300% 300%;
    animation: gradientShift 5s ease infinite;
    z-index: 0;
    filter: blur(3px);
}

.hero-image-border {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    z-index: 1;
}

.hero-game-icon {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.hero-image-scanline {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 136, 0.02) 2px,
        rgba(0, 255, 136, 0.02) 4px
    );
    pointer-events: none;
    border-radius: var(--radius-xl);
}

.hero-image-scanline::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.06), transparent);
    animation: scanline 4s linear infinite;
}

/* Floating Badges */
.hero-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(10, 10, 15, 0.9);
    border: 1px solid var(--border-neon);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    z-index: 5;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 15px var(--primary-glow-subtle);
}

.hf-icon {
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--primary);
    font-weight: 700;
}

.hf-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

.hero-float-1 {
    top: 10%;
    right: -10%;
    animation: float 4s ease-in-out infinite;
}

.hero-float-2 {
    bottom: 20%;
    left: -15%;
    animation: floatSlow 5s ease-in-out infinite 1s;
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 15px var(--accent-glow-subtle);
}

.hero-float-2 .hf-icon {
    color: var(--accent);
}

.hero-float-3 {
    bottom: 5%;
    right: 5%;
    animation: float 6s ease-in-out infinite 2s;
    border-color: var(--neon-blue);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 15px var(--neon-blue-glow);
}

.hero-float-3 .hf-icon {
    color: var(--neon-blue);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.scroll-text {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: var(--border-light);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.scroll-dot {
    position: absolute;
    top: 4px;
    left: -2px;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    animation: scrollDot 2s ease-in-out infinite;
    box-shadow: 0 0 6px var(--primary-glow);
}

/* =============================================
   SECTION COMMON STYLES
   ============================================= */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--primary-glow-subtle);
    border: 1px solid var(--border-neon);
    border-radius: 100px;
    text-shadow: 0 0 8px var(--primary-glow-subtle);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   GAME / FEATURES 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%, var(--primary-glow-subtle) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, var(--accent-glow-subtle) 0%, transparent 50%);
    opacity: 0.3;
    pointer-events: none;
}

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

.feature-card {
    position: relative;
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    overflow: hidden;
}

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

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-neon);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 255, 136, 0.08), 0 0 20px var(--primary-glow-subtle);
}

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

.feature-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-glow-subtle) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.feature-card:hover .feature-card-glow {
    opacity: 0.3;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-glow-subtle);
    border: 1px solid var(--border-neon);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon-wrap {
    box-shadow: 0 0 20px var(--primary-glow);
    animation: neonBreathe 2s ease-in-out infinite;
}

.feature-icon {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =============================================
   GALLERY SECTION
   ============================================= */

.gallery-section {
    padding: 120px 0;
    position: relative;
}

.gallery-showcase {
    max-width: 900px;
    margin: 0 auto;
}

.gallery-main {
    margin-bottom: 20px;
}

.gallery-main-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border-neon);
    box-shadow: 0 0 30px var(--primary-glow-subtle), 0 8px 40px rgba(0,0,0,0.4);
    cursor: pointer;
    transition: all var(--transition-base);
}

.gallery-main-frame:hover {
    box-shadow: 0 0 40px var(--primary-glow), 0 12px 50px rgba(0,0,0,0.5);
}

.gallery-main-glow {
    position: absolute;
    inset: -3px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary-glow-subtle), var(--accent-glow-subtle));
    z-index: 0;
    filter: blur(4px);
}

.gallery-main-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.gallery-main-frame:hover .gallery-main-image {
    transform: scale(1.02);
}

.gallery-main-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-main-frame:hover .gallery-main-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--primary);
    padding: 12px 20px;
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--border-neon);
    border-radius: var(--radius-md);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-thumb {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--border-subtle);
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
    background: none;
}

.gallery-thumb img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-base);
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

.gallery-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.gallery-thumb:hover {
    border-color: var(--primary-dim);
}

.thumb-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-glow-subtle), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.gallery-thumb.active .thumb-glow,
.gallery-thumb:hover .thumb-glow {
    opacity: 0.3;
}

/* =============================================
   COMMUNITY / SOCIAL PROOF SECTION
   ============================================= */

.community-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.community-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow-subtle) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0.4;
}

/* Live Counter Bar */
.live-counter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 24px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.live-counter-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
}

.live-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid currentColor;
    animation: pulseRing 2s ease-out infinite;
    opacity: 0.6;
}

.live-dot-green {
    background: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
}

.live-dot-pink {
    background: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
}

.live-dot-blue {
    background: var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: 0 0 8px var(--neon-blue-glow);
}

.live-count {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
}

.live-label {
    font-size: 14px;
    color: var(--text-muted);
}

.live-counter-divider {
    width: 1px;
    height: 32px;
    background: var(--border-light);
}

/* Social Proof Notifications */
.social-proof-container {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: var(--z-toast);
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.social-proof-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(10, 10, 15, 0.95);
    border: 1px solid var(--border-neon);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 15px var(--primary-glow-subtle);
    animation: toastIn 0.4s ease-out;
    max-width: 320px;
    pointer-events: auto;
}

.social-proof-toast.is-leaving {
    animation: toastOut 0.3s ease-in forwards;
}

.sp-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.sp-info {
    flex: 1;
}

.sp-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    display: block;
}

.sp-action {
    font-size: 12px;
    color: var(--text-muted);
}

.sp-time {
    font-family: var(--font-display);
    font-size: 10px;
    color: var(--text-dim);
    white-space: nowrap;
}

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

.testimonial-card {
    position: relative;
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    overflow: hidden;
}

.testimonial-card:hover {
    border-color: var(--border-neon);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 15px var(--primary-glow-subtle);
}

.testimonial-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.testimonial-card:hover .testimonial-glow {
    opacity: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star-filled {
    color: var(--neon-yellow);
    font-family: var(--font-display);
    font-size: 12px;
    text-shadow: 0 0 6px rgba(255, 221, 0, 0.4);
}

.star-half {
    color: var(--text-dim);
    font-family: var(--font-display);
    font-size: 12px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--bg-dark);
}

.author-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
}

.author-loc {
    font-size: 13px;
    color: var(--text-dim);
}

/* =============================================
   FAQ SECTION
   ============================================= */

.faq-section {
    padding: 120px 0;
    position: relative;
}

.faq-accordion {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.is-open {
    border-color: var(--border-neon);
    box-shadow: 0 0 20px var(--primary-glow-subtle);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: none;
    border: none;
}

.faq-question:hover {
    background: rgba(255,255,255,0.02);
}

.faq-q-text {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.4;
}

.faq-arrow {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform var(--transition-base);
    display: flex;
}

.faq-item.is-open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 24px;
}

.faq-item.is-open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* =============================================
   SIGNUP / LEAD FORM SECTION
   ============================================= */

.signup-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.signup-bg-glow-1 {
    position: absolute;
    top: 0;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow-subtle) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(80px);
}

.signup-bg-glow-2 {
    position: absolute;
    bottom: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow-subtle) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(80px);
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.signup-info {
    max-width: 480px;
}

.signup-desc {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.signup-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.signup-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-light);
}

.benefit-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-glow-subtle);
    border: 1px solid var(--border-neon);
    border-radius: 50%;
}

/* Form Styles */
.signup-form-wrap {
    position: relative;
}

.signup-form-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary-glow-subtle), var(--accent-glow-subtle), var(--neon-blue-glow));
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite;
    filter: blur(4px);
    z-index: 0;
}

.signup-form {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
}

.form-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 28px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-optional {
    font-weight: 400;
    color: var(--text-dim);
    text-transform: none;
    font-size: 12px;
}

.input-wrap {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 16px;
    transition: all var(--transition-base);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-dim);
}

.form-input:focus {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.03);
    box-shadow: 0 0 15px var(--primary-glow-subtle), 0 0 5px var(--primary-glow-subtle) inset;
}

.form-input.is-error {
    border-color: #ff4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.2);
}

.input-glow {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-base);
    box-shadow: 0 0 20px var(--primary-glow-subtle);
}

.form-input:focus ~ .input-glow {
    opacity: 1;
}

.form-error {
    display: block;
    font-size: 13px;
    color: #ff4444;
    margin-top: 6px;
    min-height: 0;
    transition: all var(--transition-fast);
}

/* Checkbox */
.form-consent-group {
    margin-bottom: 16px;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    transition: all var(--transition-fast);
    position: relative;
    margin-top: 1px;
}

.form-checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
}

.form-checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid var(--bg-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-checkbox-label input[type="checkbox"]:focus-visible ~ .checkbox-custom {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.checkbox-text a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    margin-top: 8px;
}

.btn-loader {
    display: inline-flex;
    gap: 4px;
}

.loader-dot {
    width: 8px;
    height: 8px;
    background: var(--bg-dark);
    border-radius: 50%;
    animation: loaderBounce 1.4s ease-in-out infinite both;
}

.loader-dot:nth-child(1) { animation-delay: -0.32s; }
.loader-dot:nth-child(2) { animation-delay: -0.16s; }
.loader-dot:nth-child(3) { animation-delay: 0; }

/* Success & Error Messages */
.signup-success {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-neon);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 0 30px var(--primary-glow-subtle);
}

.success-icon {
    margin-bottom: 24px;
    animation: neonBreathe 2s ease-in-out infinite;
    display: inline-block;
}

.success-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    text-shadow: 0 0 15px var(--primary-glow);
}

.success-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.signup-error-msg {
    position: relative;
    z-index: 1;
    background: rgba(255, 68, 68, 0.05);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-top: 16px;
    text-align: center;
}

.signup-error-msg p {
    font-size: 14px;
    color: #ff6666;
}

.signup-error-msg a {
    color: #ff6666;
    text-decoration: underline;
}

/* =============================================
   TRUST & SECURITY SECTION
   ============================================= */

.trust-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--border-subtle);
}

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

.trust-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.trust-item:hover {
    border-color: var(--border-neon);
    box-shadow: 0 0 20px var(--primary-glow-subtle);
}

.trust-icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: var(--primary-glow-subtle);
    border: 1px solid var(--border-neon);
    border-radius: var(--radius-md);
}

.trust-icon {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
}

.trust-item h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.trust-item p a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* =============================================
   FOOTER
   ============================================= */

.main-footer {
    position: relative;
    background: var(--secondary);
    padding: 60px 0 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-glow-line {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-glow), var(--accent-glow), var(--primary-glow), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-brand-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-age-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 0, 128, 0.08);
    border: 1px solid rgba(255, 0, 128, 0.3);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--accent);
}

.footer-age-badge span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
    text-decoration: none;
}

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

.footer-contact-links .contact-note {
    font-size: 12px;
    color: var(--text-dim);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-address {
    font-size: 12px !important;
    color: var(--text-dim);
    margin-top: 4px;
}

/* =============================================
   LEGAL PAGES CONTENT
   ============================================= */

.legal-page-hero {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
}

.legal-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-neon), transparent);
}

.legal-page-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.legal-page-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

.legal-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    margin-top: 40px;
    margin-bottom: 60px;
    border: 1px solid var(--border-subtle);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-subtle);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content strong {
    color: var(--text-white);
    font-weight: 600;
}

.legal-content .legal-updated {
    font-size: 14px;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 30px;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-frame {
        width: 280px;
        height: 280px;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        justify-self: center;
    }

    .signup-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .signup-info {
        max-width: 100%;
        text-align: center;
    }

    .signup-benefits {
        align-items: center;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: rgba(5, 5, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-neon);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 8px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    }

    .nav-links.is-open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 18px;
        padding: 12px 16px;
        width: 100%;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
        width: 100%;
        display: block;
    }

    .hero-section {
        min-height: auto;
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 80px;
    }

    .hero-image-frame {
        width: 220px;
        height: 220px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 36px;
        height: 1px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .game-section,
    .gallery-section,
    .community-section,
    .faq-section,
    .signup-section,
    .trust-section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .live-counter-bar {
        flex-direction: column;
        gap: 16px;
    }

    .live-counter-divider {
        width: 40px;
        height: 1px;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-proof-container {
        right: 12px;
        bottom: 80px;
    }

    .social-proof-toast {
        max-width: 280px;
    }

    .cookie-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title-line-1 {
        font-size: 28px;
    }

    .hero-title-line-2 {
        font-size: 36px;
    }

    .hero-image-frame {
        width: 180px;
        height: 180px;
    }

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

    .gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* =============================================
   REDUCED MOTION
   ============================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}
