/*
 * WILDROBIN CASINO - DESIGN SYSTEM
 * Premium rogue-adventure aesthetic: dark forest palette with neon green + gold.
 * Fonts: Cinzel (display headings), Manrope (body).
 */

:root {
    /* Single dark forest theme (no theme switcher) */
    --background: #0a0e0a;
    --background-2: #0f150f;
    --foreground: #f8f4e3;
    --card: #141a14;
    --card-2: #101610;
    --popover: #141a14;
    --popover-foreground: #f8f4e3;
    --primary: #39ff14;
    --primary-foreground: #0a0e0a;
    --secondary: #ffd700;
    --secondary-foreground: #0a0e0a;
    --muted: #1e293b;
    --muted-foreground: #b7c2b0;
    --accent: #ff9500;
    --accent-foreground: #0a0e0a;
    --destructive: #ea1414;
    --destructive-foreground: #ffffff;
    --border: #26372a;
    --border-soft: #33463a;
    --input: #141a14;
    --ring: #39ff14;

    --forest-deep: #12210f;
    --forest-mid: #0d1a0c;

    /* Spacing scale (8px grid) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 80px;

    --maxw: 1200px;
    --maxw-text: 800px;
    --radius: 16px;
    --radius-sm: 10px;
    --header-h: 68px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    --font-display: "Cinzel", Georgia, serif;
    --font-body: "Manrope", system-ui, sans-serif;
}

/* Keep .dark identical to :root - no light/dark switcher on this site */
.dark {
    --background: #0a0e0a;
    --foreground: #f8f4e3;
    --card: #141a14;
    --primary: #39ff14;
    --secondary: #ffd700;
    --muted-foreground: #b7c2b0;
    --accent: #ff9500;
    --border: #26372a;
}

/* ============================================
   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, [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
   ============================================ */
html { width: 100%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    width: 100%;
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(60% 40% at 80% 0%, rgba(57,255,20,0.06), transparent 60%),
        radial-gradient(50% 40% at 0% 20%, rgba(255,215,0,0.05), transparent 60%);
}

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

h1 { font-size: 28px; }
h2 { font-size: 24px; font-weight: 600; }
h3 { font-size: 20px; font-weight: 500; }

p { margin: 0 0 var(--space-md); }

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

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

.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(--primary); outline-offset: 2px; }

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

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

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

.section__head { text-align: center; margin-bottom: var(--space-lg); }
.section__head p { color: var(--muted-foreground); max-width: 60ch; margin-inline: auto; }

.eyebrow {
    display: inline-block; font-family: var(--font-body); font-weight: 700;
    font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--secondary); margin-bottom: var(--space-sm);
}

/* ============================================
   BUTTONS - CTAs and actions
   .btn--primary neon green | .btn--outline | .btn--ghost | .btn--pulse gold glow
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; padding: 12px 26px; border-radius: 999px;
    font-family: var(--font-body); font-weight: 700; font-size: 16px;
    text-align: center; cursor: pointer; border: 2px solid transparent;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.btn--primary {
    background: var(--primary); color: var(--primary-foreground);
    box-shadow: 0 0 18px rgba(57,255,20,0.35);
}
.btn--primary:hover { color: var(--primary-foreground); transform: translateY(-2px); box-shadow: 0 6px 26px rgba(57,255,20,0.5); }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: rgba(57,255,20,0.1); color: var(--primary); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--foreground); border-color: var(--border-soft); }
.btn--ghost:hover { border-color: var(--secondary); color: var(--secondary); }
.btn--pulse { animation: pulse-glow 2.4s var(--ease) infinite; }

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 18px rgba(57,255,20,0.35); }
    50% { box-shadow: 0 0 26px rgba(255,215,0,0.55); }
}

/* ============================================
   HEADER + NAVIGATION
   Sticky transparent header, mobile drawer below 1024px
   ============================================ */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(10,14,10,0.82);
    border-bottom: 1px solid var(--border);
}
.site-header__inner {
    max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space-md);
    height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
}

.site-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--foreground); }
.site-brand:hover { color: var(--foreground); }
.site-brand__mark { display: inline-flex; }
.site-brand__text { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: 0.02em; }
.site-brand__accent { color: var(--secondary); }

.primary-nav__list {
    list-style: none; margin: 0; padding: 0; display: flex; gap: var(--space-lg); align-items: center;
}
.primary-nav__list a { color: var(--foreground); font-weight: 600; font-size: 16px; }
.primary-nav__list a:hover { color: var(--primary); }
.primary-nav__actions { display: flex; gap: 12px; align-items: center; }
.primary-nav__actions .btn { min-height: 44px; padding: 10px 20px; font-size: 15px; }

.nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 48px; height: 48px; padding: 10px; background: transparent;
    border: 1px solid var(--border-soft); 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 .3s 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); }

/* Mobile: drawer */
@media (max-width: 1023px) {
    .primary-nav {
        display: none;
        position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
        z-index: 999; background: var(--background);
        flex-direction: column; padding: var(--space-md);
        overflow-y: auto; border-top: 1px solid var(--border);
    }
    .primary-nav.is-open { display: flex; }
    .primary-nav__list { flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
    .primary-nav__list a { display: flex; align-items: center; min-height: 48px; padding: 0 12px; border-radius: var(--radius-sm); border-bottom: 1px solid var(--border); }
    .primary-nav__actions { flex-direction: column; align-items: stretch; margin-top: var(--space-md); }
    .primary-nav__actions .btn { width: 100%; min-height: 48px; }
}
@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .primary-nav { display: flex; align-items: center; gap: var(--space-lg); }
}

/* ============================================
   HERO - full-bleed forest gradient with arrow-slit divider
   ============================================ */
.hero {
    position: relative;
    padding-block: var(--space-xl);
    background:
        linear-gradient(180deg, rgba(10,14,10,0.55), rgba(10,14,10,0.9)),
        radial-gradient(70% 60% at 70% 20%, rgba(57,255,20,0.12), transparent 60%),
        linear-gradient(160deg, var(--forest-deep), var(--background));
    overflow: clip;
}
.hero__grid {
    max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space-md);
    display: grid; gap: var(--space-lg); align-items: center;
}
.hero__content h1 { margin-bottom: var(--space-md); }
.hero__content p { color: var(--foreground); font-size: 18px; max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--space-md); }
.hero__media { position: relative; text-align: center; }
.hero__media img { filter: drop-shadow(0 12px 40px rgba(57,255,20,0.25)); max-width: 100%; height: auto; margin-inline: auto; }
@media (max-width: 767px) {
    .hero__media img { max-height: 340px; width: auto; object-fit: contain; }
}
@media (min-width: 1024px) { .hero__media img { max-width: 420px; } }
.arrow-slit {
    position: absolute; left: 0; right: 0; bottom: -1px; height: 40px;
    background: var(--background);
    clip-path: polygon(0 100%, 100% 100%, 100% 40%, 50% 100%, 0 40%);
    pointer-events: none;
}
@media (min-width: 1024px) {
    .hero { padding-block: 80px; }
    .hero__grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* ============================================
   BONUS CARD - grid card for offers/categories
   ============================================ */
.card-grid {
    display: grid; grid-template-columns: minmax(0,1fr); gap: var(--space-md);
}
@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 { grid-template-columns: minmax(0,1fr); }
@media (min-width: 768px) { .card-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); } }

.bonus-card {
    background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius);
    padding: var(--space-md); min-width: 0;
    display: flex; flex-direction: column; gap: var(--space-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.bonus-card:hover {
    transform: scale(1.04); border-color: var(--primary);
    box-shadow: 0 10px 34px rgba(57,255,20,0.22);
}
.bonus-card--highlight { border-color: var(--secondary); box-shadow: 0 0 30px rgba(255,215,0,0.14); }
.bonus-card__media, .bonus-card__icon-wrap {
    border-radius: var(--radius-sm); overflow: hidden; position: relative;
    background: linear-gradient(160deg, var(--forest-deep), var(--card-2));
    aspect-ratio: 480 / 300;
}
.bonus-card__media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,14,10,0.55));
}
.bonus-card__media img { width: 100%; display: block; object-fit: cover; }
.bonus-card__icon-wrap { display: flex; align-items: center; justify-content: center; padding: var(--space-sm); }
.bonus-card__icon { width: 112px; height: 112px; object-fit: contain; }
.bonus-card__title { color: var(--foreground); margin: 0; }
.bonus-card__value {
    font-family: var(--font-display); font-weight: 700; font-size: 40px; line-height: 1.05;
    color: var(--secondary); text-shadow: 0 0 18px rgba(255,215,0,0.35); margin: 0;
}
@media (min-width: 1024px) { .bonus-card__value { font-size: 44px; } }
.bonus-card__desc { color: var(--muted-foreground); margin: 0; }
.bonus-card__btn { margin-top: auto; align-self: flex-start; }

/* ============================================
   SPLIT SECTION - text + image (VIP, cashback)
   ============================================ */
