/* ============================================
   DESIGN TOKENS - Cyberpunk Joker Theme
   Dark-only palette per brief: no light theme
   ============================================ */

:root {
    --background: #0B0F19;
    --foreground: #FAFAF9;
    --card: #18181B;
    --card-foreground: #FAFAF9;
    --popover: #1E1E24;
    --popover-foreground: #FAFAF9;
    --primary: #FF2A6D;
    --primary-foreground: #000000;
    --secondary: #2D2D33;
    --secondary-foreground: #FAFAF9;
    --muted: #2A2A30;
    --muted-foreground: #C4C4CC;
    --accent: #00FF41;
    --accent-foreground: #002A14;
    --accent-yellow: #FFD60A;
    --accent-yellow-foreground: #1A1A00;
    --destructive: #EF4444;
    --destructive-foreground: #000000;
    --border: #3F3F46;
    --input: #27272A;
    --ring: #FF2A6D;

    --font-heading: "Orbitron", "Segoe UI", sans-serif;
    --font-body: "Rajdhani", "Segoe UI", sans-serif;

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

    --shadow-card: 0 4px 24px rgba(0,0,0,0.6);
    --shadow-glow-green: 0 0 20px rgba(0,255,65,0.3);
    --shadow-glow-pink: 0 0 20px rgba(243,31,96,0.35);

    --neon-green: #00FF41;
    --neon-pink: #FF2A6D;
    --neon-yellow: #FFD60A;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;

    --max-width: 1280px;
}

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

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--background);
    color: var(--foreground);
    overflow-x: hidden;
}

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

a {
    color: var(--neon-green);
    text-decoration: none;
    transition: color 250ms ease-out;
}

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

/* Inline content links: underline for distinguishability */
p a,
.vip-tier-desc a,
.section-subtitle a,
.faq-answer-inner a,
.testimonial-text a {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

p a:hover,
.vip-tier-desc a:hover,
.section-subtitle a:hover,
.faq-answer-inner a:hover,
.testimonial-text a:hover {
    text-decoration-thickness: 2px;
}

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

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--foreground);
}

h1 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 22px;
    font-weight: 500;
}

p {
    line-height: 1.6;
}

@media (min-width: 1024px) {
    h1 {
        font-size: 56px;
    }
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 28px;
    }
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
}

.container-narrow {
    max-width: 896px;
}

@media (min-width: 768px) {
    .container {
        padding-left: var(--space-lg);
        padding-right: var(--space-lg);
    }
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0B0F19;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    transition: box-shadow 250ms ease-out;
}

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

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(0, 255, 65, 0.3));
}

.footer-brand .logo-icon {
    filter: drop-shadow(0 0 3px rgba(0, 255, 65, 0.2));
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--foreground);
    white-space: nowrap;
}

.brand-text .accent {
    color: var(--neon-green);
    margin-left: 2px;
}

/* Desktop Nav */
.primary-nav {
    display: none;
    align-items: center;
    gap: var(--space-lg);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 4px;
    position: relative;
    transition: color 250ms ease-out;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--neon-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 250ms ease-out;
}

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

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.btn-login {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 250ms ease-out;
}

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

.btn-register {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-foreground);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    background: var(--neon-pink);
    border-radius: var(--radius-md);
    transition: all 250ms ease-out;
    box-shadow: var(--shadow-glow-pink);
}

.btn-register:hover {
    color: var(--neon-yellow);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    z-index: 1001;
    transition: border-color 250ms ease-out;
}

.mobile-toggle:hover {
    border-color: var(--neon-pink);
}

.burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all 250ms ease-out;
}

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

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

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

/* Mobile Nav Drawer */
@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: var(--space-lg) var(--space-lg);
        overflow-y: auto;
        display: none;
        border-top: 1px solid var(--border);
    }

    .primary-nav.is-open {
        display: flex;
        height: calc(100vh - 64px);
        min-height: calc(100vh - 64px);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-list li {
        border-bottom: 1px solid var(--border);
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 12px 0;
        font-size: 18px;
        width: 100%;
    }

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

    .nav-actions {
        flex-direction: column;
        gap: var(--space-sm);
        margin-top: var(--space-lg);
        width: 100%;
    }

    .btn-login, .btn-register {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
    .primary-nav {
        display: flex;
    }
}

/* ============================================
   MAIN CONTENT
   ============================================ */

main {
    padding-top: 64px;
    min-height: 60vh;
}

/* Scroll offset for anchored sections behind fixed header */
section[id],
.section {
    scroll-margin-top: 80px;
}

/* ============================================
   SECTION SPACING
   ============================================ */

.section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .section {
        padding-top: 56px;
        padding-bottom: 56px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: clip;
    background: linear-gradient(135deg, #0B0F19 0%, #14141F 50%, #1A0A12 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(0,255,65,0.03) 2px, rgba(0,255,65,0.03) 4px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: var(--space-2xl) 0;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: var(--space-md);
    text-shadow: 0 0 30px rgba(0,255,65,0.2);
}

.hero h1 .glitch {
    color: var(--neon-pink);
    text-shadow: 2px 0 var(--neon-pink), -2px 0 var(--neon-green);
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    .hero {
        min-height: 640px;
    }
    .hero h1 {
        font-size: 56px;
    }
}

/* Reduce excessive mobile section spacing to avoid large gaps */
@media (max-width: 767px) {
    .section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .stat-row {
        gap: var(--space-lg);
    }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
    max-width: 540px;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
    display: none;
}

@media (min-width: 768px) {
    .hero-visual {
        display: block;
    }
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

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

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-foreground);
    background: var(--neon-pink);
    padding: 14px 32px;
    min-height: 48px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow-pink);
    transition: all 250ms ease-out;
    position: relative;
    overflow: hidden;
}

