/*
 * BETSSON CASINO - DESIGN SYSTEM
 * Art Deco 1920s Great Gatsby aesthetic.
 * Poiret One display + Jost body. Turquoise-orange gold on onyx.
 */

:root {
    --background: #f7f5f0;
    --foreground: #1c1a17;
    --card: #fdfbf5;
    --card-foreground: #1c1a17;
    --popover: #fdfbf5;
    --popover-foreground: #1c1a17;
    --primary: #0f6b73;
    --primary-foreground: #ffffff;
    --secondary: #f5eede;
    --secondary-foreground: #1c1a17;
    --muted: #e6e0d4;
    --muted-foreground: #4a463d;
    --accent: #9a4718;
    --accent-foreground: #ffffff;
    --destructive: #c0392b;
    --destructive-foreground: #ffffff;
    --border: #c9c0ae;
    --input: #d4ccbc;
    --ring: #0f6b73;

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

    --maxw: 1200px;
    --maxw-text: 800px;
    --header-h: 68px;
    --radius: 4px;

    --gold-gradient: linear-gradient(135deg, #c8820f 0%, #a86910 45%, #8a5410 100%);
    --gold-line: linear-gradient(90deg, transparent, #c8820f 20%, #e0a437 50%, #c8820f 80%, transparent);
    --font-display: "Poiret One", "Jost", sans-serif;
    --font-body: "Jost", "Segoe UI", sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.dark {
    --background: #0a0908;
    --foreground: #f5ecd8;
    --card: #1a1815;
    --card-foreground: #f5ecd8;
    --popover: #1a1815;
    --popover-foreground: #f5ecd8;
    --primary: #2ee6d6;
    --primary-foreground: #06201f;
    --secondary: #26231e;
    --secondary-foreground: #f5ecd8;
    --muted: #2a2722;
    --muted-foreground: #d0c8b4;
    --accent: #f5a623;
    --accent-foreground: #2b1c05;
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;
    --border: #3a352d;
    --input: #3a352d;
    --ring: #2ee6d6;

    --gold-gradient: linear-gradient(135deg, #f5a623 0%, #ffd27a 45%, #d98817 100%);
    --gold-line: linear-gradient(90deg, transparent, #f5a623 20%, #ffd27a 50%, #f5a623 80%, transparent);
}

/* ============================================
   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 / RESET
   ============================================ */
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(circle at 15% 10%, rgba(46,230,214,0.05), transparent 40%),
        radial-gradient(circle at 85% 90%, rgba(245,166,35,0.06), transparent 45%);
}

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.04em;
    margin: 0 0 var(--space-sm);
    color: var(--foreground);
}
h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
p { margin: 0 0 var(--space-md); }

@media (min-width: 1024px) {
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
}

.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: 1100;
    background: var(--primary); color: var(--primary-foreground);
    padding: var(--space-xs) var(--space-sm); border-radius: var(--radius);
}
.skip-link:focus { left: var(--space-sm); top: var(--space-xs); }

/* ============================================
   LAYOUT HELPERS
   .container - centered content zone
   .container--text - narrow readable zone
   .section - vertical rhythm
   .gold-divider - deco divider line
   ============================================ */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space-sm); }
.container--text { max-width: var(--maxw-text); }
.section { padding: var(--space-lg) 0; }
.section--tight { padding: var(--space-md) 0; }
@media (min-width: 1024px) {
    .container { padding: 0 var(--space-lg); }
    .section { padding: var(--space-xl) 0; }
    .section--tight { padding: var(--space-lg) 0; }
}
.gold-divider {
    height: 2px; border: 0; margin: var(--space-md) auto;
    background: var(--gold-line); max-width: 320px;
}
.eyebrow {
    display: inline-block; font-family: var(--font-body); font-weight: 600;
    letter-spacing: 0.28em; text-transform: uppercase; font-size: 13px;
    color: var(--accent); margin-bottom: var(--space-xs);
}
.text-gold {
    background: var(--gold-gradient); -webkit-background-clip: text;
    background-clip: text; color: transparent;
}

/* Deco frame - gold sunburst/chevron border motif */
.deco-frame {
    position: relative;
    border: 1px solid rgba(245,166,35,0.45);
    background:
        linear-gradient(var(--card), var(--card)) padding-box,
        repeating-linear-gradient(45deg, rgba(245,166,35,0.25) 0 6px, transparent 6px 14px) border-box;
}