.split {
    display: grid; gap: var(--space-lg); align-items: center;
    background: linear-gradient(150deg, var(--forest-deep), var(--background));
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: var(--space-lg);
}
.split p { color: var(--muted-foreground); }
.split__media img { border-radius: var(--radius); width: 100%; display: block; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; padding: var(--space-xl); } }
.split--reverse .split__media { order: -1; }
@media (min-width: 1024px) { .split--reverse .split__media { order: 0; } }

/* ============================================
   PAYMENT / PROVIDER LOGO STRIP
   Grayscale → neon green on hover
   ============================================ */
.logo-strip {
    display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-md);
}
.logo-strip__item {
    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); width: 130px; min-height: 84px;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.logo-strip__item img { filter: grayscale(1) brightness(2.2); opacity: .95; transition: filter .3s var(--ease), opacity .3s var(--ease); max-height: 52px; }
.logo-strip__item:hover { border-color: var(--primary); box-shadow: 0 0 16px rgba(57,255,20,0.2); }
.logo-strip__item:hover img { filter: none; opacity: 1; }

/* ============================================
   WINNER CARDS - social proof
   ============================================ */
.winner-grid {
    display: grid; grid-template-columns: minmax(0,1fr); gap: var(--space-md);
}
@media (min-width: 768px) { .winner-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .winner-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.winner-card {
    background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius);
    padding: var(--space-md); text-align: center; min-width: 0;
}
.winner-card__avatar { width: 84px; height: 84px; border-radius: 999px; object-fit: cover; margin: 0 auto var(--space-sm); border: 2px solid var(--secondary); }
.winner-card__name { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin: 0 0 4px; }
.winner-card__game { color: var(--muted-foreground); font-size: 14px; margin: 0 0 8px; }
.winner-card__amount { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--primary); margin: 0; }

/* ============================================
   STEPS LIST - numbered how-to
   ============================================ */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-md); counter-reset: step; }
.step {
    display: grid; grid-template-columns: 48px 1fr; gap: var(--space-sm); align-items: start;
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: var(--space-md);
}
.step::before {
    counter-increment: step; content: counter(step);
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    background: var(--primary); color: var(--primary-foreground);
    font-family: var(--font-display); font-weight: 700; border-radius: 999px;
}
.step h3 { margin: 0 0 4px; }
.step p { margin: 0; color: var(--muted-foreground); }

/* ============================================
   ENGAGEMENT PATTERNS
   .tldr-box | .callout | .stat-highlight | .pullquote | details
   ============================================ */
.tldr-box {
    background: var(--card-2); border: 1px solid var(--border-soft); border-left: 4px solid var(--secondary);
    border-radius: var(--radius-sm); padding: var(--space-md); margin-bottom: var(--space-lg);
}
.tldr-box h2, .tldr-box h3 { font-size: 18px; margin: 0 0 8px; color: var(--secondary); }
.tldr-box p { margin: 0; color: var(--foreground); }

.callout {
    background: var(--card); border: 1px solid var(--border-soft); border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm); padding: var(--space-md); margin-block: var(--space-md);
}
.callout--info { border-left-color: var(--primary); }
.callout h3 { margin: 0 0 8px; color: var(--accent); font-size: 20px; }
.callout--info h3 { color: var(--primary); }
.callout p:last-child { margin: 0; }

.stat-highlight { text-align: center; padding: var(--space-md); }
.stat-highlight__num { font-family: var(--font-display); font-weight: 800; font-size: 44px; color: var(--primary); line-height: 1; text-shadow: 0 0 16px rgba(57,255,20,0.3); }
.stat-highlight__label { display: block; color: var(--muted-foreground); font-size: 15px; margin-top: 8px; }

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

.pullquote {
    font-family: var(--font-display); font-size: 24px; line-height: 1.4; color: var(--foreground);
    border-left: 4px solid var(--primary); padding: var(--space-sm) var(--space-md); margin: var(--space-lg) 0;
    font-style: italic;
}
.pullquote cite { display: block; font-family: var(--font-body); font-size: 15px; font-style: normal; color: var(--muted-foreground); margin-top: 8px; }

