/* ============================================
   CSS CUSTOM PROPERTIES / VARIABLES
   ============================================ */
:root {
    /* Primary Colors */
    --neon-green: #00ff88;
    --neon-green-dim: #00cc6a;
    --neon-green-glow: rgba(0, 255, 136, 0.4);
    --neon-green-subtle: rgba(0, 255, 136, 0.08);

    /* Accent Colors */
    --neon-pink: #ff0080;
    --neon-pink-dim: #cc0066;
    --neon-pink-glow: rgba(255, 0, 128, 0.4);
    --neon-pink-subtle: rgba(255, 0, 128, 0.08);

    /* Additional Neon Colors */
    --neon-cyan: #00e5ff;
    --neon-cyan-glow: rgba(0, 229, 255, 0.4);
    --neon-yellow: #ffe600;
    --neon-yellow-glow: rgba(255, 230, 0, 0.4);
    --neon-purple: #b44aff;
    --neon-purple-glow: rgba(180, 74, 255, 0.4);
    --neon-orange: #ff6b00;
    --neon-orange-glow: rgba(255, 107, 0, 0.4);
    --neon-red: #ff2244;
    --neon-red-glow: rgba(255, 34, 68, 0.4);

    /* Background Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #0d0d0d;
    --bg-tertiary: #111111;
    --bg-card: #0f0f0f;
    --bg-card-hover: #141414;
    --bg-elevated: #1a1a1a;

    /* Text Colors */
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --text-dark: #1a1a1a;

    /* Border */
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(0, 255, 136, 0.2);

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

    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1280px;
    --container-padding: 0 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Z-index scale */
    --z-base: 1;
    --z-header: 100;
    --z-overlay: 500;
    --z-modal: 1000;
    --z-cookie: 1100;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::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(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

ul, ol {
    list-style: none;
}

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

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

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

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

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

::-webkit-scrollbar-thumb {
    background: var(--neon-green-dim);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

.text-glow-primary {
    color: var(--neon-green);
    text-shadow:
        0 0 10px var(--neon-green-glow),
        0 0 30px var(--neon-green-glow),
        0 0 60px rgba(0, 255, 136, 0.15);
}

.text-glow-pink {
    color: var(--neon-pink);
    text-shadow:
        0 0 10px var(--neon-pink-glow),
        0 0 30px var(--neon-pink-glow),
        0 0 60px rgba(255, 0, 128, 0.15);
}

/* ============================================
   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, 10, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glow);
    padding: 20px 24px;
    animation: slideUpCookie 0.5s var(--transition-base);
}

@keyframes slideUpCookie {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 280px;
}

.cookie-icon {
    font-size: 24px;
    color: var(--neon-green);
    margin-top: 2px;
    flex-shrink: 0;
}

.cookie-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.cookie-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-desc a {
    color: var(--neon-green);
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-cookie-accept {
    background: var(--neon-green);
    color: var(--bg-primary);
    box-shadow: 0 0 15px var(--neon-green-glow);
}

.btn-cookie-accept:hover {
    background: #00e67a;
    box-shadow: 0 0 25px var(--neon-green-glow);
    transform: translateY(-1px);
}

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

.btn-cookie-essential:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid transparent;
}

.btn-cookie-reject:hover {
    color: var(--neon-pink);
    border-color: rgba(255, 0, 128, 0.3);
}

/* ============================================
   AGE GATE MODAL
   ============================================ */
.age-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn 0.4s ease;
}

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

.age-gate-modal {
    position: relative;
    max-width: 480px;
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.age-gate-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--neon-green-glow) 0%, transparent 50%);
    opacity: 0.15;
    pointer-events: none;
}

.age-gate-content {
    position: relative;
    z-index: 2;
}

.age-gate-icon {
    font-size: 48px;
    color: var(--neon-green);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px var(--neon-green-glow));
}

.age-gate-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.age-gate-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.age-gate-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-age {
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-base);
    letter-spacing: 0.5px;
}