/* ============================================
   BUTTONS
   .btn--primary - turquoise CTA
   .btn--ghost - gold outline
   .btn--lg - large
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 48px; padding: 0 var(--space-md);
    font-family: var(--font-body); font-weight: 600; font-size: 16px;
    letter-spacing: 0.05em; border-radius: var(--radius); border: 1px solid transparent;
    cursor: pointer; text-align: center; text-decoration: none;
    transition: transform 250ms var(--ease), box-shadow 250ms var(--ease), background 250ms var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary {
    background: var(--primary); color: var(--primary-foreground);
    box-shadow: 0 0 0 1px rgba(46,230,214,0.4), 0 6px 20px rgba(46,230,214,0.2);
}
.btn--primary:hover { box-shadow: 0 0 0 1px var(--accent), 0 8px 26px rgba(245,166,35,0.35); }
.btn--ghost {
    background: transparent; color: var(--accent);
    border-color: rgba(245,166,35,0.6);
}
.btn--ghost:hover { background: rgba(245,166,35,0.1); }
.btn--lg { min-height: 54px; padding: 0 var(--space-lg); font-size: 18px; }

/* ============================================
   HEADER + NAVIGATION
   ============================================ */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}
.site-header::after {
    content: ""; display: block; height: 2px; background: var(--gold-line);
}
.site-header__inner {
    max-width: var(--maxw); margin: 0 auto;
    min-height: var(--header-h); padding: 0 var(--space-sm);
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
}
@media (min-width: 1024px) { .site-header__inner { padding: 0 var(--space-lg); } }

.site-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.site-brand:hover { text-decoration: none; }
.site-brand__mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; font-family: var(--font-display); font-size: 22px;
    color: var(--accent-foreground); background: var(--gold-gradient);
    border-radius: var(--radius); letter-spacing: 0;
}
.site-brand__text {
    font-family: var(--font-display); font-size: 22px; letter-spacing: 0.08em;
    color: var(--foreground);
}
.site-brand__accent { color: var(--accent); }

.primary-nav { display: none; }
.primary-nav__list { list-style: none; display: flex; gap: var(--space-md); margin: 0; padding: 0; }
.primary-nav__link {
    display: inline-flex; align-items: center; min-height: 48px;
    color: var(--foreground); font-weight: 500; letter-spacing: 0.04em;
    border-bottom: 2px solid transparent;
}
.primary-nav__link:hover { color: var(--accent); text-decoration: none; border-color: var(--accent); }
.primary-nav__actions { display: flex; gap: var(--space-xs); }

@media (min-width: 1024px) {
    .primary-nav {
        display: flex; align-items: center; gap: var(--space-lg);
    }
    .nav-toggle { display: none; }
}

/* Theme toggle */
.theme-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; padding: 0; background: transparent;
    border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer;
    color: var(--accent); flex-shrink: 0;
    transition: border-color 250ms var(--ease), background 250ms var(--ease);
}
.theme-toggle:hover { background: rgba(245,166,35,0.1); border-color: rgba(245,166,35,0.6); }
.theme-toggle__icon {
    display: block; width: 20px; height: 20px; border-radius: 50%;
    background: var(--gold-gradient);
    box-shadow: inset -6px -3px 0 0 var(--background);
    transition: box-shadow 250ms var(--ease);
}
.dark .theme-toggle__icon { box-shadow: none; }

