/*
 * CASOOLA CASINO - DESIGN SYSTEM
 * Dark-only cyberpunk hacker-loft aesthetic
 * Fonts: Chakra Petch (display) + Space Grotesk (body)
 * Palette: electric blue, lime cyan, muted purple on near-black charcoal
 */

/* ============================================
   DESIGN TOKENS - Dark theme only
   No theme toggle; dark is the sole mode
   ============================================ */
:root {
    /* Backgrounds */
    --bg: #0a0e1a;
    --bg-elevated: #111827;
    --bg-card: rgba(17, 24, 39, 0.72);
    --bg-panel: #0d1424;
    --bg-input: #1a2335;

    /* Foreground */
    --fg: #f1f5f9;
    --fg-muted: #94a3b8;
    --fg-dim: #708098;

    /* Brand colors */
    --primary: #2563eb;
    --primary-hover: #3b82f6;
    --primary-glow: rgba(37, 99, 235, 0.45);
    --secondary: #7c3aed;
    --secondary-glow: rgba(124, 58, 237, 0.3);
    --accent: #5eead4;
    --accent-hover: #99f6e4;
    --accent-glow: rgba(94, 234, 212, 0.4);

    /* Borders */
    --border: #1e293b;
    --border-neon: rgba(37, 99, 235, 0.5);
    --border-accent: rgba(94, 234, 212, 0.35);

    /* Status */
    --danger: #ef4444;
    --success: #22c55e;
    --warning: #f59e0b;

    /* Typography */
    --font-display: "Chakra Petch", "Segoe UI", sans-serif;
    --font-body: "Space Grotesk", "Segoe UI", sans-serif;
    --font-mono: "Courier New", monospace;

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

    /* Container */
    --container-max: 1200px;
    --header-height: 64px;

    /* Radius */
    --radius: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: 300ms ease-out;
    --transition-fast: 150ms ease-out;
}

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

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

body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* Flex/grid children: allow shrinking */
.grid > *, .flex > *, [class*="grid"] > *, [class*="flex"] > * {
    min-width: 0;
}

/* Code blocks */
pre, code, .code-block {
    max-width: 100%;
    overflow-x: auto;
}

/* Tables */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
}

/* Long words */
p, li, td, th {
    overflow-wrap: break-word;
}

a {
    word-break: break-word;
}

/* Form elements */
input, textarea, select {
    max-width: 100%;
}

/* Sections clip decorative elements */
section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 var(--space-md);
    color: var(--fg);
}

h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
}

h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
}

h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
}

h4 {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 500;
}

p {
    margin: 0 0 var(--space-md);
    max-width: 75ch;
}

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

a:hover {
    color: var(--accent);
}

strong, b {
    font-weight: 600;
    color: var(--fg);
}

ul, ol {
    padding-left: 1.5em;
    margin: 0 0 var(--space-md);
}

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

blockquote {
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    border-left: 3px solid var(--accent);
    background: var(--bg-elevated);
    border-radius: 0 var(--radius) var(--radius) 0;
}

blockquote p {
    margin: 0;
    font-size: 18px;
    font-style: italic;
    color: var(--fg);
}

blockquote cite {
    display: block;
    margin-top: var(--space-sm);
    font-size: 14px;
    color: var(--fg-muted);
    font-style: normal;
}

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: 56px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 96px 0;
    }
}

.section-tight {
    padding: 40px 0;
}

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

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

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: #fff;
    padding: var(--space-sm) var(--space-md);
    border-radius: 0 0 var(--radius) 0;
    z-index: 2000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
    color: #fff;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.96);
    border-bottom: 1px solid var(--border);
}

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

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0;
}

.site-brand .logo {
    border-radius: var(--radius);
    filter: drop-shadow(0 0 6px var(--primary-glow));
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--fg);
    letter-spacing: -0.02em;
}

/* Desktop nav */
.primary-nav {
    display: none;
}