.cta-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 250ms ease-out;
}

.cta-btn-primary:hover {
    color: var(--neon-yellow);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(243,31,96,0.5);
}

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

.cta-btn-large {
    font-size: 18px;
    padding: 16px 40px;
    min-height: 56px;
}

/* ============================================
   CTA BANNER COMPONENT
   ============================================ */

.cta-banner-section {
    position: relative;
    background: linear-gradient(180deg, #14141F 0%, #1A0A12 100%);
    padding: 48px var(--space-sm);
    overflow: clip;
    text-align: center;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(0,255,65,0.02) 3px, rgba(0,255,65,0.02) 5px);
    pointer-events: none;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-banner-heading {
    font-size: 28px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: var(--space-sm);
}

.cta-banner-subtext {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
}

.cta-micro-copy {
    font-size: 13px;
    color: #C4C4CC;
    margin-top: var(--space-sm);
}

@media (min-width: 1024px) {
    .cta-banner-section {
        padding: 56px var(--space-lg);
    }
    .cta-banner-heading {
        font-size: 40px;
    }
}

/* ============================================
   GAME CARD COMPONENT
   ============================================ */

.game-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

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

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

.game-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: all 250ms ease-out;
    min-width: 0;
}

.game-card:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-card), 0 0 16px rgba(0,255,65,0.2);
    border-color: var(--neon-green);
}

.game-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
    background: #0A0A0F;
}

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

.game-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 4px;
}

.game-card-provider {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-sm);
}

.game-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 8px 16px;
    min-height: 36px;
    border-radius: var(--radius-sm);
    transition: all 250ms ease-out;
    width: 100%;
}

.game-card-btn:hover {
    background: var(--neon-green);
    color: var(--accent-foreground);
    box-shadow: var(--shadow-glow-green);
}

/* ============================================
   STAT BLOCK COMPONENT
   ============================================ */

.stat-block {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(0,255,65,0.4);
    line-height: 1;
}

.stat-value {
    display: inline;
}

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

.stat-citation {
    font-size: 13px;
    color: var(--muted-foreground);
}

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

.stat-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

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

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

/* ============================================
   FAQ ACCORDION COMPONENT
   ============================================ */

.faq-accordion {
    display: flex;
    flex-direction: column;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    margin-bottom: var(--space-xs);
    transition: border-color 250ms ease-out;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-item.is-open {
    border-left-color: var(--neon-green);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-md);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--foreground);
    text-align: left;
    transition: color 250ms ease-out;
}

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

.faq-question-text {
    flex: 1;
    padding-right: var(--space-sm);
}

.faq-icon {
    font-size: 24px;
    color: var(--neon-pink);
    transition: transform 250ms ease-out;
    flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    color: var(--neon-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 250ms ease-out;
}

.faq-answer-inner {
    padding: 0 var(--space-md) var(--space-md);
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* ============================================
   CONTENT PATTERNS
   ============================================ */

.section-heading {
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
    max-width: 720px;
}

/* Summary / TL;DR Box */
.tldr-box {
    background: var(--card);
    border: 1px solid var(--neon-green);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    box-shadow: 0 0 16px rgba(0,255,65,0.1);
}

.tldr-box h3 {
    font-size: 18px;
    color: var(--neon-green);
    margin-bottom: var(--space-sm);
}

/* Callout Box */
.callout {
    background: rgba(243,31,96,0.08);
    border-left: 3px solid var(--neon-pink);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    margin: var(--space-md) 0;
}

.callout-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--neon-pink);
    margin-bottom: var(--space-xs);
}

/* Pull Quote */
.pull-quote {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--foreground);
    border-left: 3px solid var(--neon-yellow);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    font-style: italic;
}