.btn-age-yes {
    background: var(--neon-green);
    color: var(--bg-primary);
    box-shadow:
        0 0 20px var(--neon-green-glow),
        0 0 40px rgba(0, 255, 136, 0.15);
}

.btn-age-yes:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 30px var(--neon-green-glow),
        0 0 60px rgba(0, 255, 136, 0.25);
}

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

.btn-age-no:hover {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.age-gate-legal {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    padding: 16px 0;
    transition: all var(--transition-base);
    background: transparent;
}

.main-header.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--neon-green);
    border-radius: var(--radius-sm);
    color: var(--bg-primary);
    font-size: 18px;
    box-shadow: 0 0 15px var(--neon-green-glow);
    transition: all var(--transition-base);
}

.nav-logo:hover .logo-icon {
    box-shadow: 0 0 25px var(--neon-green-glow), 0 0 50px rgba(0, 255, 136, 0.15);
    transform: rotate(10deg);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 2px;
}

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

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--neon-green);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--neon-green);
    border-radius: 1px;
    box-shadow: 0 0 8px var(--neon-green-glow);
}

.nav-cta {
    background: var(--neon-green) !important;
    color: var(--bg-primary) !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm) !important;
    box-shadow: 0 0 15px var(--neon-green-glow);
}

.nav-cta:hover {
    box-shadow: 0 0 25px var(--neon-green-glow) !important;
    transform: translateY(-1px);
}

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

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

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
    border-radius: 1px;
}

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

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

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

/* Hero grid background */
.hero-grid-bg {
    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%);
}

/* Scanlines */
.hero-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
}

/* Radial glow */
.hero-radial-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* Particles container */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--neon-green-glow);
    animation: particleFloat linear infinite;
    opacity: 0;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* Hero layout */
.hero-section > .hero-content,
.hero-section > .hero-visual {
    position: relative;
    z-index: 2;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 40px;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--neon-green-subtle);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 50px;
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--neon-green);
    letter-spacing: 1.5px;
    width: fit-content;
    margin-bottom: 32px;
    animation: pulseBadge 3s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.1); }
    50% { box-shadow: 0 0 20px 5px rgba(0, 255, 136, 0.08); }
}

.hero-badge i {
    font-size: 14px;
    animation: flickerFire 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: 28px;
}

.title-line {
    display: block;
}

.title-line-1 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 2px;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.title-line-2 {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 3px;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.title-line-3 {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    color: var(--neon-green);
    letter-spacing: 6px;
    text-shadow:
        0 0 20px var(--neon-green-glow),
        0 0 40px var(--neon-green-glow),
        0 0 80px rgba(0, 255, 136, 0.2),
        0 0 120px rgba(0, 255, 136, 0.1);
    animation: slideInLeft 0.8s ease-out 0.6s both, glowPulse 4s ease-in-out infinite 1.5s;
}

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

@keyframes glowPulse {
    0%, 100% {
        text-shadow:
            0 0 20px var(--neon-green-glow),
            0 0 40px var(--neon-green-glow),
            0 0 80px rgba(0, 255, 136, 0.2);
    }
    50% {
        text-shadow:
            0 0 30px var(--neon-green-glow),
            0 0 60px var(--neon-green-glow),
            0 0 120px rgba(0, 255, 136, 0.3),
            0 0 180px rgba(0, 255, 136, 0.1);
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

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

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--neon-green);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow:
        0 0 20px var(--neon-green-glow),
        0 0 40px rgba(0, 255, 136, 0.15);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 30px var(--neon-green-glow),
        0 0 60px rgba(0, 255, 136, 0.25),
        0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--bg-primary);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green-glow);
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--border-color), transparent);
}

