/* ============================================
   VAVADA CASINO - Pop-art Heist Design System
   Single dark theme. Neon magenta + cyan + gold
   on deep indigo-violet background.
   ============================================ */

:root {
    --background: #150b2e;
    --background-deep: #0d0720;
    --foreground: #f5efe6;
    --card: #1f1340;
    --card-foreground: #f5efe6;
    --popover: #1f1340;
    --popover-foreground: #f5efe6;
    --primary: #ff2d8a;
    --primary-foreground: #000000;
    --secondary: #5ee9f0;
    --secondary-foreground: #0c0a1a;
    --muted: #2a1d4d;
    --muted-foreground: #c8bedb;
    --accent: #f5cf52;
    --accent-foreground: #0c0a1a;
    --destructive: #f43f5e;
    --destructive-foreground: #000000;
    --border: #3a2a5e;
    --input: #2a1d4d;
    --ring: #ff2d8a;

    --magenta-glow: 0 0 24px rgba(255, 45, 138, 0.45);
    --cyan-glow: 0 0 16px rgba(94, 233, 240, 0.35);
    --gold-grad: linear-gradient(180deg, #ffe07a 0%, #f5cf52 45%, #c9941a 100%);
    --pink-gold-grad: linear-gradient(135deg, #ff2d8a 0%, #ff6a3d 50%, #f5cf52 100%);
    --header-h: 64px;

    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 56px;
    --space-3xl: 96px;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

.dark {
    /* same single theme - kept for compat */
}

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

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

body {
    margin: 0;
    font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(circle at 10% 0%, rgba(255, 45, 138, 0.18), transparent 40%),
        radial-gradient(circle at 95% 30%, rgba(94, 233, 240, 0.12), transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(245, 207, 82, 0.10), transparent 50%);
    background-attachment: fixed;
    overflow-x: hidden;
}

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

a { color: var(--secondary); text-decoration: none; transition: color 220ms ease-out; }
a:hover { color: var(--primary); }

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

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

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--primary); color: var(--primary-foreground);
    padding: 12px 20px; z-index: 9999; font-weight: 700;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ============================================
   TYPOGRAPHY
   Bungee display, Space Grotesk body
   ============================================ */
h1, h2, h3, h4, h5 {
    font-family: "Bungee", "Space Grotesk", sans-serif;
    text-transform: uppercase;
    line-height: 0.95;
    margin: 0 0 var(--space-md);
    color: var(--foreground);
    letter-spacing: 0.01em;
}

h1 {
    font-size: clamp(44px, 8vw, 72px);
    text-shadow: 4px 4px 0 var(--primary), 8px 8px 0 rgba(0,0,0,0.25);
}
h2 { font-size: clamp(32px, 5vw, 52px); text-shadow: 3px 3px 0 rgba(255, 45, 138, 0.35); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: clamp(18px, 2.2vw, 22px); }

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

.lead { font-size: clamp(18px, 2vw, 22px); color: var(--foreground); }

.pull-number {
    font-family: "Bungee", sans-serif;
    font-size: clamp(56px, 10vw, 96px);
    background: var(--gold-grad);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    -webkit-text-stroke: 2px #0c0a1a;
    line-height: 1;
    display: inline-block;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}
@media (min-width: 768px) {
    .container { padding: 0 var(--space-lg); }
}

section { padding: var(--space-2xl) 0; overflow: clip; position: relative; }
@media (min-width: 1024px) {
    section { padding: var(--space-3xl) 0; }
}

.section-narrow { max-width: 960px; margin: 0 auto; padding-left: var(--space-md); padding-right: var(--space-md); }

/* ============================================
   HEADER & NAV
   ============================================ */
.site-header {
    position: sticky; top: 0;
    z-index: 1000;
    background: rgba(13, 7, 32, 0.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
@media (max-width: 1023px) {
    .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--background-deep); }
}

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

.site-brand {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--foreground); font-weight: 700;
    text-decoration: none; font-family: "Bungee", sans-serif;
}
.brand-mark {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    background: var(--pink-gold-grad);
    color: #fff;
    border-radius: 10px;
    font-size: 22px;
    box-shadow: var(--magenta-glow);
    border: 2px solid #0c0a1a;
}
.brand-text { font-size: 18px; letter-spacing: 0.04em; }
.brand-accent { color: var(--secondary); margin-left: 4px; }

.primary-nav { display: none; }
@media (min-width: 1024px) {
    .primary-nav {
        display: flex; align-items: center; gap: var(--space-xl);
    }
    .nav-list {
        list-style: none; margin: 0; padding: 0;
        display: flex; gap: var(--space-lg);
    }
    .nav-list a {
        color: var(--foreground);
        font-family: "Bungee", sans-serif;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 0.06em;
        padding: 8px 4px;
        position: relative;
    }
    .nav-list a::after {
        content: ""; position: absolute; bottom: 0; left: 0; right: 0;
        height: 2px; background: var(--primary);
        transform: scaleX(0); transform-origin: left;
        transition: transform 220ms ease-out;
    }
    .nav-list a:hover { color: var(--secondary); }
    .nav-list a:hover::after { transform: scaleX(1); }
    .nav-cta-group { display: flex; gap: var(--space-sm); align-items: center; }
}

.mobile-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 48px; height: 48px;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 10px;
}
.mobile-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--foreground);
    transition: transform 220ms ease-out, opacity 220ms ease-out;
}
.mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) {
    .mobile-toggle { display: none; }
}

