/*
 * 30bet Casino - Design System
 * Neon cashback-casino aesthetic. Single fixed dark theme.
 * Fonts: Sora (display), Manrope (body)
 */

:root {
    --background: #0a0f1f;
    --foreground: #f1f5fb;
    --card: #141b2f;
    --card-foreground: #f1f5fb;
    --popover: #141b2f;
    --popover-foreground: #f1f5fb;
    --primary: #2f97ff;
    --primary-foreground: #04101f;
    --secondary: #ff8a3c;
    --secondary-foreground: #1a0d02;
    --muted: #a7b3c7;
    --muted-foreground: #b3c0d6;
    --accent: #f5c542;
    --accent-foreground: #1c1602;
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;
    --border: #2b3651;
    --input: #1a2338;
    --ring: #2f97ff;

    /* Surfaces */
    --card-raised: #1a2338;

    /* Neon gradient */
    --neon-grad: linear-gradient(120deg, #2f97ff 0%, #ff8a3c 55%, #f5c542 100%);
    --cashband-grad: linear-gradient(120deg, #123a6b 0%, #1c2c52 40%, #6b3410 100%);

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

    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 22px;

    --content-max: 1200px;
    --header-h: 68px;

    --shadow-neon: 0 0 0 1px rgba(47,151,255,0.18), 0 18px 40px -20px rgba(47,151,255,0.45);
    --shadow-neon-hover: 0 0 0 1px rgba(245,197,66,0.35), 0 26px 60px -18px rgba(47,151,255,0.6);
}

/* ============================================
   OVERFLOW PREVENTION
   ============================================ */
*, *::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, [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; }

/* ============================================
   BASE / TYPOGRAPHY
   Sora for display, Manrope for body
   ============================================ */
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
    font-family: "Sora", system-ui, sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 var(--space-sm);
    color: var(--foreground);
}

h1 { font-size: clamp(2.125rem, 5vw + 1rem, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.625rem, 3vw + 0.6rem, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 1.4vw + 0.6rem, 1.75rem); font-weight: 500; }

p { margin: 0 0 26px; }
p:last-child { margin-bottom: 0; }

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

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

strong { color: var(--foreground); }

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

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

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

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ============================================
   LAYOUT HELPERS
   .content-wrap - 1200px capped text blocks
   .section - vertical rhythm
   ============================================ */
.content-wrap {
    width: 100%;
    max-width: var(--content-max);
    margin-inline: auto;
    padding-inline: var(--space-sm);
}

.section { padding-block: var(--space-2xl); }
.prose { max-width: 72ch; }
.prose p, .prose li { color: var(--muted-foreground); }

.eyebrow {
    display: inline-block;
    font-family: "Sora", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

@media (min-width: 1024px) {
    .content-wrap { padding-inline: var(--space-lg); }
    .section { padding-block: var(--space-3xl); }
}

/* ============================================
   BUTTONS
   .btn--primary electric blue, .btn--secondary orange CTA, .btn--ghost outline
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: var(--space-xs);
    min-height: 48px; padding: 12px 26px;
    font-family: "Sora", sans-serif; font-weight: 600; font-size: 1rem;
    border-radius: var(--radius-sm); border: 1px solid transparent;
    cursor: pointer; text-align: center;
    transition: transform .2s ease-out, box-shadow .2s ease-out, filter .2s ease-out;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn--primary {
    background: var(--primary); color: var(--primary-foreground);
    box-shadow: 0 0 22px -6px rgba(47,151,255,0.7);
}
.btn--primary:hover { box-shadow: 0 0 30px -4px rgba(47,151,255,0.95); filter: brightness(1.06); }

.btn--secondary {
    background: var(--secondary); color: var(--secondary-foreground);
    box-shadow: 0 0 24px -6px rgba(255,138,60,0.75);
}
.btn--secondary:hover { box-shadow: 0 0 36px -4px rgba(255,138,60,1); filter: brightness(1.05); }

.btn--ghost {
    background: transparent; color: var(--foreground);
    border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--primary); box-shadow: 0 0 18px -8px rgba(47,151,255,0.8); }

.btn--lg { min-height: 56px; padding: 16px 40px; font-size: 1.125rem; }

/* ============================================
   HEADER / NAV
   Sticky dark header, neon-glow logo, mobile drawer
   ============================================ */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(10,15,31,0.92);
    border-bottom: 1px solid var(--border);
}
.site-header__inner {
    max-width: var(--content-max); margin-inline: auto;
    padding: 10px var(--space-sm);
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-md);
    min-height: var(--header-h);
}

