/* ============================================
   DESIGN TOKENS - Cyberpunk Dark Theme
   Single theme (no toggle). Dark deep-space
   background with neon cyan/purple/green accents.
   ============================================ */

:root {
    /* Backgrounds */
    --background: #0a0a14;
    --background-elevated: #0f0f1e;
    --card: #111827;
    --card-elevated: #1a1f35;
    --popover: #0f172a;

    /* Foreground */
    --foreground: #e2e8f0;
    --foreground-bright: #f8fafc;
    --muted-foreground: #b8c5d6;

    /* Brand colors */
    --primary: #06b6d4;
    --primary-dark: #0891b2;
    --primary-glow: rgba(6, 182, 212, 0.5);
    --secondary: #a855f7;
    --secondary-dark: #9333ea;
    --secondary-glow: rgba(168, 85, 247, 0.5);
    --accent: #22c55e;
    --accent-dark: #16a34a;
    --accent-glow: rgba(34, 197, 94, 0.5);
    --destructive: #ea0d33;

    /* Borders & inputs */
    --border: #1e293b;
    --border-light: #334155;
    --input: #0f172a;
    --ring: #06b6d4;

    /* Semantic */
    --primary-foreground: #0a0a14;
    --secondary-foreground: #0a0a14;
    --accent-foreground: #0a0a14;
    --destructive-foreground: #ffffff;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 100px;

    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    /* Header */
    --header-height: 72px;
    --header-height-desktop: 80px;

    /* Container */
    --container-max: 1280px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;

    color-scheme: dark;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

* {
    margin: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
}

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

ul, ol {
    list-style: none;
    padding: 0;
}

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

input, textarea, select {
    max-width: 100%;
    font-family: inherit;
}

p, li, td, th {
    overflow-wrap: break-word;
}

/* ============================================
   TYPOGRAPHY
   Orbitron headings, Rajdhani body
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--foreground-bright);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

h1 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

h2 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

h3 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

h4 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 28px;
    max-width: 80ch;
}

@media (min-width: 1024px) {
    h1 { font-size: 52px; letter-spacing: 3px; }
    h2 { font-size: 38px; letter-spacing: 2px; }
    h3 { font-size: 28px; }
    h4 { font-size: 22px; }
}

/* Neon text effects */
.neon-cyan {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow), 0 0 20px rgba(6, 182, 212, 0.3);
}

.neon-purple {
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary-glow), 0 0 20px rgba(168, 85, 247, 0.3);
}

.neon-green {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow), 0 0 20px rgba(34, 197, 94, 0.3);
}

/* ============================================
   LAYOUT - Container, sections, grids
   ============================================ */

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

@media (min-width: 1024px) {
    .container { padding: 0 32px; }
}

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

@media (min-width: 1024px) {
    .section { padding: 48px 32px; }
}

.section--full {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.section--full .section-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1024px) {
    .section--full .section-inner { padding: 0 32px; }
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* ============================================
   HEADER & NAVIGATION
   Sticky transparent-to-solid header
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(10, 10, 20, 0.95);
    box-shadow: 0 2px 30px rgba(6, 182, 212, 0.12);
    border-bottom-color: var(--border);
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

@media (min-width: 1024px) {
    .header-inner {
        height: var(--header-height-desktop);
        padding: 0 32px;
    }
}

.site-brand {
    text-decoration: none;
    flex-shrink: 0;
    z-index: 1001;
}

.site-brand__text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--primary);
    text-shadow: 0 0 12px var(--primary-glow), 0 0 24px rgba(6, 182, 212, 0.3);
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .site-brand__text { font-size: 24px; }
}

/* Primary navigation */
.primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    display: none;
    padding: 20px;
}

.primary-nav.is-open {
    display: block;
}

.nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
    color: var(--foreground);
    text-decoration: none;
    padding: 14px 16px;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
    border-left-color: var(--primary);
    background: rgba(6, 182, 212, 0.08);
    text-shadow: 0 0 8px var(--primary-glow);
}

.nav-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.nav-cta-group .btn {
    width: 100%;
    text-align: center;
}