/* Hero Visual - Phone Mockup */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-phone-mockup {
    position: relative;
    perspective: 1000px;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 36px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    padding: 12px;
    position: relative;
    box-shadow:
        0 0 30px rgba(0, 255, 136, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: phoneFloat 6s ease-in-out infinite;
    transform: rotateY(-5deg) rotateX(2deg);
}

@keyframes phoneFloat {
    0%, 100% { transform: rotateY(-5deg) rotateX(2deg) translateY(0); }
    50% { transform: rotateY(-3deg) rotateX(1deg) translateY(-12px); }
}

.phone-notch {
    width: 100px;
    height: 24px;
    background: var(--bg-primary);
    border-radius: 0 0 16px 16px;
    margin: 0 auto 8px;
    position: relative;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: calc(100% - 32px);
    background: linear-gradient(180deg, #050510 0%, #0a0a1a 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

/* Game UI inside phone */
.screen-game-ui {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.game-hud-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    z-index: 2;
}

.hud-health {
    display: flex;
    align-items: center;
    gap: 6px;
}

.health-bar {
    width: 80px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.health-fill {
    width: 87%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-green), #00cc6a);
    border-radius: 4px;
    box-shadow: 0 0 8px var(--neon-green-glow);
    animation: healthPulse 3s ease-in-out infinite;
}

@keyframes healthPulse {
    0%, 100% { box-shadow: 0 0 8px var(--neon-green-glow); }
    50% { box-shadow: 0 0 15px var(--neon-green-glow); }
}

.hud-text {
    font-family: var(--font-display);
    font-size: 0.55rem;
    color: var(--neon-green);
    letter-spacing: 0.5px;
}

.hud-score {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-display);
    font-size: 0.65rem;
    color: var(--neon-yellow);
}

.hud-score i {
    font-size: 0.55rem;
}

/* Game Arena */
.game-arena {
    flex: 1;
    position: relative;
    margin: 8px 0;
    border-radius: 12px;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.03) 0%, transparent 70%);
}

.arena-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.arena-player {
    position: absolute;
    bottom: 30%;
    left: 35%;
    width: 20px;
    height: 20px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow:
        0 0 10px var(--neon-green-glow),
        0 0 20px var(--neon-green-glow);
    animation: playerBob 2s ease-in-out infinite;
}

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

.arena-enemy {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--neon-pink);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-pink-glow);
}

.arena-enemy-1 {
    top: 25%;
    right: 20%;
    animation: enemyMove1 4s ease-in-out infinite;
}

@keyframes enemyMove1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-10px, 5px); }
    50% { transform: translate(-5px, -10px); }
    75% { transform: translate(8px, -3px); }
}

.arena-enemy-2 {
    top: 45%;
    right: 35%;
    animation: enemyMove2 5s ease-in-out infinite;
}

@keyframes enemyMove2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(8px, -8px); }
    66% { transform: translate(-6px, 4px); }
}

.arena-projectile {
    position: absolute;
    bottom: 35%;
    left: 45%;
    width: 8px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--neon-cyan-glow);
    animation: projectileFly 2s linear infinite;
}

@keyframes projectileFly {
    0% { left: 45%; bottom: 35%; opacity: 1; }
    100% { left: 80%; bottom: 28%; opacity: 0; }
}

.arena-explosion {
    position: absolute;
    top: 25%;
    right: 18%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.6) 0%, transparent 70%);
    animation: explosion 2s ease-out infinite 1.8s;
    opacity: 0;
}

@keyframes explosion {
    0% { transform: scale(0); opacity: 0.8; }
    50% { transform: scale(1.5); opacity: 0.3; }
    100% { transform: scale(2); opacity: 0; }
}

/* Game HUD Bottom */
.game-hud-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
    z-index: 2;
}

.hud-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    border: 1.5px solid;
}

.hud-btn-attack {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: 0 0 8px var(--neon-pink-glow);
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 8px var(--neon-pink-glow); }
    50% { box-shadow: 0 0 15px var(--neon-pink-glow); }
}

.hud-btn-shield {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan-glow);
}