/* Mobile nav drawer */
@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        background: var(--background-deep);
        z-index: 999;
        display: none;
        flex-direction: column;
        padding: var(--space-lg);
        overflow-y: auto;
    }
    .primary-nav.is-open { display: flex; }
    .nav-list {
        list-style: none; margin: 0 0 var(--space-lg); padding: 0;
        display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    }
    .nav-list a {
        display: flex; align-items: center;
        min-height: 56px;
        padding: 0 var(--space-md);
        color: var(--foreground);
        font-family: "Bungee", sans-serif;
        text-transform: uppercase;
        font-size: 18px;
        letter-spacing: 0.05em;
        border-bottom: 1px solid var(--border);
    }
    .nav-list a:hover { color: var(--primary); }
    .nav-cta-group { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-md); }
    .nav-cta-group > * { width: 100%; text-align: center; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary, .btn-ghost, .btn-secondary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    font-family: "Bungee", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.06em;
    border-radius: 12px;
    border: 2px solid #0c0a1a;
    cursor: pointer;
    transition: transform 220ms ease-out, box-shadow 220ms ease-out;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--pink-gold-grad);
    color: #ffffff;
    box-shadow: var(--magenta-glow);
    animation: neon-pulse 2s ease-in-out infinite;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(255, 45, 138, 0.7);
    color: #ffffff;
}
.btn-ghost {
    background: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}
.btn-ghost:hover { background: rgba(94, 233, 240, 0.1); color: var(--secondary); }

.btn-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--cyan-glow); }

.btn-xl { min-height: 64px; padding: 18px 40px; font-size: 18px; border-radius: 16px; }

@keyframes neon-pulse {
    0%, 100% { box-shadow: 0 0 24px rgba(255, 45, 138, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 45, 138, 0.85), 0 0 12px rgba(245, 207, 82, 0.6); }
}

/* ============================================
   SPEED STRIPES & POP-ART OVERLAYS
   ============================================ */
.speed-stripe {
    position: absolute;
    top: -10px; right: -10px;
    width: 80px; height: 80px;
    background: repeating-linear-gradient(
        135deg,
        var(--accent) 0 6px,
        transparent 6px 14px,
        var(--primary) 14px 20px,
        transparent 20px 28px
    );
    opacity: 0.35;
    transform: rotate(0deg);
    pointer-events: none;
    border-radius: 0 0 0 80px;
}