@media (min-width: 1024px) {
    .primary-nav {
        position: static;
        display: flex;
        align-items: center;
        background: transparent;
        padding: 0;
        overflow: visible;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .primary-nav.is-open {
        display: flex;
    }

    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 32px;
    }

    .nav-link {
        min-height: auto;
        padding: 0;
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: 0;
        font-size: 17px;
    }

    .nav-link:hover {
        border-left-color: transparent;
        border-bottom-color: var(--primary);
        background: transparent;
    }

    .nav-cta-group {
        flex-direction: row;
        gap: 12px;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

    .nav-cta-group .btn {
        width: auto;
    }
}

/* Mobile menu toggle (hamburger) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    z-index: 1001;
    padding: 0;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
    box-shadow: 0 0 6px var(--primary-glow);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .menu-toggle { display: none; }
}

/* ============================================
   FOOTER
   Four-column layout with links, payments, license
   ============================================ */

.site-footer {
    background: var(--background-elevated);
    border-top: 1px solid var(--border);
    padding: 56px 20px 24px;
    margin-top: 0;
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 32px;
    }
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary-glow);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0;
}

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

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

.footer-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 6px var(--primary-glow);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-icon {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-foreground);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.payment-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.footer-license {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 12px;
}

.footer-age {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 0;
    line-height: 1.5;
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ============================================
   BUTTONS
   Neon-glow buttons with cyberpunk styling
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    min-height: 48px;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--primary-foreground);
    box-shadow: 0 0 20px var(--primary-glow), 0 0 40px rgba(6, 182, 212, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 0 30px var(--primary-glow), 0 0 60px rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.25);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--secondary-foreground);
    box-shadow: 0 0 20px var(--secondary-glow), 0 0 40px rgba(168, 85, 247, 0.2);
}

.btn-secondary:hover {
    box-shadow: 0 0 30px var(--secondary-glow), 0 0 60px rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
}

.btn-cta {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 48px;
    min-height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--primary-foreground);
    box-shadow: 0 0 30px var(--primary-glow), 0 0 60px rgba(6, 182, 212, 0.3);
    border: none;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--primary-glow), 0 0 80px rgba(6, 182, 212, 0.4);
}

.btn-pulse {
    animation: btn-breathe 2.5s ease-in-out infinite;
}

@keyframes btn-breathe {
    0%, 100% {
        box-shadow: 0 0 30px var(--primary-glow), 0 0 60px rgba(6, 182, 212, 0.3);
    }
    50% {
        box-shadow: 0 0 45px var(--primary-glow), 0 0 90px rgba(6, 182, 212, 0.45);
    }
}

/* ============================================
   HERO SECTIONS
   Full-bleed with background image and neon overlay
   ============================================ */

.hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: clip;
    padding-top: 120px;
    padding-bottom: 56px;
}

@media (min-width: 1024px) {
    .hero {
        min-height: 700px;
        padding-bottom: 100px;
    }
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 20, 0.5) 0%, rgba(10, 10, 20, 0.85) 70%, var(--background) 100%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero__inner { padding: 0 32px; }
}

.hero__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 30px;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--foreground-bright);
    text-shadow: 0 0 20px var(--primary-glow), 0 0 40px rgba(6, 182, 212, 0.3);
    margin-bottom: 20px;
    max-width: 900px;
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 52px;
        letter-spacing: 3px;
    }
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--muted-foreground);
    max-width: 600px;
    margin-bottom: 32px;
}

@media (min-width: 1024px) {
    .hero__subtitle { font-size: 20px; }
}

.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ============================================
   STAT BLOCK
   Large numerals with neon glow and labels
   ============================================ */

.stat-block-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 0;
}

@media (min-width: 768px) {
    .stat-block-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

@media (min-width: 1024px) {
    .stat-number { font-size: 48px; }
}

.stat-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted-foreground);
}

.stat-glow-green {
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent-glow), 0 0 30px rgba(34, 197, 94, 0.3);
}

.stat-glow-blue {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow), 0 0 30px rgba(6, 182, 212, 0.3);
}

/* ============================================
   CTA BANNER
   Full-width conversion section
   ============================================ */

