/* ============================================
   SpinGranny Casino - Spy-Thriller Design System
   Dark-only palette. Mobile-first. GSAP-ready.
   ============================================ */

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

/* Light-theme override - declassified dossier palette */
html.theme-light {
    --background: #f5efe4;
    --foreground: #1a1418;
    --card: #ffffff;
    --card-foreground: #1a1418;
    --card-lifted: #fff8ec;
    --popover: #ffffff;
    --popover-foreground: #1a1418;
    --primary: #ff6a00;
    --primary-foreground: #1a1418;
    --primary-glow: rgba(255, 106, 0, 0.35);
    --secondary: #efe6d4;
    --secondary-foreground: #1a1418;
    --muted: #ece3d0;
    --muted-foreground: #5a4f4a;
    --accent: #d65400;
    --accent-foreground: #ffffff;
    --border: #d9ccb3;
    --input: #f0e6d1;
    --ring: #ff6a00;
}
html.theme-light body { background: var(--background); color: var(--foreground); }
html.theme-light .site-header { background: rgba(245, 239, 228, 0.94); }
html.theme-light .menu-toggle span { background: var(--foreground); }
html.theme-light .dark-bunker { background: radial-gradient(ellipse at top, #fff8ec 0%, var(--background) 60%); }
html.theme-light .site-footer { background: #1a1418; color: #f5efe4; }
html.theme-light .site-footer .footer-tag,
html.theme-light .site-footer .footer-license,
html.theme-light .site-footer .footer-bottom p,
html.theme-light .site-footer .pay-logos li,
html.theme-light .site-footer .footer-links a { color: #f5efe4; }
html.theme-light .laser-grid {
    background-image:
        linear-gradient(rgba(255, 106, 0, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 106, 0, 0.14) 1px, transparent 1px);
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background 220ms ease-out, color 220ms ease-out;
}

body { overflow-x: hidden; }

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

[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }

pre, code, .code-block, [class*="code"] { max-width: 100%; overflow-x: auto; }
pre code, .code-block code { display: block; min-width: 0; }

.table-wrapper, [class*="table-"] { max-width: 100%; overflow-x: auto; }

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

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

section { overflow: clip; position: relative; }

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

ul, ol { padding-left: 1.25em; }

/* Inline links in text blocks - underline for accessibility distinguishability */
.callout p a,
.callout .feature-list a,
.feature-list a,
.footer-bottom a,
.seo-content p a,
.faq-a a {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}
.footer-bottom a {
    color: #ffb383;
}

/* Skip link */
.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 9999;
    background: var(--primary); color: #1a1418;
    padding: 12px 18px; font-family: var(--font-head); font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ============================================
   TYPOGRAPHY - Orbitron headings, Rajdhani body
   h1: 40/64 · h2: 28/44 · h3: 22/30 · body: 17/18
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.15;
    margin: 0 0 var(--space-md);
    color: var(--foreground);
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.875rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; letter-spacing: 0.06em; }

p { margin: 0 0 var(--space-md); line-height: 1.65; }
strong { color: var(--accent); font-weight: 700; }

.mono { font-family: var(--font-mono); letter-spacing: 0.02em; }
.hud-stamp {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px; font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.2em;
    padding: 6px 12px;
    border: 1px solid var(--primary);
    background: rgba(255, 106, 0, 0.08);
    text-transform: uppercase;
    margin: 0 0 var(--space-md);
}

.badge-hud {
    display: inline-flex; align-items: center;
    font-family: var(--font-mono); font-weight: 700; font-size: 12px;
    color: var(--primary);
    padding: 6px 12px; border: 1px solid var(--primary);
    border-radius: var(--radius-pill);
    letter-spacing: 0.15em;
    background: rgba(255, 106, 0, 0.08);
}

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

section, .section {
    padding: var(--space-2xl) 0;
}
@media (min-width: 1024px) {
    section, .section { padding: var(--space-3xl) 0; }
}

.section-intro { max-width: 760px; margin: 0 auto var(--space-xl); text-align: center; }
.section-intro p { color: var(--muted-foreground); font-size: 1.05rem; }

.grid {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 640px) { .grid { gap: var(--space-md); } }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================
   SPY-THRILLER DECOR - laser grid, reticles
   Applied via .laser-grid div and .reticle-* spans
   ============================================ */
.laser-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 106, 0, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 106, 0, 0.09) 1px, transparent 1px);
    background-size: 48px 48px;
    background-position: center;
    mask-image: radial-gradient(ellipse at center, #000 35%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 85%);
    pointer-events: none;
    z-index: 0;
}
.laser-faint { opacity: 0.55; }

.reticle {
    position: absolute;
    width: 28px; height: 28px;
    border: 2px solid var(--primary);
    pointer-events: none;
    z-index: 1;
}
.reticle-tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.reticle-tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
.reticle-bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
.reticle-br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }

