/*
 * RAINBET CASINO - DESIGN SYSTEM
 * Cyber-noir, rain-soaked crypto aesthetic.
 * Fixed dark theme only (no switcher per brief).
 */

:root {
    --background: #070d1f;
    --foreground: #e9f2fb;
    --card: #121b32;
    --card-foreground: #e9f2fb;
    --popover: #0d1526;
    --popover-foreground: #e9f2fb;
    --primary: #2ef2a0;
    --primary-foreground: #051320;
    --secondary: #7d49f5;
    --secondary-foreground: #f5f3ff;
    --muted: #1b2640;
    --muted-foreground: #a9bdd6;
    --accent: #22d3ee;
    --accent-foreground: #041019;
    --destructive: #dd0d30;
    --destructive-foreground: #fff1f2;
    --border: #27344f;
    --input: #0d1526;
    --ring: #22d3ee;

    /* Spacing scale (8px base) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 56px;
    --space-2xl: 64px;

    --container: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
    --header-h: 64px;

    --font-display: "Space Grotesk", sans-serif;
    --font-body: "Sora", sans-serif;

    --grad-neon: linear-gradient(120deg, #22d3ee 0%, #7d49f5 100%);
    --grad-neon-text: linear-gradient(120deg, #4be3ff 0%, #a78bfa 60%, #2ef2a0 100%);

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

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

[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 { max-width: 100%; overflow-x: auto; }

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

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

section { overflow: clip; }

/* ============================================
   BASE / TYPOGRAPHY
   Space Grotesk display headings, Sora body.
   ============================================ */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 var(--space-sm);
    color: var(--foreground);
}

h1 { font-size: 30px; font-weight: 700; }
h2 { font-size: 26px; font-weight: 600; }
h3 { font-size: 20px; font-weight: 500; }

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

a { color: var(--accent); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--primary); }

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

strong { color: #fff; font-weight: 600; }

@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 26px; }
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: var(--space-sm);
    z-index: 2000;
    border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

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

/* ============================================
   LAYOUT HELPERS
   .container - 1200px text column
   .section - vertical rhythm
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--space-md);
}

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

.eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.gradient-text {
    background: var(--grad-neon-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-lead { color: var(--muted-foreground); max-width: 60ch; }

/* ============================================
   BUTTONS
   .btn--primary mint CTA, .btn--ghost outline
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    min-height: 48px;
    padding: 0 var(--space-md);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn--primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 0 0 rgba(46,242,160,0);
}
.btn--primary:hover {
    color: var(--primary-foreground);
    background: #3dffb0;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(46,242,160,.35);
}
.btn--primary::after {
    content: "";
    position: absolute;
    top: 0; left: -60%;
    width: 40%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
    transform: skewX(-20deg);
    transition: left .5s var(--ease);
}
.btn--primary:hover::after { left: 120%; }

.btn--ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn--ghost:hover {
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(34,211,238,.2);
}

.btn--secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
}
.btn--secondary:hover { color: var(--secondary-foreground); box-shadow: 0 8px 26px rgba(139,92,246,.4); transform: translateY(-2px); }

.btn--lg { min-height: 56px; padding: 0 var(--space-lg); font-size: 18px; }

/* ============================================
   HEADER / NAV - glassmorphic sticky
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7,13,31,.82);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.site-header__inner {
    max-width: var(--container);
    margin-inline: auto;
    padding: 0 var(--space-md);
    min-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;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--foreground);
    letter-spacing: -0.02em;
}
.site-brand:hover { color: var(--foreground); }
.site-brand__accent { color: var(--accent); }
.site-brand__drop {
    width: 18px; height: 22px;
    background: var(--grad-neon);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    clip-path: polygon(50% 0, 100% 65%, 78% 100%, 22% 100%, 0 65%);
    box-shadow: 0 0 14px rgba(34,211,238,.5);
}

.primary-nav { display: flex; align-items: center; gap: var(--space-lg); }
.primary-nav__list {
    display: flex;
    gap: var(--space-md);
    list-style: none;
    margin: 0; padding: 0;
}
.primary-nav__list a {
    color: var(--foreground);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 4px;
    display: inline-flex;
    align-items: center;
}
.primary-nav__list a:hover { color: var(--accent); }
.primary-nav__actions { display: flex; gap: var(--space-xs); }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px; height: 48px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1001;
    padding: 0 12px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1023px) {
    .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--background); }
    .nav-toggle { display: flex; }
    .primary-nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        z-index: 999;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        background: var(--background);
        border-top: 1px solid var(--border);
        padding: var(--space-md);
        overflow-y: auto;
    }
    .primary-nav.is-open { display: flex; }
    .primary-nav__list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .primary-nav__list a {
        min-height: 48px;
        width: 100%;
        font-size: 18px;
        border-bottom: 1px solid var(--border);
        padding: 12px 4px;
    }
    .primary-nav__actions {
        margin-top: auto;
        flex-direction: column;
        gap: var(--space-sm);
        padding-top: var(--space-lg);
    }
    .primary-nav__actions .btn { width: 100%; }
}

/* ============================================
   NEON RAIN - decorative animated streaks
   ============================================ */