/* Hamburger */
.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); border-radius: var(--radius); cursor: pointer;
    z-index: 1001;
}
.nav-toggle span {
    display: block; height: 2px; width: 100%; background: var(--accent);
    transition: transform 250ms var(--ease), opacity 250ms 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.is-open {
        display: flex; flex-direction: column; align-items: stretch; gap: var(--space-sm);
        position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; z-index: 999;
        background: var(--background); padding: var(--space-lg) var(--space-sm);
        overflow-y: auto; border-top: 2px solid transparent;
        background-image: var(--gold-line); background-size: 100% 2px; background-repeat: no-repeat;
    }
    .primary-nav.is-open .primary-nav__list {
        flex-direction: column; align-items: stretch; gap: 0;
    }
    .primary-nav.is-open .primary-nav__link {
        min-height: 52px; border-bottom: 1px solid var(--border); width: 100%;
    }
    .primary-nav.is-open .primary-nav__actions {
        flex-direction: column; margin-top: var(--space-md);
    }
    .primary-nav.is-open .btn { width: 100%; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--card); border-top: 2px solid transparent;
    background-image: linear-gradient(var(--card), var(--card)), var(--gold-line);
    background-size: 100% 100%, 100% 2px; background-repeat: no-repeat;
    background-position: 0 0, 0 0;
    margin-top: var(--space-2xl);
}
.site-footer__inner {
    max-width: var(--maxw); margin: 0 auto; padding: var(--space-xl) var(--space-sm) var(--space-md);
    display: grid; grid-template-columns: 1fr; gap: var(--space-lg);
}
.site-footer__brand { font-size: 24px; display: inline-block; margin-bottom: var(--space-xs); color: var(--foreground); }
.site-footer__tag { color: var(--muted-foreground); font-size: 15px; max-width: 42ch; }
.site-footer__heading { font-size: 18px; color: var(--accent); margin-bottom: var(--space-sm); }
.site-footer__links, .site-footer__payments {
    list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-xs);
}
.site-footer__links a { color: var(--foreground); }
.site-footer__links a:hover { color: var(--accent); }
.site-footer__payments { flex-direction: row; flex-wrap: wrap; gap: var(--space-xs) var(--space-sm); }
.site-footer__payments li {
    padding: 6px 12px; border: 1px solid var(--border); border-radius: var(--radius);
    font-size: 14px; color: var(--muted-foreground);
}
.site-footer__legal {
    max-width: var(--maxw); margin: 0 auto; padding: var(--space-md) var(--space-sm) var(--space-xl);
    border-top: 1px solid var(--border); color: var(--muted-foreground); font-size: 14px;
}
.site-footer__legal p { margin: 0 0 var(--space-xs); }
.site-footer__badge {
    display: inline-block; background: var(--accent); color: var(--accent-foreground);
    font-weight: 700; padding: 2px 8px; border-radius: 50px; margin-right: 6px; font-size: 13px;
}
@media (min-width: 768px) {
    .site-footer__inner { grid-template-columns: 2fr 1fr 1fr; }
    .site-footer__legal, .site-footer__inner { padding-left: var(--space-lg); padding-right: var(--space-lg); }
}

/* ============================================
   HERO
   .hero - full-bleed banner with deco frame
   ============================================ */
.hero {
    position: relative; overflow: clip;
    padding: var(--space-xl) 0;
    background:
        linear-gradient(180deg, rgba(10,9,8,0.55), rgba(10,9,8,0.85)),
        var(--card);
    background-size: cover; background-position: center;
    border-bottom: 2px solid transparent;
}
.hero__bg {
    position: absolute; inset: 0; z-index: 0; object-fit: cover; width: 100%; height: 100%;
}
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, rgba(10,9,8,0.45) 0%, rgba(10,9,8,0.82) 100%);
}
.hero__inner {
    position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
    padding: 0 var(--space-sm); text-align: center;
}
.hero__frame {
    display: inline-block; padding: var(--space-lg) var(--space-md);
    border: 1px solid rgba(245,166,35,0.5);
    background: rgba(10,9,8,0.35);
    max-width: 760px;
}
.hero h1, .hero h2 { color: #f5ecd8; }
.hero__title { font-size: 30px; margin-bottom: var(--space-sm); }
.hero__lead { color: #e7dcc4; font-size: 18px; max-width: 55ch; margin: 0 auto var(--space-md); }
.hero__badge {
    display: inline-block; margin: 0 auto var(--space-md); padding: 10px 20px;
    font-family: var(--font-display); font-size: 22px; letter-spacing: 0.05em;
    border: 1px solid rgba(245,166,35,0.6); border-radius: var(--radius);
    background: rgba(245,166,35,0.12);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; margin-top: var(--space-sm); }
@media (min-width: 1024px) {
    .hero { padding: var(--space-2xl) 0; }
    .hero__title { font-size: 46px; }
    .hero__frame { padding: var(--space-xl) var(--space-lg); }
}

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

.game-card {
    min-width: 0; display: flex; flex-direction: column; overflow: hidden;
    background: var(--card); padding: var(--space-md);
    border: 1px solid rgba(245,166,35,0.35);
    border-radius: var(--radius);
    transition: transform 250ms var(--ease), box-shadow 250ms var(--ease), border-color 250ms var(--ease);
}
.game-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 34px rgba(245,166,35,0.22);
    border-color: rgba(245,166,35,0.7);
}
.game-card__media {
    margin: calc(-1 * var(--space-md)) calc(-1 * var(--space-md)) var(--space-md);
    aspect-ratio: 3/2; overflow: hidden; background: var(--secondary);
}
.game-card__media img { width: 100%; height: 100%; object-fit: cover; }
.game-card__media--iso {
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 16/9; padding: var(--space-md); background: var(--secondary);
}
.game-card__media--iso img { width: auto; max-height: 100%; object-fit: contain; }
.game-card__title { font-size: 22px; letter-spacing: 0.06em; margin-bottom: 6px; color: var(--foreground); }
.game-card__detail { color: var(--muted-foreground); font-size: 15px; margin: 0; }

/* ============================================
   TRUST BADGE ROW (component)
   ============================================ */
.trust-row {
    background: var(--background); padding: var(--space-lg) var(--space-sm);
    background-image: repeating-linear-gradient(45deg, rgba(245,166,35,0.05) 0 2px, transparent 2px 22px);
    text-align: center;
}
.trust-row__heading { max-width: 720px; margin: 0 auto var(--space-lg); color: var(--foreground); }
.trust-row__list {
    list-style: none; margin: 0 auto; padding: 0; max-width: var(--maxw);
    display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--space-md);
}
.trust-row__item {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: var(--space-sm); position: relative;
}
.trust-row__icon { font-size: 28px; color: var(--accent); line-height: 1; }
.trust-row__label { color: var(--foreground); font-size: 14px; font-weight: 500; }
@media (min-width: 1024px) {
    .trust-row__list { grid-template-columns: repeat(5, minmax(0,1fr)); }
    .trust-row__item:not(:last-child)::after {
        content: ""; position: absolute; right: calc(-1 * var(--space-md) / 2); top: 20%; bottom: 20%;
        width: 1px; background: rgba(245,166,35,0.4);
    }
}