.site-brand {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.25rem;
    color: var(--foreground); text-decoration: none; flex-shrink: 0;
}
.site-brand:hover { text-decoration: none; }
.site-brand__mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 12px;
    background: var(--neon-grad); color: #04101f;
    font-weight: 800; font-size: 1.25rem;
    box-shadow: 0 0 20px -4px rgba(47,151,255,0.8);
}
.site-brand__coin { color: #04101f; }
.site-brand__accent { color: var(--primary); }
.site-brand--footer { font-size: 1.15rem; }

.nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 48px; height: 48px; padding: 12px;
    background: transparent; border: 1px solid var(--border); border-radius: var(--radius-sm);
    cursor: pointer; z-index: 1001;
}
.nav-toggle span {
    display: block; height: 2px; width: 100%;
    background: var(--foreground); border-radius: 2px;
    transition: transform .25s ease, opacity .25s 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); }

.primary-nav { display: none; }
.primary-nav.is-open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    z-index: 999;
    background: var(--background);
    padding: var(--space-md) var(--space-sm) var(--space-2xl);
    overflow-y: auto; gap: var(--space-md);
}
.primary-nav__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
}
.primary-nav__list a {
    display: flex; align-items: center; min-height: 48px;
    padding: 8px 12px; border-radius: var(--radius-sm);
    color: var(--foreground); font-family: "Sora", sans-serif; font-weight: 500;
    border-bottom: 1px solid var(--border);
}
.primary-nav__list a:hover { color: var(--primary); text-decoration: none; background: var(--card); }
.primary-nav__cta { display: flex; flex-direction: column; gap: var(--space-xs); }
.primary-nav__cta .btn { width: 100%; }

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .primary-nav {
        display: flex; align-items: center; gap: var(--space-lg);
        position: static; background: transparent; padding: 0; overflow: visible;
    }
    .primary-nav__list { flex-direction: row; align-items: center; gap: 4px; }
    .primary-nav__list a { min-height: 44px; border-bottom: none; font-size: 0.95rem; }
    .primary-nav__cta { flex-direction: row; }
    .primary-nav__cta .btn { width: auto; }
}

/* ============================================
   HERO
   Full-bleed dark hero with model + bonus badges
   ============================================ */
.hero {
    position: relative;
    background:
        radial-gradient(circle at 78% 20%, rgba(47,151,255,0.22), transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(255,138,60,0.16), transparent 50%),
        var(--background);
    border-bottom: 1px solid var(--border);
}
.hero__inner {
    max-width: var(--content-max); margin-inline: auto;
    padding: var(--space-2xl) var(--space-sm);
    display: grid; gap: var(--space-xl); align-items: center;
}
.hero__content { max-width: 60ch; }
.hero__badges { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin: var(--space-md) 0; }
.hero__badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 999px;
    background: var(--card); border: 1px solid var(--border);
    font-family: "Sora", sans-serif; font-weight: 600; font-size: 0.9rem;
}
.hero__badge strong { background: var(--neon-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-md); }
.hero__trust {
    display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-lg);
    color: var(--muted-foreground); font-size: 0.9rem;
}
.hero__trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero__media { position: relative; }
.hero__img {
    width: 100%; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neon);
}