@media (min-width: 768px) {
    .reticle { width: 40px; height: 40px; }
    .reticle-tl, .reticle-tr { top: 28px; }
    .reticle-bl, .reticle-br { bottom: 28px; }
    .reticle-tl, .reticle-bl { left: 28px; }
    .reticle-tr, .reticle-br { right: 28px; }
}

/* Bunker wrap - default dark-violet backdrop for pages */
.dark-bunker {
    background: radial-gradient(ellipse at top, #1a0f28 0%, var(--background) 60%);
}

/* ============================================
   BUTTONS - pill, pulse glow, 56px mission CTA
   Dark foreground on orange for WCAG AA contrast
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: var(--space-xs);
    min-height: 48px;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 220ms ease-out, box-shadow 220ms ease-out, background 220ms ease-out;
    text-decoration: none;
    white-space: nowrap;
}
.btn-lg { min-height: 56px; padding: 16px 32px; font-size: 16px; }

.btn-primary {
    background: var(--primary);
    color: #1a1418;
    box-shadow: 0 8px 24px -8px var(--primary-glow);
}
.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -8px var(--primary-glow);
    color: #ffffff;
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

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

@keyframes missionPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow), 0 8px 24px -8px var(--primary-glow); }
    50% { box-shadow: 0 0 0 14px rgba(255, 106, 0, 0), 0 8px 24px -8px var(--primary-glow); }
}
.btn-pulse { animation: missionPulse 1.6s ease-in-out infinite; }

/* ============================================
   HEADER - fixed, transparent-to-bunker, under-glow
   ============================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(12, 7, 16, 0.92);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
}
@media (min-width: 768px) {
    .site-header { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
}

.header-glow {
    position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.7;
}

.header-inner {
    max-width: var(--container);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--space-sm);
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-sm);
}
@media (min-width: 768px) { .header-inner { padding: 0 var(--space-lg); } }

body { padding-top: var(--header-h); }

.brand {
    display: flex; align-items: center; gap: 10px;
    color: var(--foreground);
    font-family: var(--font-head);
    text-decoration: none;
}
.brand .logo { border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-size: 18px; font-weight: 800; letter-spacing: 0.05em; }
.brand-sub { font-family: var(--font-mono); font-size: 9px; color: var(--primary); letter-spacing: 0.2em; margin-top: 3px; }
@media (max-width: 479.98px) { .brand-sub { display: none; } }

/* Desktop nav */
.main-nav { display: none; }
@media (min-width: 1024px) {
    .main-nav { display: flex; align-items: center; gap: var(--space-lg); }
    .nav-list {
        display: flex; list-style: none; margin: 0; padding: 0; gap: var(--space-lg);
    }
    .nav-list a {
        color: var(--foreground);
        font-family: var(--font-head); font-weight: 600;
        font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
        padding: 8px 0;
        border-bottom: 2px solid transparent;
        transition: color 220ms, border-color 220ms;
    }
    .nav-list a:hover { color: var(--primary); border-bottom-color: var(--primary); }
    .nav-cta { display: flex; gap: 10px; }
    .nav-cta .btn { min-height: 40px; padding: 8px 18px; font-size: 13px; }
}

/* Mobile menu toggle (hamburger) */
.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: 8px;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}
.menu-toggle span {
    display: block; width: 22px; height: 2px; background: var(--foreground);
    margin: 0 auto;
    transition: transform 220ms ease-out, opacity 220ms ease-out;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

/* Theme toggle button - tag/nacht switch in header */
.theme-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    color: var(--primary);
    cursor: pointer;
    transition: border-color 220ms ease-out, color 220ms ease-out, background 220ms ease-out;
    flex-shrink: 0;
    order: 2;
}
.theme-toggle:hover { border-color: var(--primary); background: rgba(255, 106, 0, 0.08); }
.theme-toggle .theme-icon { font-size: 20px; line-height: 1; font-family: var(--font-mono); }
html.theme-dark .theme-toggle .theme-icon-sun { display: none; }
html.theme-light .theme-toggle .theme-icon-moon { display: none; }
@media (min-width: 1024px) {
    .theme-toggle { order: 0; margin-left: 0; width: 40px; height: 40px; }
    .theme-toggle .theme-icon { font-size: 18px; }
}