/* Prose text blocks */
.prose { max-width: var(--maxw-text); margin: 0 auto; }
.prose p, .prose li { color: var(--foreground); }
.prose h2 { margin-top: var(--space-lg); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

/* ============================================
   FAQ ACCORDION (native details/summary)
   ============================================ */
.faq-accordion { max-width: var(--maxw-text); margin: 0 auto; }
.faq-accordion__heading { text-align: center; margin-bottom: var(--space-lg); }
.faq-accordion__list { display: grid; gap: var(--space-sm); }
.faq-item {
    background: var(--card); border: 1px solid var(--border-soft); border-left: 4px solid transparent;
    border-radius: var(--radius-sm); overflow: hidden; transition: border-color .3s var(--ease);
}
.faq-item[open] { border-left-color: var(--primary); }
.faq-item__question {
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
    padding: var(--space-md); cursor: pointer; list-style: none;
    font-family: var(--font-display); font-weight: 500; font-size: 20px; color: var(--foreground);
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-item__icon::before, .faq-item__icon::after {
    content: ""; position: absolute; background: var(--secondary); border-radius: 2px;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-item__icon::before { width: 16px; height: 2px; }
.faq-item__icon::after { width: 2px; height: 16px; transition: transform .3s var(--ease); }
.faq-item[open] .faq-item__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item__answer { padding: 0 var(--space-md) var(--space-md); }
.faq-item__answer p { margin: 0; color: var(--muted-foreground); font-size: 17px; line-height: 1.6; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative; text-align: center;
    background: linear-gradient(160deg, var(--forest-deep), var(--background));
    padding: 48px var(--space-md); margin-top: var(--space-md); overflow: clip;
}
@media (min-width: 1024px) { .cta-banner { padding: 80px var(--space-md); } }
.cta-banner__slit {
    position: absolute; top: -1px; left: 0; right: 0; height: 34px; background: var(--background);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 0, 0 60%);
}
.cta-banner__inner { max-width: 720px; margin: 0 auto; }
.cta-banner__heading { font-size: 30px; color: var(--secondary); text-shadow: 0 0 22px rgba(255,215,0,0.3); }
@media (min-width: 1024px) { .cta-banner__heading { font-size: 38px; } }
.cta-banner__subtext { color: var(--foreground); font-size: 17px; margin-bottom: var(--space-md); }
.cta-banner__microcopy { font-size: 14px; color: var(--muted-foreground); margin: var(--space-sm) 0 0; }

/* ============================================
   TRUST BADGES / COMPARISON TABLE / SOCIAL PROOF
   ============================================ */
.trust-row { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; align-items: center; }
.trust-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
    background: var(--card); border: 1px solid var(--border-soft); border-radius: 999px;
    font-size: 14px; font-weight: 600; color: var(--muted-foreground);
}

.compare-table { width: 100%; border-collapse: collapse; font-size: 16px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table thead th { font-family: var(--font-display); color: var(--secondary); font-weight: 600; }
.compare-table td { color: var(--muted-foreground); }
.compare-table .is-recommended { background: rgba(57,255,20,0.06); color: var(--foreground); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--background-2); border-top: 1px solid var(--border); margin-top: var(--space-lg); }
.site-footer__inner {
    max-width: var(--maxw); margin: 0 auto; padding: var(--space-xl) var(--space-md);
    display: grid; gap: var(--space-lg); grid-template-columns: minmax(0,1fr);
}
@media (min-width: 768px) { .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 1.2fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-sm); }
.footer-heading { font-family: var(--font-display); font-size: 18px; color: var(--secondary); margin: 0 0 var(--space-sm); }
.footer-links, .footer-payments { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { color: var(--muted-foreground); display: inline-flex; align-items: center; min-height: 36px; padding: 4px 0; }
.footer-links a:hover { color: var(--primary); }
.footer-payments li { color: var(--muted-foreground); font-size: 15px; min-height: 36px; display: flex; align-items: center; }
.footer-note { color: var(--muted-foreground); font-size: 14px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-block: var(--space-sm); }
.badge-license, .badge-age {
    display: inline-flex; align-items: center; padding: 6px 12px; border-radius: var(--radius-sm);
    border: 1px solid var(--border-soft); font-size: 13px; font-weight: 700; min-height: 36px;
}
.badge-license { color: var(--muted-foreground); }
.badge-age { color: var(--accent-foreground); background: var(--accent); border-color: var(--accent); }
.site-footer__bottom { border-top: 1px solid var(--border); text-align: center; padding: var(--space-md); }
.site-footer__bottom p { margin: 0; color: var(--muted-foreground); font-size: 14px; }
@media (max-width: 767px) {
    .footer-links a { min-height: 44px; }
    .footer-payments li { min-height: 44px; }
    .badge-license, .badge-age { min-height: 44px; padding: 8px 14px; }
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.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-soft); border-radius: var(--radius-sm); padding: var(--space-md); }
.sitemap-list h3 { margin: 0 0 6px; }
.sitemap-list p { margin: 0; color: var(--muted-foreground); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s 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; }
}