.header-cta {
    display: none;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 10px;
    flex-shrink: 0;
    transition: border-color var(--transition);
}

.mobile-menu-toggle:hover {
    border-color: var(--primary);
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Hamburger → X animation */
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
    :root {
        --header-height: 72px;
    }

    .primary-nav {
        display: block;
        position: static;
        background: none;
        flex: 1;
        display: flex;
        justify-content: center;
    }

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

    .nav-link {
        font-family: var(--font-display);
        font-weight: 500;
        font-size: 16px;
        color: var(--fg-muted);
        text-decoration: none;
        padding: 8px 0;
        position: relative;
        transition: color var(--transition);
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--accent);
        transform: scaleX(0);
        transition: transform var(--transition);
    }

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

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

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

    .header-cta {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        flex-shrink: 0;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

/* ============================================
   MOBILE MENU DRAWER
   ============================================ */
.primary-nav.is-open {
    display: flex;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100dvh - var(--header-height));
    background: var(--bg);
    z-index: 999;
    overflow-y: auto;
    flex-direction: column;
    padding: var(--space-md);
    animation: drawer-slide 300ms ease-out;
}

@keyframes drawer-slide {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.primary-nav.is-open .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}

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

.primary-nav.is-open .nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: var(--space-sm) 0;
    color: var(--fg);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
}

.primary-nav.is-open .nav-cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    padding: 12px 28px;
    min-height: 44px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 rgba(37, 99, 235, 0);
}

.btn-primary:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 24px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    color: var(--fg);
    border: 1px solid var(--border-neon);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(94, 234, 212, 0.05);
}

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

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 12px var(--primary-glow); }
    50% { box-shadow: 0 0 32px var(--primary-glow), 0 0 8px var(--accent-glow); }
}

.btn-glow:hover {
    animation: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding: 80px 0 56px;
    overflow: clip;
}

@media (min-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }
}

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

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

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

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

.hero-content {
    z-index: 2;
}

.hero-content h1 {
    margin-bottom: var(--space-md);
}

.hero-content .hero-subtitle {
    font-size: 18px;
    color: var(--fg-muted);
    margin-bottom: var(--space-lg);
    max-width: 50ch;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

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

.hero-model {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 40px var(--primary-glow);
}

.hero-cta-group {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero-mascot {
    position: absolute;
    bottom: -20px;
    right: -10px;
    width: 140px;
    height: auto;
    z-index: 3;
    animation: float-bob 3s ease-in-out infinite;
    filter: drop-shadow(0 0 16px var(--accent-glow));
}

@media (min-width: 768px) {
    .hero-mascot {
        width: 180px;
        bottom: -30px;
        right: -20px;
    }
}

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

/* ============================================
   CODE RAIN - Falling code background effect
   ============================================ */
.code-rain,
.cta-code-rain {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.code-rain::before,
.cta-code-rain::before {
    content: '';
    position: absolute;
    inset: -50% 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 38px,
            rgba(94, 234, 212, 0.06) 38px,
            rgba(94, 234, 212, 0.06) 40px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 18px,
            rgba(59, 130, 246, 0.08) 18px,
            rgba(59, 130, 246, 0.08) 20px
        );
    animation: code-scroll 6s linear infinite;
}

.code-rain::after,
.cta-code-rain::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(37, 99, 235, 0.12), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(124, 58, 237, 0.1), transparent 50%);
}

@keyframes code-scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(40px); }
}

/* ============================================
   SCAN LINE OVERLAY
   ============================================ */
.scan-lines {
    position: relative;
}

.scan-lines::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0,
        transparent 2px,
        rgba(255, 255, 255, 0.015) 2px,
        rgba(255, 255, 255, 0.015) 3px
    );
    pointer-events: none;
    border-radius: inherit;
}

/* ============================================
   INFO CARD GRID
   ============================================ */
.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

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

.info-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-neon);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    min-width: 0;
}

.info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 20px rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2), 0 0 16px var(--accent-glow);
}