/* Mobile drawer */
@media (max-width: 1023.98px) {
    .main-nav {
        position: fixed;
        top: var(--header-h); left: 0; right: 0; bottom: 0;
        background: var(--background);
        z-index: 999;
        padding: var(--space-lg) var(--space-md) var(--space-2xl);
        overflow-y: auto;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 220ms ease-out, transform 220ms ease-out;
        display: flex; flex-direction: column; gap: var(--space-lg);
    }
    .main-nav.is-open {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .nav-list {
        list-style: none; margin: 0; padding: 0;
        display: flex; flex-direction: column; gap: 4px;
    }
    .nav-list a {
        display: flex; align-items: center;
        min-height: 56px;
        padding: 12px 16px;
        color: var(--foreground);
        font-family: var(--font-head); font-weight: 700;
        font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase;
        border-bottom: 1px solid var(--border);
    }
    .nav-list a:hover, .nav-list a:active { color: var(--primary); }
    .nav-cta {
        display: flex; flex-direction: column; gap: 12px;
        margin-top: var(--space-md);
    }
    .nav-cta .btn { width: 100%; min-height: 56px; }
}

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

.footer-col .footer-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px; letter-spacing: 0.15em; color: var(--primary);
    margin: 0 0 var(--space-md);
    text-transform: uppercase;
    line-height: 1.15;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--foreground); font-size: 15px; }
.footer-links a:hover { color: var(--primary); }

.footer-brand { margin-bottom: var(--space-sm); }
.footer-tag { font-size: 14px; color: var(--muted-foreground); margin-bottom: var(--space-md); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }

.pay-logos {
    list-style: none; padding: 0; margin: 0 0 var(--space-md);
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px;
}
.pay-logos li {
    font-family: var(--font-mono); font-size: 11px; font-weight: 700;
    color: var(--muted-foreground);
    padding: 8px 6px; text-align: center;
    border: 1px solid var(--border); border-radius: 6px;
    background: var(--card);
    letter-spacing: 0.08em;
}
.footer-license { font-size: 12px; color: var(--muted-foreground); }
.footer-license .mono { color: var(--primary); }

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

/* ============================================
   COMPONENT: CTA BANNER
   Full-width orange-grid mission activation band
   ============================================ */
.cta-banner {
    position: relative;
    padding: var(--space-2xl) var(--space-sm);
    background: linear-gradient(180deg, #120820 0%, #0c0710 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    overflow: clip;
}
@media (min-width: 1024px) { .cta-banner { padding: var(--space-3xl) var(--space-lg); } }

.cta-banner-inner {
    position: relative; z-index: 2;
    max-width: 780px; margin: 0 auto;
}
.cta-title { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: var(--space-md); }
.cta-sub { font-size: 1.05rem; color: var(--muted-foreground); margin-bottom: var(--space-lg); }
.cta-micro {
    font-size: 11px; color: var(--primary);
    margin-top: var(--space-md); letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   COMPONENT: GAME CARD
   Slots, live tables, bonuses, promos
   ============================================ */
.game-card {
    position: relative;
    background: var(--card-lifted);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 220ms ease-out, border-color 220ms ease-out, box-shadow 220ms ease-out;
    min-width: 0;
}
.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 14px 30px -12px var(--primary-glow);
}

.gc-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #1a0f28, #2a1a3d);
    overflow: hidden;
}
.gc-media img { width: 100%; height: 100%; object-fit: cover; }
.gc-placeholder {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 106, 0, 0.25), transparent 60%),
        linear-gradient(135deg, #1a0f28, #2a1a3d);
}