.halftone-bg {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1.5px);
    background-size: 14px 14px;
    pointer-events: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-2xl) 0;
    overflow: clip;
}
@media (min-width: 1024px) {
    .hero { padding: var(--space-3xl) 0; }
}
.hero-inner {
    display: grid; gap: var(--space-xl);
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-inner { grid-template-columns: 1.1fr 1fr; }
}
.hero-eyebrow {
    display: inline-block;
    font-family: "Bungee", sans-serif;
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.12em;
    background: rgba(94, 233, 240, 0.1);
    border: 1px solid var(--secondary);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: var(--space-md);
}
.hero-headline { margin-bottom: var(--space-lg); }
.hero-text { font-size: clamp(17px, 2vw, 20px); color: var(--muted-foreground); max-width: 60ch; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-top: var(--space-lg); }
.hero-meta { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-top: var(--space-lg); }
.hero-meta-item {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--muted-foreground);
    font-size: 14px;
}
.hero-meta-item strong { color: var(--accent); font-family: "Bungee", sans-serif; }

.hero-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid #0c0a1a;
    box-shadow: var(--magenta-glow), 0 20px 60px rgba(0,0,0,0.5);
    aspect-ratio: 4/5;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.0) 1px, rgba(0,0,0,0.18) 1.5px);
    background-size: 6px 6px;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.4;
}

/* ============================================
   INFO CARD (component)
   ============================================ */
.card-grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.card-grid-2 { display: grid; gap: var(--space-lg); grid-template-columns: 1fr; }
@media (min-width: 768px) { .card-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.info-card {
    position: relative;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    overflow: hidden;
    min-width: 0;
    transition: transform 220ms ease-out, box-shadow 220ms ease-out, border-color 220ms ease-out;
}
@media (min-width: 768px) { .info-card { padding: 28px; } }

.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--magenta-glow);
}

.info-card-visual {
    position: relative;
    margin: calc(-1 * var(--space-lg)) calc(-1 * var(--space-lg)) var(--space-md);
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--muted) 0%, var(--background-deep) 100%);
    overflow: hidden;
}
@media (min-width: 768px) {
    .info-card-visual { margin: -28px -28px var(--space-md); }
}
.info-card-visual img { width: 100%; height: 100%; object-fit: cover; }
.info-card-icon {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    font-size: 64px;
}
.info-card-badge {
    position: absolute; bottom: 12px; left: 12px;
    background: var(--gold-grad);
    color: #0c0a1a;
    font-family: "Bungee", sans-serif;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    border: 2px solid #0c0a1a;
    text-transform: uppercase;
}
.info-card-title {
    color: var(--primary);
    text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
    font-size: 20px;
    margin-bottom: var(--space-sm);
}
.info-card-text {
    color: var(--foreground);
    font-size: 16px;
}
.info-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--secondary);
    font-weight: 600;
    margin-top: var(--space-sm);
}
.info-card-link:hover { color: var(--accent); }

/* ============================================
   STAT HIGHLIGHT (component)
   ============================================ */