.pull-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-style: normal;
    color: var(--muted-foreground);
    margin-top: var(--space-sm);
}

/* Table Styles */
.table-wrapper {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    margin: var(--space-md) 0;
}

.table-wrapper:focus,
.table-wrapper:focus-visible {
    outline: 2px solid var(--neon-green);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}

th, td {
    padding: var(--space-sm);
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neon-green);
    background: var(--card);
}

td {
    font-size: 15px;
    color: #B8B8C0;
}

tr:hover td {
    color: var(--foreground);
}

.table-highlight {
    background: rgba(0,255,65,0.05);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
    justify-content: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
    opacity: 0.8;
    transition: all 250ms ease-out;
}

.trust-badge:hover {
    opacity: 1;
    border-color: var(--neon-green);
    color: var(--neon-green);
}

/* Testimonial Cards */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    min-width: 0;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--neon-green);
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

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

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    min-width: 0;
    transition: all 250ms ease-out;
}

.feature-card:hover {
    border-color: var(--neon-green);
    box-shadow: var(--shadow-glow-green);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--muted-foreground);
}

/* Bonus Card */
.bonus-card {
    background: linear-gradient(135deg, var(--card) 0%, #1A0A12 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    min-width: 0;
}

.bonus-card-featured {
    border-color: var(--neon-pink);
    box-shadow: var(--shadow-glow-pink);
}

.bonus-amount {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--neon-pink);
    text-shadow: 0 0 30px rgba(243,31,96,0.3);
    margin-bottom: var(--space-xs);
}

.bonus-label {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
}

/* Stepper */
.stepper {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .stepper {
        flex-direction: row;
        justify-content: space-between;
    }
}

.step {
    flex: 1;
    min-width: 0;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--neon-green);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-glow-green);
}

.step h3 {
    font-size: 18px;
    margin-bottom: var(--space-xs);
}

.step p {
    color: #B8B8C0;
    font-size: 15px;
}

/* VIP Progress */
.vip-tier-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.vip-tier {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--neon-green);
    min-width: 0;
}

.vip-tier-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--neon-green);
    flex-shrink: 0;
}

.vip-tier-desc {
    color: var(--muted-foreground);
    font-size: 14px;
}

/* Details/Summary */
details {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    margin-bottom: var(--space-xs);
}

summary {
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--foreground);
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

details[open] summary {
    color: var(--neon-green);
    margin-bottom: var(--space-sm);
}

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

.site-footer {
    background: #06080F;
    border-top: 1px solid var(--border);
    padding: var(--space-2xl) var(--space-sm) var(--space-lg);
    margin-top: var(--space-2xl);
}

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

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

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-sm);
}

.footer-desc {
    font-size: 14px;
    color: var(--muted-foreground);
    max-width: 320px;
    line-height: 1.5;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--foreground);
    margin-bottom: var(--space-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    font-size: 14px;
    color: #C4C4CC;
    transition: color 250ms ease-out;
}

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

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    color: var(--muted-foreground);
}

.license-box {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.license-badge, .age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border);
}

.license-badge {
    color: var(--neon-yellow);
    border-color: var(--neon-yellow);
}

.age-badge {
    color: var(--neon-pink);
    border-color: var(--neon-pink);
}

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

.footer-bottom p {
    font-size: 13px;
    color: #C4C4CC;
    margin-bottom: 4px;
}

.footer-warning {
    font-size: 12px !important;
    color: var(--neon-pink) !important;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
}

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

/* Matrix Rain Background Effect */
.matrix-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.matrix-line {
    position: absolute;
    top: -100%;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--neon-green), transparent);
    opacity: 0.1;
    animation: matrix-fall 4s linear infinite;
}

@keyframes matrix-fall {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Glitch Effect */
.glitch-text {
    position: relative;
    display: inline-block;
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

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

/* Stub page (bet.html) minimal structure */
body > main {
    min-height: 1px;
}

/* ============================================
   SITEMAP PAGE
   ============================================ */

.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.sitemap-entry {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border);
}

.sitemap-entry:last-child {
    border-bottom: none;
}

.sitemap-entry h2 {
    font-size: 22px;
    margin-bottom: var(--space-sm);
}

.sitemap-entry h2 a {
    color: var(--foreground);
    text-decoration: none;
    transition: color 250ms ease-out;
}

.sitemap-entry h2 a:hover {
    color: var(--neon-green);
}

.sitemap-entry p {
    color: var(--muted-foreground);
    font-size: 15px;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .sitemap-entry h2 {
        font-size: 24px;
    }
    .sitemap-entry p {
        font-size: 16px;
    }
}

/* Two-column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

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

/* Provider logos grid */
.provider-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
    justify-content: center;
}

.provider-logo {
    padding: 12px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: all 250ms ease-out;
}

.provider-logo:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
}