.hud-tag {
    position: absolute; top: 12px; left: 12px;
    font-family: var(--font-mono); font-size: 10px; font-weight: 700;
    color: #1a1418;
    background: var(--primary);
    padding: 4px 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
}

.gc-body { padding: var(--space-md); display: flex; flex-direction: column; gap: 8px; flex: 1; }
.gc-title {
    font-size: 1.05rem; margin: 0 0 4px;
    font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.05em;
}
.gc-desc { font-size: 14px; color: var(--muted-foreground); margin: 0; flex: 1; }
.gc-meta { font-size: 11px; color: var(--primary); letter-spacing: 0.1em; text-transform: uppercase; margin: 0; }
.gc-cta {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: var(--space-xs);
    color: var(--primary);
    font-family: var(--font-head); font-weight: 700;
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
}
.gc-cta:hover { color: var(--accent); }

/* ============================================
   COMPONENT: FAQ ACCORDION
   details/summary with rotating + icon
   ============================================ */
.faq-accordion {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-item[open] { border-left: 3px solid var(--primary); background: rgba(255, 106, 0, 0.03); }

.faq-q {
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
    min-height: 48px;
    padding: 20px;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-head); font-weight: 700;
    font-size: 15px; letter-spacing: 0.04em;
    color: var(--foreground);
    text-transform: uppercase;
}
@media (min-width: 768px) { .faq-q { padding: 24px 32px; font-size: 16px; } }
.faq-q::-webkit-details-marker { display: none; }

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

.faq-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    position: relative;
    transition: transform 220ms ease-out, background 220ms ease-out;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute; top: 50%; left: 50%;
    width: 12px; height: 2px;
    background: var(--primary);
    transform: translate(-50%, -50%);
    transition: transform 220ms ease-out;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon { background: var(--primary); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: #1a1418; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-a {
    padding: 0 20px 20px;
    font-size: 17px; line-height: 1.65;
    color: var(--foreground);
}
@media (min-width: 768px) { .faq-a { padding: 0 32px 28px; font-size: 18px; } }
.faq-a p:last-child { margin-bottom: 0; }

/* ============================================
   COMPONENT: STAT BLOCK
   Counter cells with orange glow
   ============================================ */
.stat-block {
    position: relative;
    background: linear-gradient(180deg, #120820, #0c0710);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-xl) var(--space-md);
    overflow: hidden;
}
.stat-row {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
    max-width: var(--container); margin: 0 auto;
}
@media (min-width: 640px) { .stat-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .stat-row { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.stat-cell {
    text-align: center;
    padding: var(--space-md) var(--space-sm);
    border-top: 1px solid var(--border);
}
@media (min-width: 1024px) {
    .stat-cell { border-top: 0; border-left: 1px solid var(--border); }
    .stat-cell:first-child { border-left: 0; }
}
@media (max-width: 1023.98px) {
    .stat-cell:first-child { border-top: 0; }
}

.stat-num {
    font-family: var(--font-head); font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 24px var(--primary-glow);
    margin-bottom: var(--space-xs);
}
.stat-label {
    font-family: var(--font-head); font-weight: 600;
    font-size: 13px; letter-spacing: 0.15em;
    color: var(--foreground); text-transform: uppercase;
}
.stat-note {
    font-size: 11px; color: var(--muted-foreground);
    margin-top: 6px; letter-spacing: 0.05em;
}

/* ============================================
   COMPONENT: INFO TABLE
   Structured comparison with BEST PICK stamp
   ============================================ */
.info-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    -webkit-overflow-scrolling: touch;
}
.info-table-wrap:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}
.info-caption {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    font-family: var(--font-mono); font-size: 12px;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
}
.info-table thead th {
    background: var(--primary);
    color: #120820;
    padding: 14px 16px;
    font-family: var(--font-head); font-weight: 800;
    font-size: 12px; letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: left;
    position: relative;
}
.info-table thead th.col-best {
    background: #120820;
    color: #ffb383;
    box-shadow: inset 0 3px 0 var(--primary);
}
.best-stamp {
    display: block;
    font-family: var(--font-mono); font-size: 10px; font-weight: 700;
    margin-top: 4px;
    letter-spacing: 0.15em;
    color: var(--primary);
}
.info-table thead th.col-best .best-stamp { color: var(--primary); }
.info-table tbody tr:nth-child(odd) { background: #120820; }
.info-table tbody tr:nth-child(even) { background: var(--card-lifted); }
.info-table tbody tr:hover { background: rgba(255, 106, 0, 0.06); }
.info-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--foreground);
}
.info-table td.col-best { color: var(--primary); font-family: var(--font-mono); font-weight: 700; }