.stat-highlight {
    background: var(--background-deep);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-md);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border);
}
.stat-highlight::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1.5px);
    background-size: 14px 14px;
    pointer-events: none;
}
.stat-heading {
    text-align: center;
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: var(--space-xl);
    position: relative;
}
.stat-grid {
    display: grid; gap: var(--space-lg);
    grid-template-columns: 1fr;
    position: relative;
}
@media (min-width: 640px) { .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.stat-block {
    position: relative;
    text-align: center;
    padding: var(--space-md);
}
.stat-block .speed-stripe {
    width: 60px; height: 60px;
    top: -8px; left: 50%; transform: translateX(-50%) rotate(45deg);
    border-radius: 0;
    opacity: 0.18;
}
.stat-number {
    font-family: "Bungee", sans-serif;
    font-size: clamp(48px, 8vw, 72px);
    background: var(--gold-grad);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    -webkit-text-stroke: 2px #0c0a1a;
    line-height: 1;
}
.stat-label {
    font-family: "Bungee", sans-serif;
    text-transform: uppercase;
    color: var(--secondary);
    font-size: 14px;
    letter-spacing: 0.08em;
    margin-top: var(--space-sm);
}
.stat-source { color: var(--muted-foreground); font-size: 12px; margin-top: 4px; }

/* ============================================
   FAQ ACCORDION (component)
   ============================================ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-heading {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    font-family: "Bungee", sans-serif;
    text-transform: uppercase;
    color: var(--foreground);
    font-size: 16px;
    cursor: pointer;
    list-style: none;
    min-height: 56px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
    width: 24px; height: 24px;
    position: relative;
    flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
    content: ""; position: absolute;
    background: var(--accent);
    border-radius: 2px;
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 3px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; bottom: 0; width: 3px; transform: translateX(-50%); transition: transform 220ms ease-out; }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-answer {
    padding: 0 var(--space-lg) var(--space-md);
    color: var(--muted-foreground);
    line-height: 1.65;
}
.faq-answer p { margin: 0; color: var(--foreground); }

/* ============================================
   CTA BANNER (component)
   ============================================ */
.cta-banner {
    position: relative;
    padding: var(--space-2xl) var(--space-md);
    text-align: center;
    overflow: clip;
    border-radius: var(--radius-lg);
    margin: var(--space-2xl) auto;
    max-width: 1280px;
}
@media (min-width: 1024px) { .cta-banner { padding: var(--space-3xl) var(--space-xl); } }

.cta-banner-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 45, 138, 0.5), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 207, 82, 0.3), transparent 50%),
        linear-gradient(135deg, #2a1d4d 0%, #4a1d5e 100%);
}
.cta-banner-bg::after {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1.5px);
    background-size: 12px 12px;
}
.cta-banner-inner { position: relative; max-width: 800px; margin: 0 auto; }
.cta-banner-title {
    color: var(--foreground);
    font-size: clamp(32px, 5vw, 52px);
    text-shadow: 4px 4px 0 var(--primary);
    margin-bottom: var(--space-md);
}
.cta-banner-subtitle {
    color: var(--foreground);
    font-size: clamp(17px, 2vw, 20px);
    margin: 0 auto var(--space-lg);
    max-width: 60ch;
}
.cta-banner-disclaimer {
    color: var(--muted-foreground);
    font-size: 13px;
    margin: var(--space-md) 0 0;
}

/* ============================================
   TRUST BADGE ROW (component)
   ============================================ */
.trust-badge-row {
    background: var(--muted);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border);
}
.trust-badge-label {
    display: block;
    font-family: "Bungee", sans-serif;
    color: var(--secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
}
.trust-badge-track {
    display: flex; flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}
.trust-badge {
    display: inline-flex; align-items: center; gap: 8px;
    min-height: 48px;
    padding: 10px 16px;
    background: var(--background-deep);
    border: 1px solid var(--secondary);
    border-radius: 10px;
    color: var(--foreground);
    box-shadow: var(--cyan-glow);
    font-weight: 600;
    font-size: 14px;
}
.trust-badge.is-active { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 16px rgba(245, 207, 82, 0.35); }
.trust-badge-icon { font-size: 18px; }

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */
.tldr-box {
    background: var(--card);
    border: 2px solid var(--secondary);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    position: relative;
}
.tldr-box::before {
    content: "TL;DR";
    position: absolute; top: -12px; left: var(--space-md);
    background: var(--secondary);
    color: var(--secondary-foreground);
    font-family: "Bungee", sans-serif;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.08em;
}
.tldr-box ul { margin: 0; padding-left: var(--space-lg); }
.tldr-box li { margin-bottom: 6px; }

.callout {
    background: var(--card);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
}
.callout--warn { border-left-color: var(--destructive); }
.callout--info { border-left-color: var(--secondary); }
.callout--gold { border-left-color: var(--accent); background: linear-gradient(90deg, rgba(245, 207, 82, 0.08), transparent); }

.pull-quote {
    border-left: 4px solid var(--primary);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-xl) 0;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 600;
    color: var(--foreground);
    font-style: italic;
}
.pull-quote cite { display: block; font-size: 14px; color: var(--muted-foreground); margin-top: 8px; font-style: normal; }