.info-card-image {
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.info-card-image img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.info-card-body {
    padding: 20px;
}

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

.info-card-body h3 {
    margin-bottom: var(--space-xs);
    color: var(--fg);
}

.info-card-meta {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--accent);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-card-body p {
    color: var(--fg-muted);
    margin-bottom: 0;
}

.card-link {
    display: inline-block;
    margin-top: var(--space-sm);
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}

.card-link:hover {
    border-bottom-color: var(--accent);
}

/* ============================================
   STAT BLOCK
   ============================================ */
.stat-block {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative;
}

@media (min-width: 768px) {
    .stat-block {
        gap: 32px;
        justify-content: space-around;
        padding: var(--space-xl);
    }
}

.stat-item {
    flex: 1 1 120px;
    min-width: 120px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(32px, 5vw, 42px);
    color: var(--accent);
    text-shadow: 0 0 16px var(--accent-glow);
    line-height: 1.1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fg-muted);
}

.stat-source {
    display: block;
    font-size: 12px;
    color: var(--fg-dim);
    margin-top: 4px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.faq-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-neon);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
    position: relative;
}

.faq-panel[open] {
    border-color: var(--accent);
    border-left: 3px solid var(--accent);
}

.faq-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0,
        transparent 2px,
        rgba(255, 255, 255, 0.015) 2px,
        rgba(255, 255, 255, 0.015) 3px
    );
    pointer-events: none;
    border-radius: inherit;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: 20px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    min-height: 44px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question-text {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 17px;
    color: var(--fg);
    flex: 1;
}

.faq-toggle-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--accent);
    border-radius: 2px;
    transition: transform var(--transition);
}

.faq-toggle-icon::before {
    width: 14px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-toggle-icon::after {
    width: 2px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.faq-panel[open] .faq-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 300ms ease-out;
}

.faq-panel[open] .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

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

.faq-panel[open] .faq-answer {
    padding: 0 20px 20px;
}

.faq-answer p {
    margin: 0;
    color: var(--fg);
    line-height: 1.7;
}

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

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background: #060912;
    padding: 56px 0;
    overflow: clip;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 96px 0;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.cta-content h2 {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--fg);
    margin-bottom: var(--space-sm);
}

.cta-content p {
    color: var(--fg-muted);
    font-size: 17px;
    margin-bottom: var(--space-lg);
}

.cta-content .btn {
    font-size: 18px;
    padding: 14px 36px;
}

.cta-microcopy {
    font-size: 13px;
    color: var(--fg-dim);
    margin-top: var(--space-md);
    margin-bottom: 0;
}

/* ============================================
   TABLES
   ============================================ */
.table-wrapper {
    margin: var(--space-lg) 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

thead {
    background: var(--bg-elevated);
}

th {
    text-align: left;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--accent);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

td {
    padding: var(--space-sm) var(--space-md);
    color: var(--fg-muted);
    border-bottom: 1px solid var(--border);
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background: rgba(37, 99, 235, 0.05);
}

/* Highlight recommended column */
.col-highlight {
    background: rgba(94, 234, 212, 0.05);
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
}

.col-highlight th,
.col-highlight td {
    color: var(--fg);
}

/* ============================================
   CALLOUT / HIGHLIGHT BOX
   ============================================ */
.callout {
    background: var(--bg-elevated);
    border: 1px solid var(--border-neon);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    position: relative;
}

.callout-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

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

/* ============================================
   PULL QUOTE
   ============================================ */
.pull-quote {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    line-height: 1.4;
    color: var(--fg);
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    margin: var(--space-lg) 0;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pull-quote::before {
    content: '"';
    font-size: 64px;
    color: var(--accent);
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

/* ============================================
   TRUST & SECURITY SECTION
   ============================================ */
.trust-section {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
    .trust-section {
        padding: var(--space-xl);
    }
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.license-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
}

.license-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-neon);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    min-height: 48px;
}

.license-badge img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
}

.license-badge-text {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--fg);
}