@keyframes rainfall {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: .8; }
    100% { transform: translateY(100vh); opacity: 0; }
}
.rain-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.rain-layer::before,
.rain-layer::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(to bottom, transparent 0 22px, rgba(34,211,238,.35) 22px 60px, transparent 60px 120px);
    background-size: 3px 220px;
    background-repeat: repeat;
    opacity: .25;
    animation: rainfall 3.2s linear infinite;
    background-position: 12% 0, 40% 0, 78% 0;
}
.rain-layer::after {
    background-image:
        repeating-linear-gradient(to bottom, transparent 0 30px, rgba(139,92,246,.4) 30px 70px, transparent 70px 130px);
    background-size: 2px 260px;
    animation-duration: 4.4s;
    animation-delay: -1.5s;
    opacity: .2;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding-block: var(--space-xl);
    background:
        radial-gradient(70% 90% at 80% 10%, rgba(139,92,246,.22), transparent 60%),
        radial-gradient(60% 80% at 10% 90%, rgba(34,211,238,.18), transparent 60%),
        var(--background);
}
@media (min-width: 1024px) { .hero { padding-block: var(--space-2xl); } }

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}
@media (min-width: 1024px) {
    .hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-2xl); }
}

.hero__content { max-width: 640px; }
.hero h1 { margin-bottom: var(--space-md); }
.hero__lead { font-size: 18px; color: var(--muted-foreground); margin-bottom: var(--space-lg); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-md); }
.hero__actions .btn { flex: 1 1 auto; min-width: 200px; }
.hero__trust { font-size: 14px; color: var(--muted-foreground); }

.hero__media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 70px rgba(0,0,0,.5);
}
.hero__media img { display: block; width: 100%; height: auto; }
.hero__media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(7,13,31,.7));
    pointer-events: none;
}

/* ============================================
   CARDS - .card base, .info-card grid item
   ============================================ */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
}
@media (min-width: 1024px) { .card { padding: var(--space-lg); } }

.info-card-grid {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-sm);
}
@media (min-width: 640px) {
    .info-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 1024px) {
    .info-card-grid--cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .info-card-grid--cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .info-card-grid--cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
}

.info-card {
    position: relative;
    min-width: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    overflow: hidden;
    transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
@media (min-width: 1024px) { .info-card { padding: var(--space-lg); } }

.info-card__rain {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(to bottom, transparent 0 20px, rgba(34,211,238,.18) 20px 44px, transparent 44px 90px);
    background-size: 2px 180px;
    opacity: 0;
    transition: opacity .3s var(--ease);
    pointer-events: none;
}
.info-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 0 26px rgba(34,211,238,.28);
}
.info-card:hover .info-card__rain { opacity: 1; animation: rainfall 2.6s linear infinite; }

.info-card__image {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}
.info-card__icon {
    display: inline-flex;
    font-size: 34px;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}