.prose { max-width: 75ch; }
.prose p { margin-bottom: 1.25em; }
.prose a { color: var(--secondary); border-bottom: 1px dashed var(--secondary); }
.prose a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Inline links inside paragraphs - ensure underline for distinguishability */
p > a, li > a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
p > a:hover, li > a:hover {
    text-decoration-thickness: 2px;
}
.prose strong { color: var(--accent); }
.prose ul, .prose ol { padding-left: var(--space-lg); margin-bottom: 1.25em; }
.prose li { margin-bottom: 0.5em; }

/* Tables */
.table-wrapper { overflow-x: auto; max-width: 100%; margin: var(--space-lg) 0; border-radius: var(--radius-md); border: 1px solid var(--border); }
table.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    min-width: 480px;
}
.data-table thead {
    background: linear-gradient(90deg, var(--primary), #c41f6e);
}
.data-table th {
    padding: 14px var(--space-md);
    text-align: left;
    color: #fff;
    font-family: "Bungee", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.data-table td {
    padding: 14px var(--space-md);
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.data-table .highlight-col { color: var(--accent); font-weight: 700; }
.data-table .recommended { background: rgba(245, 207, 82, 0.08) !important; }

/* Section eyebrow */
.eyebrow {
    display: inline-block;
    font-family: "Bungee", sans-serif;
    color: var(--secondary);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

/* Section header */
.section-head { text-align: center; margin-bottom: var(--space-xl); }
.section-head p { color: var(--muted-foreground); max-width: 70ch; margin: 0 auto; }

/* Step list */
.step-list { list-style: none; padding: 0; counter-reset: step; }
.step-list li {
    counter-increment: step;
    position: relative;
    padding: var(--space-md) var(--space-md) var(--space-md) 72px;
    margin-bottom: var(--space-md);
    background: var(--card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}
.step-list li::before {
    content: counter(step);
    position: absolute;
    left: var(--space-md); top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    background: var(--gold-grad);
    color: #0c0a1a;
    border: 2px solid #0c0a1a;
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: "Bungee", sans-serif;
    font-size: 20px;
}

/* Pros & Cons */
.pros-cons { display: grid; gap: var(--space-md); grid-template-columns: 1fr; }
@media (min-width: 768px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.pros, .cons { background: var(--card); border-radius: var(--radius-md); padding: var(--space-lg); border: 1px solid var(--border); }
.pros { border-left: 4px solid var(--secondary); }
.cons { border-left: 4px solid var(--destructive); }
.pros h3, .cons h3 { font-size: 18px; margin-bottom: var(--space-sm); }
.pros h3 { color: var(--secondary); }
.cons h3 { color: var(--destructive); }
.pros ul, .cons ul { list-style: none; padding: 0; margin: 0; }
.pros li, .cons li { padding: 6px 0 6px 28px; position: relative; }
.pros li::before { content: "✓"; position: absolute; left: 0; color: var(--secondary); font-weight: 700; }
.cons li::before { content: "✕"; position: absolute; left: 0; color: var(--destructive); font-weight: 700; }

/* Social proof inline */
.social-proof {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px;
    background: rgba(94, 233, 240, 0.08);
    border: 1px solid var(--secondary);
    border-radius: 999px;
    font-size: 13px;
    color: var(--foreground);
}
.social-proof strong { color: var(--accent); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--background-deep);
    border-top: 1px solid var(--border);
    padding: var(--space-2xl) 0 var(--space-md);
    margin-top: var(--space-3xl);
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    gap: var(--space-xl);
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: repeat(4, 1fr); } }

.footer-title {
    font-family: "Bungee", sans-serif;
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 var(--space-md);
    line-height: 1.2;
    text-shadow: none;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--muted-foreground); font-size: 14px; }
.footer-col a:hover { color: var(--secondary); }

.footer-trust {
    max-width: 1280px;
    margin: var(--space-xl) auto 0;
    padding: var(--space-md);
    display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-sm);
    border-top: 1px solid var(--border);
}
.trust-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 12px;
    color: var(--foreground);
}

.footer-bottom {
    max-width: 1280px;
    margin: var(--space-md) auto 0;
    padding: var(--space-md);
    text-align: center;
    color: var(--muted-foreground);
    font-size: 13px;
    border-top: 1px solid var(--border);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .animate-on-scroll { opacity: 1; transform: none; }
    .btn-primary { animation: none; }
}

/* ============================================
   RESPONSIBLE GAMBLING PAGE - muted variant
   ============================================ */
.rg-hero { padding: var(--space-2xl) 0; }
.rg-headline {
    font-size: clamp(36px, 6vw, 56px);
    text-shadow: 2px 2px 0 rgba(94, 233, 240, 0.35);
}
.rg-hero-visual {
    box-shadow: var(--cyan-glow), 0 20px 60px rgba(0,0,0,0.5);
    border-color: var(--border);
}
.rg-h2 {
    font-size: clamp(26px, 4vw, 40px);
    text-shadow: 2px 2px 0 rgba(94, 233, 240, 0.25);
}
.rg-section-muted {
    background: var(--muted);
}
.rg-card {
    border-color: var(--border);
}
.rg-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--cyan-glow);
}
.rg-card .info-card-visual {
    aspect-ratio: 16/8;
    background: linear-gradient(135deg, var(--background-deep) 0%, var(--muted) 100%);
}
.rg-card .info-card-icon {
    font-size: 56px;
}
.rg-card .info-card-title {
    color: var(--secondary);
    text-shadow: none;
    font-size: 18px;
}