/* ============================================
   ENGAGEMENT & CRO PATTERNS
   ============================================ */

/* TL;DR / Summary box */
.tldr-box, .callout {
    background: var(--card);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
}
.tldr-box .tldr-title,
.callout .callout-title {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px; color: var(--primary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.15;
}
.tldr-box p:last-child, .callout p:last-child { margin-bottom: 0; }

.callout-warn { border-left-color: var(--destructive); }
.callout-warn .callout-title { color: var(--destructive); }

/* Pull quote */
.pullquote {
    border-left: 3px solid var(--primary);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-xl) 0;
    font-family: var(--font-head);
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 600;
    color: var(--foreground);
    letter-spacing: 0.02em;
    line-height: 1.4;
    background: var(--card);
    border-radius: var(--radius-sm);
}
.pullquote cite {
    display: block;
    font-family: var(--font-mono); font-size: 12px;
    color: var(--primary);
    margin-top: var(--space-sm);
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Stat highlight inline */
.stat-highlight {
    display: inline-block;
    font-family: var(--font-head); font-weight: 900;
    font-size: 2rem;
    color: var(--primary);
    text-shadow: 0 0 16px var(--primary-glow);
}

/* Trust badges row */
.trust-badges {
    display: flex; flex-wrap: wrap; gap: var(--space-sm);
    justify-content: center; align-items: center;
    padding: var(--space-lg) 0;
}
.trust-badges .badge-hud { font-size: 13px; padding: 10px 16px; }

/* Provider / logo strip */
.logo-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
}
@media (min-width: 640px) { .logo-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .logo-strip { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

.logo-strip .logo-item {
    padding: var(--space-md) var(--space-sm);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-head); font-weight: 700; font-size: 14px;
    color: var(--muted-foreground);
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 220ms, border-color 220ms;
}
.logo-strip .logo-item:hover { color: var(--primary); border-color: var(--primary); }

/* Promo code chip */
.promo-code {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono); font-weight: 700;
    font-size: 15px; letter-spacing: 0.15em;
    color: var(--primary);
    background: rgba(255, 106, 0, 0.1);
    border: 1px dashed var(--primary);
    padding: 10px 16px;
    border-radius: 6px;
}

/* Feature list with orange bullet targeting */
.feature-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: var(--space-sm);
}
.feature-list li {
    position: relative;
    padding-left: 32px;
    font-size: 16px;
    line-height: 1.5;
}
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 16px; height: 16px;
    border: 2px solid var(--primary);
    border-radius: 50%;
}
.feature-list li::after {
    content: '';
    position: absolute;
    left: 6px; top: 13px;
    width: 4px; height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

/* Numbered mission steps */
.mission-steps {
    list-style: none; padding: 0; margin: 0;
    counter-reset: step;
    display: grid; gap: var(--space-md);
}
.mission-steps li {
    counter-increment: step;
    position: relative;
    padding: var(--space-md) var(--space-md) var(--space-md) 72px;
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-md);
}
.mission-steps li::before {
    content: counter(step, decimal-leading-zero);
    position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
    font-family: var(--font-head); font-weight: 900; font-size: 1.75rem;
    color: var(--primary);
    text-shadow: 0 0 12px var(--primary-glow);
}