/* ============================================
   BONUS HIGHLIGHT BLOCK (component)
   ============================================ */
.bonus-block {
    position: relative; overflow: clip; background: var(--background);
    border-top: 2px solid transparent; border-bottom: 2px solid transparent;
    background-image: linear-gradient(var(--background), var(--background)), var(--gold-line), var(--gold-line);
    background-size: 100% 100%, 100% 2px, 100% 2px; background-repeat: no-repeat;
    background-position: 0 0, 0 0, 0 100%;
    padding: var(--space-lg) 0;
}
.bonus-block__inner {
    max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space-sm);
    display: grid; grid-template-columns: minmax(0,1fr); gap: var(--space-lg); align-items: center;
}
.bonus-block__value {
    font-family: var(--font-display); font-size: 36px; letter-spacing: 0.06em;
    margin: 0 0 var(--space-xs);
    background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bonus-block__heading { font-size: 28px; color: var(--foreground); }
.bonus-block__body { color: var(--foreground); max-width: 52ch; }
.bonus-block__micro { color: var(--muted-foreground); font-size: 13px; margin: var(--space-sm) 0 0; }
.bonus-block__media--iso { display: flex; align-items: center; justify-content: center; }
.bonus-block__media--iso img { object-fit: contain; max-height: 480px; }
@media (min-width: 1024px) {
    .bonus-block__inner { grid-template-columns: 1.3fr 1fr; padding: 0 var(--space-lg); }
    .bonus-block__value { font-size: 44px; }
    .bonus-block__heading { font-size: 34px; }
}

/* ============================================
   FAQ ACCORDION (component)
   ============================================ */
.faq { max-width: var(--maxw-text); margin: 0 auto; padding: 0 var(--space-sm); }
.faq__heading { text-align: center; margin-bottom: var(--space-lg); color: var(--foreground); }
.faq__item {
    background: var(--card); border-bottom: 1px solid rgba(245,166,35,0.35);
    border-radius: var(--radius);
}
.faq__question {
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
    min-height: 56px; padding: var(--space-sm) var(--space-md); cursor: pointer;
    font-family: var(--font-display); font-size: 19px; letter-spacing: 0.03em;
    color: var(--foreground); list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__toggle {
    flex-shrink: 0; font-size: 26px; color: var(--accent); line-height: 1;
    transition: transform 250ms var(--ease);
}
.faq__item[open] .faq__toggle { transform: rotate(45deg); }
.faq__answer { padding: 0 var(--space-md) var(--space-md); }
.faq__answer p { margin: 0; color: var(--foreground); line-height: 1.6; }

/* ============================================
   HOW-TO STEPS (component)
   ============================================ */
.how-to { max-width: var(--maxw-text); margin: 0 auto; padding: 0 var(--space-sm); }
.how-to__heading { text-align: center; margin-bottom: var(--space-lg); }
.how-to__list { list-style: none; counter-reset: step; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-md); }
.how-to__step {
    display: flex; gap: var(--space-md); align-items: flex-start;
    padding: var(--space-md); background: var(--card);
    border-left: 2px solid rgba(245,166,35,0.5); border-radius: var(--radius);
}
.how-to__num {
    flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
    width: 54px; height: 54px; font-family: var(--font-display); font-size: 28px;
    color: var(--accent); border: 1px solid rgba(245,166,35,0.5); border-radius: var(--radius);
    background: repeating-linear-gradient(45deg, rgba(245,166,35,0.08) 0 4px, transparent 4px 10px);
}
.how-to__title { font-size: 20px; margin-bottom: 4px; }
.how-to__desc { color: var(--muted-foreground); margin: 0; }

/* ============================================
   ENGAGEMENT / CRO PATTERNS
   .callout - tip/warning box
   .summary-box - TL;DR
   .stat-highlight - big number
   .pull-quote - oversized quote
   .cta-band - full-width conversion band
   .terms-table - transparent terms
   ============================================ */
.prose { max-width: var(--maxw-text); margin: 0 auto; }
.prose p, .prose li { max-width: 70ch; }
.prose h2 { margin-top: var(--space-lg); }

.summary-box {
    background: var(--secondary); border: 1px solid var(--border);
    border-left: 3px solid var(--primary); border-radius: var(--radius);
    padding: var(--space-md); margin: 0 0 var(--space-lg);
}
.summary-box__title { font-family: var(--font-display); color: var(--primary); font-size: 18px; margin-bottom: var(--space-xs); }
.summary-box p { margin: 0; }

.callout {
    background: var(--card); border: 1px solid rgba(245,166,35,0.4);
    border-left: 3px solid var(--accent); border-radius: var(--radius);
    padding: var(--space-md); margin: var(--space-md) 0;
}
.callout__title { font-family: var(--font-display); color: var(--accent); font-size: 18px; margin-bottom: var(--space-xs); }
.callout p { margin: 0; }

.stat-highlight {
    text-align: center; padding: var(--space-lg) var(--space-md);
    background: var(--card); border: 1px solid rgba(245,166,35,0.35); border-radius: var(--radius);
}
.stat-highlight__num {
    display: block; font-family: var(--font-display); font-size: 48px; letter-spacing: 0.04em;
    background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-highlight__label { color: var(--muted-foreground); font-size: 15px; }
.stat-highlight::after {
    content: ""; display: block; width: 60px; height: 2px; margin: var(--space-sm) auto 0; background: var(--primary);
}

.pull-quote {
    font-family: var(--font-display); font-size: 26px; line-height: 1.35; letter-spacing: 0.03em;
    color: var(--foreground); border-left: 3px solid var(--accent);
    padding: var(--space-sm) var(--space-md); margin: var(--space-lg) 0;
}
.pull-quote cite { display: block; font-family: var(--font-body); font-size: 15px; font-style: normal; color: var(--muted-foreground); margin-top: var(--space-xs); }

.cta-band {
    text-align: center; padding: var(--space-xl) var(--space-sm);
    background:
        linear-gradient(rgba(10,9,8,0.6), rgba(10,9,8,0.6)),
        repeating-linear-gradient(45deg, rgba(245,166,35,0.08) 0 3px, transparent 3px 20px),
        var(--card);
    border-top: 2px solid transparent; border-bottom: 2px solid transparent;
}
.cta-band__inner { max-width: 760px; margin: 0 auto; }
.cta-band h2 { color: #f5ecd8; }
.cta-band p { color: #e7dcc4; }
.cta-band__micro { font-size: 13px; margin-top: var(--space-sm); }

.terms-table { width: 100%; border-collapse: collapse; margin: var(--space-md) 0; }
.terms-table th, .terms-table td {
    text-align: left; padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--border);
}
.terms-table thead th {
    font-family: var(--font-display); color: var(--accent); letter-spacing: 0.04em;
    border-bottom: 2px solid rgba(245,166,35,0.4);
}
.terms-table tbody td { color: var(--foreground); }
.terms-table td:first-child { color: var(--muted-foreground); }

/* Provider / payment logo strip */
.logo-strip {
    display: flex; flex-wrap: wrap; gap: var(--space-md); justify-content: center; align-items: center;
}
.logo-strip__item {
    display: flex; align-items: center; justify-content: center;
    padding: var(--space-sm) var(--space-md); min-height: 72px; min-width: 120px;
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
}
.logo-strip__item img { max-height: 48px; width: auto; object-fit: contain; }

/* Sitemap page list */
.sitemap-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-md); }
.sitemap-list__item {
    padding: var(--space-md); background: var(--card);
    border: 1px solid rgba(245,166,35,0.3); border-left: 3px solid var(--accent); border-radius: var(--radius);
}
.sitemap-list__item h2 { font-size: 22px; margin-bottom: var(--space-xs); }
.sitemap-list__item p { margin: 0; color: var(--muted-foreground); }

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

/* No-JS / reveal fallback: never keep essential content hidden */
.no-js .animate-on-scroll,
html:not(.js) .animate-on-scroll {
    opacity: 1; transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .btn:hover, .game-card:hover { transform: none; }
}