@media (min-width: 1024px) {
    .hero__inner { grid-template-columns: 1.05fr 0.95fr; padding-block: var(--space-3xl); }
}

/* ============================================
   BONUS BADGE CARDS
   Raised neon cards with oversized gradient figures
   ============================================ */
.badge-grid {
    display: grid; grid-template-columns: 1fr; gap: var(--space-sm);
}
@media (min-width: 640px) { .badge-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }

.badge-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: var(--space-md);
    text-align: center;
    transition: transform .2s ease-out, box-shadow .2s ease-out;
    min-width: 0;
}
.badge-card:hover { transform: scale(1.02); box-shadow: var(--shadow-neon-hover); }
.badge-card__img { width: 96px; height: 96px; object-fit: contain; margin: 0 auto var(--space-xs); }
.badge-card__figure {
    display: block; font-family: "Sora", sans-serif; font-weight: 800;
    font-size: clamp(2.6rem, 7vw, 3.6rem); line-height: 1;
    background: var(--neon-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.badge-card__suffix { font-size: 0.9rem; }
.badge-card__heading { margin: var(--space-sm) 0 6px; font-size: 1.2rem; font-weight: 600; }
.badge-card__desc { color: var(--muted-foreground); font-size: 0.98rem; margin: 0; }

@media (min-width: 768px) { .badge-card { padding: var(--space-lg); } }

/* ============================================
   ICON FEATURES
   Neon-outlined icon grid, USP points
   ============================================ */
.icon-features { display: grid; grid-template-columns: 1fr; gap: var(--space-sm); }
@media (min-width: 640px) { .icon-features { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) {
    .icon-features--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .icon-features--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
}

.icon-feature {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: var(--space-md); min-width: 0;
    transition: transform .2s ease-out, box-shadow .2s ease-out;
}
.icon-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-neon); }
.icon-feature__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 14px; font-size: 1.5rem;
    background: var(--card-raised); border: 1px solid var(--primary);
    box-shadow: 0 0 18px -6px rgba(47,151,255,0.7);
    margin-bottom: var(--space-sm);
}
.icon-feature__title { font-size: 1.15rem; margin-bottom: 6px; }
.icon-feature__desc { color: var(--muted-foreground); font-size: 0.98rem; margin: 0; }

/* ============================================
   HOW-TO STEPS
   Numbered gold-rimmed circles, neon connecting line
   ============================================ */
.how-to__list {
    list-style: none; margin: 0; padding: 0;
    display: grid; gap: var(--space-sm);
    position: relative;
}
@media (min-width: 768px) { .how-to__list { grid-template-columns: repeat(2, minmax(0,1fr)); } }

.how-to__step {
    display: flex; gap: var(--space-md); align-items: flex-start;
    background: var(--card); border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius); padding: var(--space-md); min-width: 0;
}
.how-to__num {
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 50%;
    border: 2px solid var(--accent);
    font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.5rem;
    background: var(--neon-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
    box-shadow: 0 0 18px -6px rgba(245,197,66,0.7);
}
.how-to__heading { font-size: 1.15rem; margin-bottom: 6px; }
.how-to__desc { color: var(--muted-foreground); font-size: 0.98rem; margin: 0; }

/* ============================================
   CALLOUT BOX
   4px left neon accent, tip/warning/note
   ============================================ */
.callout {
    background: var(--card-raised); border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius); padding: var(--space-md);
    margin-block: var(--space-md);
}
.callout--warning { border-left-color: var(--secondary); }
.callout--gold, .callout--tip { border-left-color: var(--accent); }
.callout__head { display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-xs); }
.callout__icon { font-size: 1.3rem; }
.callout__label { font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.05rem; }
.callout__body { color: var(--muted-foreground); margin: 0; }

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

/* ============================================
   FAQ ACCORDION
   details/summary, gold rotating chevron
   ============================================ */