/* SEO deep-dive text block readability */
.seo-content {
    max-width: 860px; margin: 0 auto;
}
.seo-content h2 { margin-top: var(--space-xl); }
.seo-content h3 { margin-top: var(--space-lg); color: var(--primary); }
.seo-content p, .seo-content li { font-size: 17px; line-height: 1.7; }
.seo-content ul, .seo-content ol { margin: 0 0 var(--space-md); padding-left: 1.4em; }
.seo-content ul li, .seo-content ol li { margin-bottom: 8px; }
.seo-content a {
    border-bottom: 1px dashed var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Hero base */
.hero {
    position: relative;
    padding: var(--space-2xl) 0 var(--space-xl);
    overflow: clip;
}
@media (min-width: 1024px) { .hero { padding: var(--space-3xl) 0 var(--space-2xl); } }

.hero-grid {
    position: relative; z-index: 2;
    display: grid; gap: var(--space-xl);
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.2fr 1fr; gap: var(--space-2xl); } }

.hero h1 { margin-bottom: var(--space-md); }
.hero-lead { font-size: 1.15rem; color: var(--muted-foreground); margin-bottom: var(--space-lg); max-width: 560px; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { margin-top: var(--space-lg); display: flex; flex-wrap: wrap; gap: 10px; }

.hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: linear-gradient(135deg, #1a0f28, #2a1a3d);
    border: 1px solid var(--border);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* Decryption effect - static spacing, JS flickers chars */
.decrypt { display: inline-block; }

/* Scroll-reveal */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for grids */
.grid > .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.grid > .animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.grid > .animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.grid > .animate-on-scroll:nth-child(4) { transition-delay: 240ms; }
.grid > .animate-on-scroll:nth-child(5) { transition-delay: 320ms; }
.grid > .animate-on-scroll:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .btn-pulse { animation: none; }
}

/* Utility */
.text-center { text-align: center; }
.muted { color: var(--muted-foreground); }
.accent { color: var(--primary); }
.sep { height: 1px; background: var(--border); margin: var(--space-xl) 0; border: 0; }

/* Responsible-gaming page - calmer guardian visual */
.rg-hero { padding-top: var(--space-xl); }
.rg-hero .hero-visual { aspect-ratio: 3 / 4; background: linear-gradient(160deg, #120820 0%, #0c0710 100%); }
.rg-guardian::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(255, 106, 0, 0.18), transparent 60%);
    pointer-events: none;
}
.dark-bunker.minimal { background: linear-gradient(180deg, #120820 0%, var(--background) 40%); }

/* Join page minimal chrome */
.join-stub {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: var(--space-xl) var(--space-sm);
    background: radial-gradient(ellipse at center, #1a0f28 0%, #0c0710 70%);
    text-align: center;
    overflow: clip;
}
.join-inner {
    position: relative; z-index: 2;
    max-width: 520px;
    display: flex; flex-direction: column; align-items: center; gap: var(--space-md);
}
.join-brand { margin-bottom: var(--space-sm); }
.join-figure {
    position: relative;
    width: 240px; height: 240px;
    margin: var(--space-sm) auto;
    display: flex; align-items: center; justify-content: center;
}
.join-granny {
    width: 180px; height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 0 40px var(--primary-glow);
    position: relative; z-index: 2;
}
.join-loader {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-right-color: var(--primary);
    animation: joinSpin 1.4s linear infinite;
}
.join-loader::before {
    content: '';
    position: absolute; inset: 12px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 106, 0, 0.4);
    animation: joinSpin 6s linear infinite reverse;
}
@keyframes joinSpin {
    to { transform: rotate(360deg); }
}
.join-title {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    margin: 0;
}
.join-lead {
    font-size: 1.05rem;
    color: var(--muted-foreground);
    margin: 0;
}
.join-lead .mono {
    display: inline-block;
    font-size: 12px;
    color: var(--primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 6px;
}
.join-badges {
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
    margin-top: var(--space-xs);
}
.join-micro {
    font-size: 11px;
    color: var(--muted-foreground);
    letter-spacing: 0.05em;
    margin-top: var(--space-sm);
    max-width: 400px;
}
.join-micro a { color: var(--primary); text-decoration: underline; }
@media (prefers-reduced-motion: reduce) {
    .join-loader, .join-loader::before { animation: none; }
}