.cta-banner {
    position: relative;
    overflow: clip;
    padding: 56px 20px;
    background: linear-gradient(180deg, var(--background) 0%, #06060f 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .cta-banner { padding: 80px 20px; }
}

.cta-banner__beams {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, transparent 30%, rgba(6, 182, 212, 0.06) 50%, transparent 70%),
        linear-gradient(60deg, transparent 30%, rgba(168, 85, 247, 0.04) 50%, transparent 70%);
}

.cta-banner__beams::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(6, 182, 212, 0.025) 3px,
        rgba(6, 182, 212, 0.025) 4px
    );
}

.cta-banner__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-banner__headline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--foreground-bright);
    text-shadow: 0 0 20px var(--primary-glow), 0 0 40px rgba(6, 182, 212, 0.3);
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .cta-banner__headline { font-size: 38px; letter-spacing: 3px; }
}

.cta-banner__subtext {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner__microcopy {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 16px;
    margin-bottom: 0;
}

/* ============================================
   FAQ ACCORDION
   Expandable rows with neon cyan accent
   ============================================ */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
}

.faq-item {
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    background: var(--card);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item.is-open {
    border-left-color: var(--primary);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
    background: var(--card-elevated);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 17px;
    color: var(--foreground);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

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

.faq-item.is-open .faq-question {
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary-glow);
}

.faq-question-text {
    flex: 1;
    min-width: 0;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform var(--transition-base);
    display: flex;
    align-items: center;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer-content {
    padding: 0 20px 20px;
}

.faq-answer-content p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ============================================
   CARDS
   Content containers with neon borders
   ============================================ */

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    min-width: 0;
}

@media (min-width: 1024px) {
    .card { padding: 32px; }
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.15);
}

.card-featured {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}

.card-featured:hover {
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.25);
}

.card-accent-green {
    border-left: 3px solid var(--accent);
}

.card-accent-purple {
    border-left: 3px solid var(--secondary);
}

.card-accent-cyan {
    border-left: 3px solid var(--primary);
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    color: var(--foreground-bright);
    margin-bottom: 12px;
}

.card-text {
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Feature card (gamification, etc.) */
.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    min-width: 0;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(6, 182, 212, 0.015) 3px,
        rgba(6, 182, 212, 0.015) 4px
    );
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-left-color: var(--primary);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.15);
}

.feature-card h3 {
    position: relative;
    z-index: 1;
}

.feature-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

/* Bonus card */
.bonus-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    min-width: 0;
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.15);
}

.bonus-amount {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 36px;
    background: linear-gradient(135deg, var(--accent), #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--accent-glow);
    margin-bottom: 8px;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .bonus-amount { font-size: 48px; }
}

.bonus-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* Game card */
.game-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    min-width: 0;
    flex-shrink: 0;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.2);
}

.game-card__image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--card-elevated);
}

.game-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card__body {
    padding: 12px 16px;
}

.game-card__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--foreground);
    margin-bottom: 0;
}

.game-card__provider {
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 2px;
}

/* ============================================
   TABLES
   Comparison tables with neon borders
   ============================================ */

.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--foreground);
    overflow-wrap: break-word;
}

.comparison-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: var(--card-elevated);
    border-bottom: 2px solid var(--primary);
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(15, 15, 30, 0.5);
}

.comparison-table tbody tr:hover {
    background: rgba(6, 182, 212, 0.05);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--foreground-bright);
}

/* ============================================
   CALLOUT / HIGHLIGHT BOX
   Attention-grabbing inline block
   ============================================ */

.callout {
    border-radius: 12px;
    padding: 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    margin: 32px 0;
}

.callout-green {
    border-left-color: var(--accent);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.1);
}

.callout-purple {
    border-left-color: var(--secondary);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
}

.callout-cyan {
    border-left-color: var(--primary);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}

.callout-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--foreground-bright);
}

.callout p {
    margin-bottom: 0;
    color: var(--muted-foreground);
}

.callout p:last-child { margin-bottom: 0; }

/* ============================================
   TRUST BADGES ROW
   Horizontal arrangement of logos/icons
   ============================================ */

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    transition: all var(--transition-fast);
}