.rg-details {
    margin: var(--space-xl) auto 0;
    max-width: 800px;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
}
.rg-details summary {
    font-family: "Bungee", sans-serif;
    text-transform: uppercase;
    font-size: 15px;
    color: var(--foreground);
    cursor: pointer;
    list-style: none;
    padding: 6px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}
.rg-details summary::-webkit-details-marker { display: none; }
.rg-details summary::after {
    content: "+";
    margin-left: auto;
    color: var(--accent);
    font-size: 22px;
    transition: transform 220ms ease-out;
}
.rg-details[open] summary::after { content: "−"; }
.rg-details > div {
    padding-top: var(--space-sm);
    color: var(--muted-foreground);
}
.rg-details > div p { color: var(--foreground); margin-bottom: var(--space-sm); }

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-hero {
    padding: var(--space-2xl) 0 var(--space-md);
    background: var(--background-deep);
    border-bottom: 1px solid var(--border);
}
.sitemap-h1 {
    font-family: "Bungee", sans-serif;
    text-transform: uppercase;
    font-size: clamp(28px, 4.5vw, 40px);
    line-height: 1.05;
    margin: 0 0 var(--space-md);
    text-shadow: 2px 2px 0 rgba(94, 233, 240, 0.25);
    color: var(--foreground);
}
.sitemap-intro {
    color: var(--muted-foreground);
    font-size: 16px;
    max-width: 70ch;
}
.sitemap-pages {
    padding: var(--space-2xl) 0;
}
.sitemap-h2 {
    font-family: "Bungee", sans-serif;
    text-transform: uppercase;
    font-size: clamp(22px, 3vw, 28px);
    color: var(--secondary);
    text-shadow: none;
    margin: 0 0 var(--space-lg);
}
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.sitemap-entry {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--secondary);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: border-color 220ms ease-out, background 220ms ease-out;
}
.sitemap-entry:hover {
    border-left-color: var(--accent);
    background: var(--muted);
}
.sitemap-link {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--foreground);
    margin-bottom: var(--space-sm);
}
.sitemap-link:hover { color: var(--secondary); }
.sitemap-link-title {
    font-family: "Bungee", sans-serif;
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: 0.03em;
    color: var(--foreground);
    border-bottom: 1px dashed transparent;
}
.sitemap-link:hover .sitemap-link-title {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}
.sitemap-link-path {
    font-family: "Space Grotesk", monospace;
    font-size: 13px;
    color: var(--muted-foreground);
}
.sitemap-desc {
    color: var(--foreground);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
.sitemap-note {
    margin-top: var(--space-xl);
    padding: var(--space-md) var(--space-lg);
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.sitemap-note p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
}

/* ============================================
   OVERFLOW SAFETY
   ============================================ */
.grid-min-zero > * { min-width: 0; }
pre, code { max-width: 100%; overflow-x: auto; }
a { word-break: break-word; }