.hud-btn-special {
    border-color: var(--neon-yellow);
    color: var(--neon-yellow);
    box-shadow: 0 0 8px var(--neon-yellow-glow);
}

.hud-joystick {
    position: relative;
}

.joystick-base {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
}

.joystick-stick {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: joystickWobble 3s ease-in-out infinite;
}

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

.phone-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, var(--neon-green-glow) 0%, transparent 60%);
    opacity: 0.2;
    pointer-events: none;
    z-index: -1;
    animation: phoneGlowPulse 4s ease-in-out infinite;
}

@keyframes phoneGlowPulse {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.25; }
}

.phone-reflection {
    position: absolute;
    top: 10%;
    left: -5%;
    width: 110%;
    height: 30%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    border-radius: 36px;
    pointer-events: none;
    transform: rotate(-3deg);
}

/* 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: 2;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.hero-scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
    color: var(--neon-green);
    font-size: 0.8rem;
}

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

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof-ticker {
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    z-index: 2;
}

.ticker-track {
    display: flex;
    gap: 48px;
    animation: tickerScroll 40s linear infinite;
    width: max-content;
}

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

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.ticker-item i {
    color: var(--neon-green);
    font-size: 0.85rem;
}

.ticker-item strong {
    color: var(--neon-green);
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--neon-green);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: var(--neon-green-subtle);
    border: 1px solid rgba(0, 255, 136, 0.12);
    padding: 6px 16px;
    border-radius: 50px;
}

.section-tag i {
    font-size: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 128, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.feature-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 255, 136, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover {
    border-color: rgba(0, 255, 136, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 136, 0.05);
}

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

.feature-card-large {
    grid-column: span 2;
}

.feature-icon-wrap {
    position: relative;
    margin-bottom: 20px;
    width: fit-content;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--neon-green-subtle);
    border: 1px solid rgba(0, 255, 136, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--neon-green);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    box-shadow: 0 0 20px var(--neon-green-glow);
}

.feature-icon-pink {
    background: var(--neon-pink-subtle);
    border-color: rgba(255, 0, 128, 0.15);
    color: var(--neon-pink);
}

.feature-card:hover .feature-icon-pink {
    box-shadow: 0 0 20px var(--neon-pink-glow);
}

.feature-icon-cyan {
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.15);
    color: var(--neon-cyan);
}

.feature-card:hover .feature-icon-cyan {
    box-shadow: 0 0 20px var(--neon-cyan-glow);
}

.feature-icon-yellow {
    background: rgba(255, 230, 0, 0.08);
    border-color: rgba(255, 230, 0, 0.15);
    color: var(--neon-yellow);
}

.feature-card:hover .feature-icon-yellow {
    box-shadow: 0 0 20px var(--neon-yellow-glow);
}

.feature-icon-purple {
    background: rgba(180, 74, 255, 0.08);
    border-color: rgba(180, 74, 255, 0.15);
    color: var(--neon-purple);
}

.feature-card:hover .feature-icon-purple {
    box-shadow: 0 0 20px var(--neon-purple-glow);
}

.feature-icon-orange {
    background: rgba(255, 107, 0, 0.08);
    border-color: rgba(255, 107, 0, 0.15);
    color: var(--neon-orange);
}

.feature-card:hover .feature-icon-orange {
    box-shadow: 0 0 20px var(--neon-orange-glow);
}

.feature-icon-red {
    background: rgba(255, 34, 68, 0.08);
    border-color: rgba(255, 34, 68, 0.15);
    color: var(--neon-red);
}

.feature-card:hover .feature-icon-red {
    box-shadow: 0 0 20px var(--neon-red-glow);
}

.feature-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--neon-green-glow);
    filter: blur(20px);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.glow-pink { background: var(--neon-pink-glow); }
.glow-cyan { background: var(--neon-cyan-glow); }
.glow-yellow { background: var(--neon-yellow-glow); }
.glow-purple { background: var(--neon-purple-glow); }
.glow-orange { background: var(--neon-orange-glow); }
.glow-red { background: var(--neon-red-glow); }

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

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 12px;
    background: var(--neon-green-subtle);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neon-green);
    letter-spacing: 0.5px;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.steps-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.step-connector {
    position: absolute;
    top: 42px;
    left: 16.67%;
    right: 16.67%;
    height: 3px;
    z-index: 0;
}

.connector-line {
    width: 100%;
    height: 100%;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.connector-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-pink), var(--neon-cyan));
    border-radius: 2px;
    box-shadow: 0 0 10px var(--neon-green-glow);
    transition: width 1.5s ease-out;
}

.step-card {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-muted);
    opacity: 0.3;
    margin-bottom: 8px;
}

.step-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    transition: all var(--transition-base);
}

.step-card.active .step-dot {
    background: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: 0 0 15px var(--neon-green-glow);
}

.step-card.active .step-number {
    color: var(--neon-green);
    opacity: 1;
    text-shadow: 0 0 15px var(--neon-green-glow);
}

.step-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all var(--transition-base);
}

.step-card.active .step-content {
    border-color: rgba(0, 255, 136, 0.15);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.05);
}

.step-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--neon-green-subtle);
    border: 1px solid rgba(0, 255, 136, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--neon-green);
    margin: 0 auto 20px;
}

.step-icon-pink {
    background: var(--neon-pink-subtle);
    border-color: rgba(255, 0, 128, 0.15);
    color: var(--neon-pink);
}

.step-icon-cyan {
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.15);
    color: var(--neon-cyan);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.how-cta {
    text-align: center;
}

/* ============================================
   COMMUNITY / TESTIMONIALS SECTION
   ============================================ */