.faq-accordion { max-width: var(--content-max); margin-inline: auto; }
.faq-accordion__list {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item__q {
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
    padding: var(--space-md); cursor: pointer; list-style: none;
    font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.1rem;
    color: var(--foreground); min-height: 48px;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__chevron {
    flex-shrink: 0; width: 12px; height: 12px;
    border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
    transform: rotate(45deg); transition: transform .25s ease;
}
.faq-item[open] .faq-item__chevron { transform: rotate(-135deg); }
.faq-item__a { padding: 0 var(--space-md) var(--space-md); }
.faq-item__a p { color: var(--muted-foreground); margin: 0; font-size: 1.0625rem; line-height: 1.6; }

/* ============================================
   CTA BANNER
   Edge-to-edge cashback band, blue→orange gradient
   ============================================ */
.cta-banner {
    background: var(--cashband-grad);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    text-align: center;
}
.cta-banner__inner {
    max-width: 760px; margin-inline: auto;
    padding: var(--space-2xl) var(--space-sm);
}
.cta-banner__heading { font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: var(--space-sm); }
.cta-banner__subtext { color: var(--foreground); opacity: 0.92; margin-bottom: var(--space-md); }
.cta-banner__micro { color: #d4dcea; font-size: 0.9rem; margin-top: var(--space-sm); }
@media (min-width: 1024px) { .cta-banner__inner { padding-block: var(--space-3xl); } }

/* ============================================
   SPLIT / MEDIA SECTIONS
   ============================================ */
.split {
    display: grid; grid-template-columns: 1fr; gap: var(--space-lg); align-items: center;
}
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; } }
.split__img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-neon); }
.split--reverse .split__media { order: -1; }
@media (min-width: 1024px) { .split--reverse .split__media { order: 0; } }

/* ============================================
   LOGO / TRUST STRIP
   ============================================ */
.logo-strip {
    display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--space-sm);
    list-style: none; padding: 0; margin: 0;
}
@media (min-width: 640px) { .logo-strip { grid-template-columns: repeat(4, minmax(0,1fr)); } }
@media (min-width: 1024px) { .logo-strip--wide { grid-template-columns: repeat(8, minmax(0,1fr)); } }
.logo-strip li {
    display: flex; align-items: center; justify-content: center;
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: var(--space-sm); min-height: 72px; min-width: 0;
    transition: box-shadow .2s ease, border-color .2s ease;
}
.logo-strip li:hover { border-color: var(--primary); box-shadow: 0 0 18px -8px rgba(47,151,255,0.8); }
.logo-strip img { max-height: 44px; width: auto; object-fit: contain; }

.trust-row {
    display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center;
    margin-top: var(--space-md);
}
.trust-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px; border-radius: 999px;
    background: var(--card); border: 1px solid var(--border);
    font-size: 0.9rem; color: var(--foreground);
}

/* ============================================
   ENGAGEMENT / CRO PATTERNS
   ============================================ */
.tldr {
    background: var(--card); border: 1px solid var(--border);
    border-left: 4px solid var(--accent); border-radius: var(--radius);
    padding: var(--space-md); margin-block: var(--space-md);
}
.tldr__label {
    font-family: "Sora", sans-serif; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; font-size: 0.8rem; color: var(--accent);
    display: block; margin-bottom: var(--space-xs);
}
.tldr p { color: var(--muted-foreground); margin: 0; }

.stat-highlight { text-align: center; padding: var(--space-md); min-width: 0; }
.stat-highlight__num {
    display: block; font-family: "Sora", sans-serif; font-weight: 800;
    font-size: clamp(2.4rem, 6vw, 3.4rem); line-height: 1;
    background: var(--neon-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-highlight__label { color: var(--muted-foreground); font-size: 0.95rem; }

.stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--space-sm); }
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }

.pull-quote {
    font-family: "Sora", sans-serif; font-size: clamp(1.3rem, 2.6vw, 1.8rem);
    font-weight: 600; line-height: 1.4; color: var(--foreground);
    border-left: 4px solid var(--primary); padding: var(--space-sm) var(--space-md);
    margin-block: var(--space-lg);
}
.pull-quote cite { display: block; margin-top: var(--space-sm); font-family: "Manrope", sans-serif; font-size: 1rem; font-style: normal; color: var(--muted-foreground); }

/* Comparison table */
.compare-table-wrap { max-width: 100%; overflow-x: auto; margin-block: var(--space-md); }
.compare-table {
    width: 100%; border-collapse: collapse; min-width: 480px;
    background: var(--card); border-radius: var(--radius); overflow: hidden;
}
.compare-table th, .compare-table td {
    padding: 14px var(--space-sm); text-align: left;
    border-bottom: 1px solid var(--border);
}
.compare-table thead th {
    font-family: "Sora", sans-serif; font-weight: 600; color: var(--foreground);
    background: var(--card-raised);
}
.compare-table td { color: var(--muted-foreground); }
.compare-table .is-recommended { background: rgba(47,151,255,0.08); color: var(--foreground); }

/* Wagering meter */
.wager-meter { margin-block: var(--space-md); }
.wager-meter__track {
    height: 16px; border-radius: 999px; background: var(--card-raised);
    border: 1px solid var(--border); overflow: hidden;
}
.wager-meter__fill { height: 100%; background: var(--neon-grad); border-radius: 999px; }
.wager-meter__labels { display: flex; justify-content: space-between; margin-top: var(--space-xs); color: var(--muted-foreground); font-size: 0.85rem; }

/* Native details (secondary use) */
.detail-block {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: var(--space-sm) var(--space-md); margin-block: var(--space-sm);
}
.detail-block summary { cursor: pointer; font-family: "Sora", sans-serif; font-weight: 600; }

/* ============================================
   FOOTER
   Four-column grid, single column on mobile
   ============================================ */
.site-footer {
    background: #070b17; border-top: 1px solid var(--border);
    margin-top: var(--space-2xl);
}
.site-footer__inner {
    max-width: var(--content-max); margin-inline: auto;
    padding: var(--space-2xl) var(--space-sm) var(--space-lg);
    display: grid; grid-template-columns: 1fr; gap: var(--space-lg);
}
@media (min-width: 768px) { .site-footer__inner { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.site-footer__heading { font-size: 1rem; font-family: "Sora", sans-serif; margin-bottom: var(--space-sm); color: var(--foreground); }
.site-footer__note { color: var(--muted-foreground); font-size: 0.95rem; }
.site-footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer__links a { color: var(--muted-foreground); }
.site-footer__links a:hover { color: var(--primary); }
.footer-badges { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin-top: var(--space-md); }
.footer-badge {
    display: inline-flex; align-items: center;
    padding: 6px 12px; border-radius: 999px; font-size: 0.8rem;
    background: var(--card); border: 1px solid var(--border); color: var(--muted-foreground);
}
.footer-badge--age { background: var(--secondary); color: var(--secondary-foreground); font-weight: 700; border-color: transparent; }
.payment-strip { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: var(--space-xs); }
.payment-strip li {
    padding: 8px 12px; border-radius: var(--radius-sm); font-size: 0.85rem;
    background: var(--card); border: 1px solid var(--border); color: var(--muted-foreground);
}
.site-footer__bar {
    border-top: 1px solid var(--border);
    max-width: var(--content-max); margin-inline: auto;
    padding: var(--space-md) var(--space-sm);
}
.site-footer__bar p { color: var(--muted-foreground); font-size: 0.82rem; margin: 0; text-align: center; }

/* ============================================
   SITEMAP LIST
   ============================================ */
.sitemap-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-sm); }
.sitemap-list li {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: var(--space-md);
}
.sitemap-list a { font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.1rem; }
.sitemap-list p { color: var(--muted-foreground); margin: 8px 0 0; font-size: 0.98rem; }

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

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