.info-card__title { position: relative; z-index: 1; margin-bottom: var(--space-xs); }
.info-card__desc { position: relative; z-index: 1; color: var(--muted-foreground); font-size: 15px; margin-bottom: var(--space-sm); }
.info-card__tag {
    display: inline-block;
    background: rgba(46,242,160,.14);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    position: relative;
    z-index: 1;
}
.info-card__link {
    display: inline-block;
    margin-top: var(--space-xs);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

/* ============================================
   HOW-TO STEPS - numbered rain-trail sequence
   ============================================ */
.how-to-steps {
    list-style: none;
    margin: 0; padding: 0;
    position: relative;
    max-width: 780px;
}
.how-to-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-md);
    padding-bottom: var(--space-lg);
    position: relative;
}
.how-to-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 21px; top: 52px; bottom: 0;
    width: 2px;
    background: linear-gradient(var(--accent), transparent);
    opacity: .5;
}
.how-to-step__num {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    background: var(--grad-neon-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    min-width: 44px;
}
@media (min-width: 1024px) { .how-to-step__num { font-size: 44px; } }
.how-to-step__title { margin-bottom: 6px; }
.how-to-step__text { color: var(--muted-foreground); margin-bottom: 0; font-size: 16px; }

/* ============================================
   STAT HIGHLIGHT - quotable metrics row
   ============================================ */
.stat-highlight {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: var(--space-md);
}
@media (min-width: 768px) {
    .stat-highlight { grid-template-columns: repeat(4, minmax(0,1fr)); }
}
.stat-highlight__item {
    text-align: center;
    padding: var(--space-md);
    border-left: 2px solid rgba(139,92,246,.4);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.stat-highlight__item:first-child { border-left: none; }
@media (max-width: 767px) {
    .stat-highlight { gap: var(--space-sm); }
    .stat-highlight__item { padding: var(--space-sm) var(--space-xs); }
    .stat-highlight__item:nth-child(odd) { border-left: none; }
    .stat-highlight__label { font-size: 12px; letter-spacing: .06em; overflow-wrap: anywhere; }
}
.stat-highlight__number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    background: var(--grad-neon-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
@media (min-width: 1024px) { .stat-highlight__number { font-size: 44px; } }
.stat-highlight__label {
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    font-family: var(--font-display);
    font-weight: 600;
}
.stat-highlight__note { font-size: 13px; color: var(--muted-foreground); }

/* ============================================
   BONUS BLOCK - shimmering gradient banner
   ============================================ */
.bonus-block {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    overflow: hidden;
}
.bonus-block::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(34,211,238,.12) 48%, rgba(139,92,246,.12) 55%, transparent 70%);
    background-size: 250% 100%;
    animation: shimmer 4.5s linear infinite;
    pointer-events: none;
}
@keyframes shimmer {
    0% { background-position: 130% 0; }
    100% { background-position: -130% 0; }
}
.bonus-block > * { position: relative; z-index: 1; }
.bonus-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr);
    gap: var(--space-md);
}
@media (min-width: 768px) { .bonus-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.bonus-tier {
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
}
.bonus-tier__label { font-size: 13px; letter-spacing:.12em; text-transform: uppercase; color: var(--accent); font-family: var(--font-display); font-weight: 600; }
.bonus-tier__amount { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: #fff; margin: 6px 0; }
.bonus-tier__desc { font-size: 15px; color: var(--muted-foreground); margin: 0; }

/* ============================================
   LIVE WINS FEED - static win rows (no fake counters)
   ============================================ */
.live-wins {
    display: grid;
    gap: var(--space-xs);
    max-width: 720px;
    margin-inline: auto;
}
.live-win {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px var(--space-md);
}
.live-win__game { font-family: var(--font-display); font-weight: 600; }
.live-win__meta { color: var(--muted-foreground); font-size: 14px; }
.live-win__amount { font-family: var(--font-display); font-weight: 700; color: var(--primary); }

/* ============================================
   CALLOUT / TL;DR / PULL QUOTE
   ============================================ */
.callout {
    background: rgba(34,211,238,.08);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    margin-block: var(--space-md);
}
.callout p:last-child { margin-bottom: 0; }

.tldr {
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}
.tldr__title {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.pull-quote {
    border-left: 3px solid var(--secondary);
    padding-left: var(--space-md);
    margin: var(--space-lg) 0;
    font-family: var(--font-display);
    font-size: 22px;
    color: #fff;
    font-style: normal;
}
.pull-quote cite { display: block; font-size: 14px; color: var(--muted-foreground); font-style: normal; margin-top: var(--space-xs); }

/* ============================================
   FAQ - native details/summary accordion
   ============================================ */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
    overflow: hidden;
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: var(--space-md);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    min-height: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 24px;
    color: var(--accent);
    transition: transform .25s var(--ease);
    line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding: 0 var(--space-md) var(--space-md); }
.faq-item__body p:last-child { margin-bottom: 0; }
.faq-item__body p { color: var(--muted-foreground); }

/* ============================================
   CTA BANNER - full-bleed conversion band
   ============================================ */
.cta-banner {
    position: relative;
    padding-block: var(--space-xl);
    background:
        radial-gradient(60% 100% at 50% 0%, rgba(139,92,246,.25), transparent 65%),
        #050a17;
    text-align: center;
    overflow: clip;
}
@media (min-width: 1024px) { .cta-banner { padding-block: var(--space-2xl); } }
.cta-banner__rain {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(to bottom, transparent 0 24px, rgba(34,211,238,.3) 24px 60px, transparent 60px 120px);
    background-size: 3px 200px;
    opacity: .2;
    animation: rainfall 3.6s linear infinite;
    pointer-events: none;
}
.cta-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-inline: auto;
    padding-inline: var(--space-md);
}
.cta-banner__title {
    background: var(--grad-neon-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: var(--space-sm);
}
.cta-banner__text { color: var(--muted-foreground); margin-inline: auto; margin-bottom: var(--space-lg); }
.cta-banner__microcopy { margin-top: var(--space-md); font-size: 14px; color: var(--muted-foreground); }

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

.footer-brand__text { color: var(--muted-foreground); font-size: 15px; margin: var(--space-sm) 0; }
.footer-license { color: var(--muted-foreground); font-size: 13px; margin-bottom: var(--space-sm); }
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
}
.footer-col__title {
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--foreground);
    margin-bottom: var(--space-md);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: var(--space-xs); }