.community-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 72px;
}

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

.testimonial-card:hover {
    border-color: rgba(0, 255, 136, 0.15);
    transform: translateY(-4px);
}

.testimonial-featured {
    border-color: rgba(255, 0, 128, 0.2);
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(255, 0, 128, 0.03) 100%);
}

.testimonial-featured:hover {
    border-color: rgba(255, 0, 128, 0.3);
}

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

.testimonial-stars i {
    color: var(--neon-yellow);
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--neon-green-subtle);
    border: 1px solid rgba(0, 255, 136, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    font-size: 1rem;
}

.author-avatar-pink {
    background: var(--neon-pink-subtle);
    border-color: rgba(255, 0, 128, 0.2);
    color: var(--neon-pink);
}

.author-avatar-cyan {
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.2);
    color: var(--neon-cyan);
}

.author-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.author-rank {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--neon-yellow);
    font-weight: 500;
}

.author-rank i {
    font-size: 0.7rem;
}

/* Live Counters */
.live-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.counter-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.counter-card:hover {
    border-color: rgba(0, 255, 136, 0.15);
    transform: translateY(-3px);
}

.counter-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--neon-green-subtle);
    border: 1px solid rgba(0, 255, 136, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--neon-green);
    margin: 0 auto 16px;
}

.counter-icon-pink {
    background: var(--neon-pink-subtle);
    border-color: rgba(255, 0, 128, 0.15);
    color: var(--neon-pink);
}

.counter-icon-cyan {
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.15);
    color: var(--neon-cyan);
}

.counter-icon-yellow {
    background: rgba(255, 230, 0, 0.08);
    border-color: rgba(255, 230, 0, 0.15);
    color: var(--neon-yellow);
}

.counter-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.counter-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 12px;
}

.counter-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--neon-green);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-green);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--neon-green-glow); }
    50% { opacity: 0.5; box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.1); }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item:hover {
    border-color: rgba(0, 255, 136, 0.1);
}

.faq-item.active {
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.03);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
    text-align: left;
    transition: all var(--transition-fast);
    background: transparent;
}