.security-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--fg-muted);
    padding-left: 0;
}

.security-features li::before {
    content: '\2713';
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================
   PAYMENT METHODS STRIP
   ============================================ */
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    align-items: center;
    margin: var(--space-md) 0;
}

.payment-logo {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-logo:hover {
    border-color: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}

.payment-logo img {
    max-height: 40px;
    width: auto;
}

/* ============================================
   VIP BADGES
   ============================================ */
.vip-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: stretch;
    margin: var(--space-lg) 0;
}

.vip-badge {
    flex: 1 1 140px;
    min-width: 140px;
    background: var(--bg-card);
    border: 1px solid var(--border-neon);
    border-radius: var(--radius);
    padding: var(--space-md);
    text-align: center;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.vip-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px var(--primary-glow);
}

.vip-badge img {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-xs);
    display: block;
}

.vip-level {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent-glow);
    margin-bottom: 4px;
}

.vip-name {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--fg);
    margin-bottom: 4px;
}

.vip-cashback {
    font-size: 13px;
    color: var(--fg-muted);
}

/* ============================================
   DISCLAIMER
   ============================================ */
.disclaimer {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    font-size: 14px;
    color: var(--fg-muted);
    text-align: center;
}

.disclaimer strong {
    color: var(--warning);
}

/* ============================================
   INLINE SEO ANCHOR LINKS
   ============================================ */
.content-anchor {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(94, 234, 212, 0.3);
    transition: border-color var(--transition);
}

.content-anchor:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #060912;
    border-top: 1px solid var(--border);
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-top: var(--space-2xl);
}

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

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

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

.footer-heading {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: var(--space-md);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.pay-badge {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fg-muted);
    font-family: var(--font-display);
}

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

.footer-link {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.footer-link:hover {
    color: var(--accent-hover);
}

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

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

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
    transition-delay: calc(var(--stagger, 0) * 120ms);
}

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

/* ============================================
   HERO HEADLINE GLOW
   ============================================ */
.hero-headline-glow {
    text-shadow: 0 0 24px var(--accent-glow), 0 0 8px var(--primary-glow);
}

/* ============================================
   SECTION HEADING WITH ACCENT
   ============================================ */
.section-heading {
    margin-bottom: var(--space-md);
}

.section-intro {
    font-size: 18px;
    color: var(--fg-muted);
    margin-bottom: var(--space-lg);
    max-width: 70ch;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

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

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

    .info-card-grid {
        gap: var(--space-sm);
    }

    .hero {
        padding: 60px 0 40px;
    }
}

@media (max-width: 360px) {
    .container,
    .header-inner,
    .footer-inner,
    .hero-inner {
        padding-left: var(--space-xs);
        padding-right: var(--space-xs);
    }

    .brand-name {
        font-size: 18px;
    }
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-section {
    padding-top: 56px;
}

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

.sitemap-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.sitemap-header-text {
    flex: 1;
    min-width: 0;
}

.sitemap-mascot {
    width: 120px;
    height: auto;
    flex-shrink: 0;
    animation: float-bob 3s ease-in-out infinite;
    filter: drop-shadow(0 0 12px var(--accent-glow));
}

@media (max-width: 767px) {
    .sitemap-mascot {
        display: none;
    }
}

.sitemap-list {
    list-style: none;
    padding: var(--space-lg);
    margin: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

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

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

.sitemap-item:first-child {
    padding-top: 0;
}

.sitemap-link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 20px;
    color: var(--primary-hover);
    text-decoration: none;
    display: inline-block;
    margin-bottom: var(--space-xs);
    transition: color var(--transition-fast);
}

.sitemap-link:hover {
    color: var(--accent);
}

.sitemap-current {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 20px;
    color: var(--fg-muted);
    display: inline-block;
    margin-bottom: var(--space-xs);
}

.sitemap-item p {
    color: var(--fg-muted);
    margin: 0;
    max-width: 80ch;
}

/* 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;
}