.footer-links a { color: var(--muted-foreground); font-size: 15px; min-height: 44px; display: inline-flex; align-items: center; }
.footer-links a:hover { color: var(--accent); }
.coin-badges { list-style: none; padding: 0; margin: 0 0 var(--space-sm); display: flex; flex-wrap: wrap; gap: var(--space-xs); }
.coin-badge {
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    color: var(--accent);
}
.footer-note { color: var(--muted-foreground); font-size: 14px; margin: 0; }
.site-footer__bar {
    border-top: 1px solid var(--border);
    text-align: center;
    padding: var(--space-md);
    color: var(--muted-foreground);
    font-size: 14px;
}
.site-footer__bar p { margin: 0; max-width: none; }

/* ============================================
   VIP TEASER - split layout with model image
   ============================================ */
.vip-teaser__grid {
    display: grid;
    grid-template-columns: minmax(0,1fr);
    gap: var(--space-lg);
    align-items: center;
    margin-bottom: var(--space-lg);
}
@media (min-width: 1024px) {
    .vip-teaser__grid { grid-template-columns: 1.2fr 0.8fr; gap: var(--space-2xl); }
}
.vip-teaser__content p:last-of-type { margin-bottom: var(--space-lg); }
.vip-teaser__media {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 70px rgba(0,0,0,.5);
    position: relative;
}
.vip-teaser__media img { display: block; width: 100%; height: auto; }
.vip-teaser__media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(7,13,31,.6));
    pointer-events: none;
}

/* ============================================
   SITEMAP LIST
   ============================================ */
.sitemap-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-md); }
.sitemap-list li {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
}
.sitemap-list h3 { margin-bottom: 6px; }
.sitemap-list p { color: var(--muted-foreground); margin-bottom: 0; }

/* ============================================
   DATA TABLE - limits & processing times
   ============================================ */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 480px;
}
.data-table th,
.data-table td {
    text-align: left;
    padding: 14px var(--space-sm);
    border-bottom: 1px solid var(--border);
}
.data-table thead th {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(34,211,238,.05); }
.data-table td:first-child { font-family: var(--font-display); font-weight: 600; color: #fff; }
.data-table td:nth-child(2) { font-family: var(--font-display); font-weight: 700; color: var(--primary); }
.data-table td { color: var(--muted-foreground); }

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.animate-on-scroll.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .animate-on-scroll { opacity: 1; transform: none; }
}

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