.faq-question:hover {
    color: var(--neon-green);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--neon-green-subtle);
    color: var(--neon-green);
    font-size: 0.8rem;
    transition: all var(--transition-base);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-toggle {
    background: var(--neon-green);
    color: var(--bg-primary);
    transform: rotate(45deg);
    box-shadow: 0 0 10px var(--neon-green-glow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

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

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--neon-green);
    text-decoration: underline;
}

/* ============================================
   REGISTER / LEAD FORM SECTION
   ============================================ */
.register-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.register-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.register-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.register-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 255, 136, 0.06);
    top: -10%;
    left: -10%;
    animation: orbFloat1 10s ease-in-out infinite;
}

.register-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 0, 128, 0.05);
    bottom: -10%;
    right: -5%;
    animation: orbFloat2 12s ease-in-out infinite;
}

.register-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(0, 229, 255, 0.04);
    top: 30%;
    right: 20%;
    animation: orbFloat3 8s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 20px); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -30px); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -15px); }
}

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

.register-info {
    padding-top: 20px;
}

.register-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.register-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 36px;
}

.register-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.perk-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 0.7rem;
    flex-shrink: 0;
    box-shadow: 0 0 10px var(--neon-green-glow);
}

.register-urgency {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 24px;
}

.urgency-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.urgency-fill {
    width: 95.7%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-pink));
    border-radius: 4px;
    box-shadow: 0 0 10px var(--neon-green-glow);
    animation: urgencyPulse 3s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 0 10px var(--neon-green-glow); }
    50% { box-shadow: 0 0 20px var(--neon-pink-glow); }
}

.urgency-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.urgency-text strong {
    color: var(--neon-pink);
}

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

.form-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(255, 0, 128, 0.15), rgba(0, 229, 255, 0.15));
    border-radius: calc(var(--radius-lg) + 2px);
    z-index: -1;
    filter: blur(1px);
    animation: formGlowRotate 6s linear infinite;
}

@keyframes formGlowRotate {
    0% { filter: blur(1px) hue-rotate(0deg); }
    100% { filter: blur(1px) hue-rotate(360deg); }
}

.register-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

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

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.form-input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
    outline: none;
}

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

.form-input:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1), 0 0 15px rgba(0, 255, 136, 0.05);
}

.form-input:focus + .input-icon,
.form-input:focus ~ .input-icon {
    color: var(--neon-green);
}

/* Fix: icon is before input in DOM, use sibling differently */
.input-wrap:focus-within .input-icon {
    color: var(--neon-green);
}

.form-input.error {
    border-color: var(--neon-pink);
    box-shadow: 0 0 0 3px rgba(255, 0, 128, 0.1);
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: var(--neon-pink);
    margin-top: 6px;
    min-height: 0;
}

/* Checkbox */
.form-group-checkbox {
    margin-bottom: 14px;
}

.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 2px;
    position: relative;
}

.checkbox-wrap input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green-glow);
}

.checkbox-wrap input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--bg-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-text a {
    color: var(--neon-green);
    text-decoration: underline;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
    padding: 18px 32px;
    font-size: 1.05rem;
    border: none;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.form-legal {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

.form-legal a {
    color: var(--neon-green);
}

/* Success/Error Messages */
.form-success,
.form-error-msg {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 60px 36px;
    text-align: center;
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon {
    font-size: 4rem;
    color: var(--neon-green);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px var(--neon-green-glow));
    animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--neon-green);
}

.success-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.error-icon {
    font-size: 4rem;
    color: var(--neon-pink);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px var(--neon-pink-glow));
}

.error-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--neon-pink);
}

.error-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.btn-retry {
    display: inline-flex;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

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

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

.trust-card:hover {
    border-color: rgba(0, 255, 136, 0.15);
    transform: translateY(-3px);
}

.trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--neon-green-subtle);
    border: 1px solid rgba(0, 255, 136, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--neon-green);
    margin: 0 auto 18px;
}