.trust-badge:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.15);
}

/* ============================================
   PAYMENT STRIP
   Horizontal scrolling row of payment icons
   ============================================ */

.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
}

.payment-strip-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    min-height: 48px;
    padding: 10px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--muted-foreground);
    transition: all var(--transition-fast);
}

.payment-strip-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

@media (min-width: 1024px) {
    .payment-strip-item {
        font-size: 16px;
        padding: 12px 24px;
    }
}

/* ============================================
   VIP TIMELINE
   Vertical timeline with neon purple lines
   ============================================ */

.vip-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.vip-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--secondary), var(--primary));
    box-shadow: 0 0 10px var(--secondary-glow);
}

@media (min-width: 768px) {
    .vip-timeline::before { left: 24px; }
}

.vip-step {
    position: relative;
    padding-left: 56px;
    padding-bottom: 32px;
}

.vip-step:last-child { padding-bottom: 0; }

.vip-step::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--background);
    border: 2px solid var(--secondary);
    box-shadow: 0 0 12px var(--secondary-glow);
}

.vip-step-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: var(--secondary);
    text-shadow: 0 0 8px var(--secondary-glow);
    margin-bottom: 8px;
}

.vip-step-desc {
    font-size: 15px;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ============================================
   MODEL IMAGE OVERLAY
   Transparent model images positioned in sections
   ============================================ */

.model-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.model-overlay img {
    max-height: 500px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .model-overlay img {
        max-height: 600px;
    }
}

/* ============================================
   INLINE IMAGE
   Images within content grids
   ============================================ */

.inline-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.inline-image--rounded {
    border-radius: 12px;
}

/* ============================================
   PROVIDER GRID
   Logos with neon glow halos
   ============================================ */

.provider-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.provider-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 64px;
    padding: 12px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
}

.provider-card:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

/* ============================================
   GAME SCROLL ROW
   Horizontal scrolling row of game cards
   ============================================ */

.game-scroll-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.game-scroll-row .game-card {
    width: 180px;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .game-scroll-row .game-card { width: 200px; }
}

/* ============================================
   PAGE LIST (Sitemap)
   Vertical list with neon accent borders
   ============================================ */

.page-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
}

.page-list-item {
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    padding: 20px 24px;
    background: var(--card);
    transition: all var(--transition-fast);
}

.page-list-item:hover {
    border-left-color: var(--primary);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.12);
    background: var(--card-elevated);
}

.page-list-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 8px;
}

.page-list-desc {
    font-size: 15px;
    color: var(--muted-foreground);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   SUMMARY / TL;DR BOX
   Bordered container for key takeaways
   ============================================ */

.summary-box {
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    padding: 20px 24px;
    background: rgba(34, 197, 94, 0.05);
    margin: 24px 0;
}

.summary-box p {
    margin-bottom: 0;
    color: var(--foreground);
}

/* ============================================
   PULL QUOTE
   Oversized quote text with attribution
   ============================================ */

.pull-quote {
    border-left: 4px solid var(--secondary);
    padding: 24px 32px;
    margin: 32px 0;
    background: rgba(168, 85, 247, 0.05);
    border-radius: 0 12px 12px 0;
}

.pull-quote p {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--foreground-bright);
    margin-bottom: 12px;
}

.pull-quote cite {
    font-family: var(--font-body);
    font-size: 14px;
    font-style: normal;
    color: var(--muted-foreground);
}

/* ============================================
   ANIMATIONS & SCROLL REVEAL
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

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

/* ============================================
   DECORATIVE EFFECTS
   Scanlines and energy beams
   ============================================ */

.scanlines {
    position: relative;
}

.scanlines::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(6, 182, 212, 0.02) 3px,
        rgba(6, 182, 212, 0.02) 4px
    );
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   RESPONSIVE - Mobile-first overrides
   Already handled inline above; this section
   catches any remaining adjustments.
   ============================================ */

@media (max-width: 767px) {
    .hero__title { font-size: 28px; }
    .stat-number { font-size: 32px; }
    .bonus-amount { font-size: 32px; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

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

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

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

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

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