.trust-icon-pink {
    background: var(--neon-pink-subtle);
    border-color: rgba(255, 0, 128, 0.15);
    color: var(--neon-pink);
}

.trust-icon-cyan {
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.15);
    color: var(--neon-cyan);
}

.trust-icon-yellow {
    background: rgba(255, 230, 0, 0.08);
    border-color: rgba(255, 230, 0, 0.15);
    color: var(--neon-yellow);
}

.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0;
    position: relative;
}

.footer-glow-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    box-shadow: 0 0 20px var(--neon-green-glow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

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

.footer-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 300px;
}



.footer-col-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 10px;
}

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

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

.footer-contact-links li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-links li i {
    color: var(--neon-green);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-links li span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-left p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-bottom-right {
    display: flex;
    gap: 12px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-badge i {
    color: var(--neon-green);
    font-size: 0.7rem;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    padding-top: 80px;
}

.legal-hero {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 80px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.legal-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green-glow);
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
}

.legal-hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-muted);
    position: relative;
}

.legal-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #fafafa;
    border-radius: var(--radius-lg);
    margin-top: -20px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    color: var(--text-dark);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e0e0e0;
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 3px solid var(--neon-green);
}

.legal-section h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    margin-bottom: 12px;
}

.legal-section p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

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

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

.legal-section li {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-section a {
    color: #008844;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #006633;
}

.legal-section strong {
    color: #222;
}

.legal-footer-note {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.legal-footer-note p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Legal table */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #ddd;
}

.legal-table th {
    background: #f0f0f0;
    font-weight: 600;
    color: #333;
}

.legal-table td {
    color: #444;
}

/* GDPR Rights Grid */
.gdpr-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.gdpr-right-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: all var(--transition-base);
}

.gdpr-right-card:hover {
    border-color: #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gdpr-right-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #008844;
    margin-bottom: 14px;
}

.gdpr-icon-pink { background: rgba(255, 0, 128, 0.08); color: #cc0066; }
.gdpr-icon-cyan { background: rgba(0, 229, 255, 0.08); color: #0099aa; }
.gdpr-icon-yellow { background: rgba(255, 230, 0, 0.08); color: #aa8800; }
.gdpr-icon-purple { background: rgba(180, 74, 255, 0.08); color: #7722cc; }
.gdpr-icon-red { background: rgba(255, 34, 68, 0.08); color: #cc2244; }

.gdpr-right-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    padding-left: 0;
    border-left: none;
}

.gdpr-right-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal="up"] {
    transform: translateY(40px);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0, 0);
}

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

    .feature-card-large {
        grid-column: span 1;
    }

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

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

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

@media (max-width: 900px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 120px 24px 60px;
        min-height: auto;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        align-items: center;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

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

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

    .hero-visual {
        display: none;
    }

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

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

    .steps-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step-connector {
        display: none;
    }

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

    .gdpr-rights-grid {
        grid-template-columns: 1fr;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right var(--transition-base);
        border-left: 1px solid var(--border-color);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 1.05rem;
        width: 100%;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-cta {
        text-align: center;
        margin-top: 16px;
    }

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

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

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

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

    .live-counters {
        grid-template-columns: 1fr 1fr;
    }

    .register-form {
        padding: 32px 24px;
    }

    .legal-content {
        padding: 40px 24px;
        margin-left: 16px;
        margin-right: 16px;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        justify-content: stretch;
    }

    .btn-cookie {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

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

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .live-counters {
        grid-template-columns: 1fr;
    }

    .counter-card {
        padding: 24px 16px;
    }

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

    .age-gate-buttons {
        flex-direction: column;
    }

    .btn-age {
        width: 100%;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .main-header,
    .cookie-banner,
    .age-gate-overlay,
    .hero-particles,
    .hero-grid-bg,
    .hero-scanlines,
    .hero-radial-glow,
    .social-proof-ticker,
    .footer-socials {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .legal-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
