/* ============================================
   ICE FISHING CASINO - DESIGN SYSTEM
   Retro-Scandinavian 1960s poster aesthetic
   Arctic amber + icy blue on deep frost navy
   ============================================ */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background-image:
        radial-gradient(900px 500px at 85% -10%, rgba(0,207,255,.08), transparent 60%),
        radial-gradient(700px 400px at 10% 100%, rgba(200,134,10,.07), transparent 60%);
    background-attachment: fixed;
}

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

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

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

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

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

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

section { overflow: clip; }

a { color: var(--primary); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--amber-glow); }

/* ============================================
   TYPOGRAPHY
   Space Grotesk display / DM Sans body / Fraunces serif
   ============================================ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 var(--space-md);
    color: var(--foreground);
}

h1 { font-size: clamp(28px, 5vw + 8px, 44px); font-weight: 700; }
h2 { font-size: clamp(24px, 3.2vw + 6px, 34px); font-weight: 600; }
h3 { font-size: clamp(20px, 1.6vw + 10px, 24px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

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

.eyebrow {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber-glow);
    margin: 0 0 var(--space-md);
}

blockquote, .pullquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(20px, 1.5vw + 14px, 28px);
    line-height: 1.4;
    color: var(--birch-cream);
    border-left: 3px solid var(--amber);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-xl) 0;
    background: linear-gradient(90deg, rgba(200,134,10,.08), transparent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
blockquote cite, .pullquote cite {
    display: block;
    margin-top: var(--space-sm);
    font-style: normal;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
}

.tldr {
    background: linear-gradient(135deg, rgba(0,207,255,.08), rgba(200,134,10,.06));
    border: 1px solid var(--border);
    border-left: 4px solid var(--ice);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-xl) 0;
}
.tldr strong { color: var(--amber-glow); font-family: var(--font-display); letter-spacing: .05em; text-transform: uppercase; font-size: 13px; display: block; margin-bottom: 8px; }

.callout {
    background: var(--frost-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--amber);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-xl) 0;
}
.callout--info { border-left-color: var(--ice); }
.callout--warn { border-left-color: var(--cranberry); }

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */
.container {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 1024px) {
    .container { padding: 0 32px; }
}

.section { padding: 56px 0; }
@media (min-width: 1024px) {
    .section { padding: 96px 0; }
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--amber);
    color: var(--frost);
    padding: 10px 16px;
    font-weight: 700;
    z-index: 2000;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ============================================
   BUTTONS
   Amber primary, ice ghost, pill shape
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform var(--tr), box-shadow var(--tr), background var(--tr), color var(--tr), border-color var(--tr);
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--amber-glow), var(--amber));
    color: var(--frost);
    box-shadow: 0 8px 24px -10px rgba(228,168,39,.6), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px -10px rgba(228,168,39,.75), inset 0 1px 0 rgba(255,255,255,.35);
    color: var(--frost);
}
.btn-ghost {
    background: transparent;
    color: var(--birch-cream);
    border-color: rgba(0,207,255,.45);
}
.btn-ghost:hover {
    border-color: var(--ice);
    color: var(--ice);
    background: rgba(0,207,255,.06);
}
.btn-lg { min-height: 54px; padding: 14px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============================================
   HEADER & NAV
   Fixed frosted nav with hamburger drawer
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10,22,40,.88);
    border-bottom: 1px solid rgba(0,207,255,.18);
}
@media (min-width: 900px) {
    .site-header {
        backdrop-filter: saturate(1.4) blur(12px);
        -webkit-backdrop-filter: saturate(1.4) blur(12px);
    }
}
.site-header__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 20px;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
@media (min-width: 1024px) {
    .site-header__inner { padding: 0 32px; }
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--birch-cream);
}
.brand__mark { display: inline-flex; filter: drop-shadow(0 0 8px rgba(0,207,255,.35)); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: .01em;
}
.brand__sub {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: .24em;
    color: var(--amber-glow);
    text-transform: uppercase;
    margin-top: 2px;
}

/* Desktop nav */
.primary-nav { display: none; }
.primary-nav__list {
    list-style: none;
    display: flex;
    gap: 6px;
    margin: 0;
    padding: 0;
}
.primary-nav__list a {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--birch-cream);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 15px;
}
.primary-nav__list a:hover {
    color: var(--ice);
    background: rgba(0,207,255,.08);
}
.primary-nav__cta { display: flex; gap: 10px; align-items: center; }
.primary-nav__cta .btn { min-height: 42px; padding: 8px 18px; font-size: 14px; }

@media (min-width: 900px) {
    .primary-nav {
        display: flex;
        align-items: center;
        gap: 18px;
        flex: 1;
        justify-content: flex-end;
    }
}

/* Theme Toggle - Aurora (cold ice) / Lodge (warm cabin) */
[data-theme="lodge"] {
    --background: #120e1f;
    --card: #1c1830;
    --frost: #120e1f;
    --frost-card: #1c1830;
    --frost-elev: #261f3c;
    --muted: #261f3c;
    --border: #3a2f4f;
    --primary: #e4a827;
    --ring: #e4a827;
    --ice: #ffb347;
    --ice-deep: #c8860a;
    --amber-glow: #ffd37a;
}
[data-theme="lodge"] body {
    background-image:
        radial-gradient(900px 500px at 85% -10%, rgba(228,168,39,.14), transparent 60%),
        radial-gradient(700px 400px at 10% 100%, rgba(185,28,60,.08), transparent 60%);
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(0,207,255,.3);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    color: var(--birch-cream);
    font-size: 16px;
    line-height: 1;
    transition: border-color var(--tr), color var(--tr), background var(--tr), transform var(--tr);
    margin-right: 4px;
    flex-shrink: 0;
}
.theme-toggle:hover {
    border-color: var(--amber-glow);
    color: var(--amber-glow);
    background: rgba(228,168,39,.08);
    transform: rotate(18deg);
}
.theme-toggle__icon { display: none; }
[data-theme="aurora"] .theme-toggle__icon--lodge { display: inline; }
[data-theme="lodge"] .theme-toggle__icon--aurora { display: inline; }
.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (min-width: 900px) {
    .theme-toggle { margin-left: 6px; margin-right: 0; }
}

/* Hamburger */
.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(0,207,255,.3);
    border-radius: 10px;
    cursor: pointer;
    padding: 0 10px;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--ice);
    border-radius: 2px;
    transition: transform var(--tr), opacity var(--tr);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

/* Mobile drawer */
@media (max-width: 899px) {
    .primary-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        background: var(--frost);
        background-image:
            radial-gradient(600px 400px at 50% 100%, rgba(200,134,10,.12), transparent 60%),
            radial-gradient(500px 300px at 0% 0%, rgba(0,207,255,.1), transparent 60%);
        border-top: 1px solid var(--border);
        overflow-y: auto;
        z-index: 999;
        gap: 12px;
    }
    .primary-nav.is-open { display: flex; }
    .primary-nav__list {
        flex-direction: column;
        gap: 2px;
    }
    .primary-nav__list a {
        min-height: 52px;
        padding: 14px 16px;
        font-size: 17px;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }
    .primary-nav__cta {
        flex-direction: column;
        gap: 10px;
        margin-top: 16px;
    }
    .primary-nav__cta .btn {
        width: 100%;
        min-height: 52px;
        font-size: 16px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, var(--frost) 0%, #050e1b 100%);
    border-top: 1px solid var(--border);
    padding: 56px 20px 24px;
    margin-top: 80px;
}
.site-footer__grid {
    max-width: var(--content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 768px) {
    .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
}
.site-footer__col h4,
.site-footer__heading {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--amber-glow);
    margin: 0 0 14px;
}
.site-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.site-footer__col a {
    color: var(--muted-foreground);
    font-size: 15px;
}
.site-footer__col a:hover { color: var(--ice); }
.site-footer__col li { font-size: 15px; color: var(--muted-foreground); }
.site-footer__tag { color: var(--muted-foreground); font-size: 15px; margin: 14px 0 16px; }
.site-footer__legal-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; }

.mini-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--frost-card);
    color: var(--ice);
}
.mini-badge--amber { color: var(--amber-glow); border-color: rgba(200,134,10,.45); }

.site-footer__bottom {
    max-width: var(--content-max);
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted-foreground);
    text-align: center;
}

/* ============================================
   EYEBROW / CHIPS / CHECKLISTS
   Reusable inline decoration
   ============================================ */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md);
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-body);
    font-size: 12px;
    padding: 6px 10px;
    background: rgba(245,234,209,.08);
    border: 1px solid rgba(245,234,209,.14);
    border-radius: 999px;
    color: var(--birch-cream);
}
.chip span { color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .08em; font-size: 10px; }
.chip strong { color: var(--amber-glow); }

.check-list { list-style: none; margin: 0 0 var(--space-md); padding: 0; }
.check-list li {
    position: relative;
    padding: 4px 0 4px 28px;
    font-size: 15px;
    color: var(--birch-cream);
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 18px; height: 18px;
    background: radial-gradient(circle at 30% 30%, var(--ice), transparent 70%);
    border: 1.5px solid var(--ice);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-35deg);
}

/* ============================================
   GAME CARD
   Vintage poster frame with amber glow
   ============================================ */
.game-card {
    position: relative;
    background: linear-gradient(180deg, var(--frost-card), var(--frost-elev));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.game-card:hover {
    transform: translateY(-3px) scale(1.015);
    border-color: rgba(228,168,39,.5);
    box-shadow: var(--shadow-amber);
}
.game-card__frame {
    position: relative;
    aspect-ratio: 3/2;
    background: var(--frost);
    border-bottom: 1px solid rgba(0,207,255,.18);
    overflow: hidden;
}
.game-card__frame::after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(228,168,39,.25);
    border-radius: 12px;
    pointer-events: none;
    box-shadow: 0 0 24px rgba(228,168,39,.15) inset;
}
.game-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.game-card__mascot {
    position: absolute;
    top: 10px; right: 10px;
    width: 42px; height: 42px;
    background: radial-gradient(circle at 35% 35%, var(--cranberry), #4a0613 80%);
    border: 2px solid var(--amber);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-20deg);
    z-index: 2;
    box-shadow: 0 4px 14px rgba(0,0,0,.5);
}
.game-card__mascot--lil-blues { background: radial-gradient(circle at 35% 35%, #4fb8ff, #0f3a66 80%); border-color: var(--ice); }
.game-card__mascot--big-oranges { background: radial-gradient(circle at 35% 35%, #ffa14d, #7a3400 80%); border-color: var(--amber); }

.game-card__crown {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--amber);
    color: var(--frost);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: .1em;
    z-index: 2;
}
.game-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
@media (min-width: 1024px) { .game-card__body { padding: 28px; } }
.game-card__title { font-size: 20px; margin: 0; }
.game-card__desc { color: var(--muted-foreground); font-size: 14px; margin: 0 0 4px; }

.game-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 640px) { .game-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .game-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px; } }
.game-grid--4 { }
@media (min-width: 1024px) { .game-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); } }

/* ============================================
   BONUS CARD
   Mascot top band, huge amber headline
   ============================================ */
.bonus-card {
    position: relative;
    background: var(--frost-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.bonus-card:hover {
    transform: translateY(-3px);
    border-color: rgba(228,168,39,.5);
    box-shadow: var(--shadow-amber);
}
.bonus-card__top {
    position: relative;
    padding: 24px 20px 16px;
    background:
        radial-gradient(circle at 50% 120%, rgba(0,207,255,.25), transparent 60%),
        linear-gradient(180deg, rgba(0,207,255,.14), rgba(10,22,40,0) 80%);
    border-bottom: 1px solid rgba(0,207,255,.2);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.bonus-card__mascot {
    width: 84px; height: 84px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-15deg);
    animation: bob 3.6s var(--ease) infinite;
    border: 2px solid var(--amber);
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.bonus-card__mascot--huge-red { background: radial-gradient(circle at 35% 35%, #ff3856, #4a0613 80%); }
.bonus-card__mascot--lil-blues { background: radial-gradient(circle at 35% 35%, #4fb8ff, #0f3a66 80%); border-color: var(--ice); }
.bonus-card__mascot--big-oranges { background: radial-gradient(circle at 35% 35%, #ffa14d, #7a3400 80%); }

.bonus-card--ice .bonus-card__top { background: radial-gradient(circle at 50% 120%, rgba(0,207,255,.35), transparent 60%), linear-gradient(180deg, rgba(0,207,255,.2), transparent 80%); }
.bonus-card--amber .bonus-card__top { background: radial-gradient(circle at 50% 120%, rgba(228,168,39,.35), transparent 60%), linear-gradient(180deg, rgba(200,134,10,.2), transparent 80%); }
.bonus-card--red .bonus-card__top { background: radial-gradient(circle at 50% 120%, rgba(225,29,72,.32), transparent 60%), linear-gradient(180deg, rgba(185,28,60,.18), transparent 80%); }

.bonus-card__body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
@media (min-width: 1024px) { .bonus-card__body { padding: 28px; } }
.bonus-card__headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 44px);
    color: var(--amber-glow);
    line-height: 1;
    margin: 0;
    letter-spacing: -0.02em;
}
.bonus-card__desc { color: var(--muted-foreground); font-size: 15px; margin: 0; }
.bonus-card__legal { font-size: 11px; color: var(--muted-foreground); text-align: center; margin: 8px 0 0; }

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) { .bonus-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px; } }

@keyframes bob {
    0%, 100% { transform: rotate(-15deg) translateY(0); }
    50% { transform: rotate(-15deg) translateY(-6px); }
}

/* ============================================
   CTA BANNER
   Full-bleed amber glow with mascot breakout
   ============================================ */
.cta-banner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background:
        radial-gradient(700px 400px at 90% 50%, rgba(228,168,39,.2), transparent 70%),
        radial-gradient(500px 300px at 10% 100%, rgba(0,207,255,.18), transparent 70%),
        linear-gradient(135deg, #0d1b30, #0a1628);
    border: 1px solid var(--border);
    margin: 40px 0;
}
.cta-banner__inner {
    position: relative;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 900px) {
    .cta-banner__inner { grid-template-columns: 1.4fr 1fr; padding: 64px; align-items: center; }
}
.cta-banner__headline {
    font-size: clamp(26px, 3.2vw + 8px, 40px);
    margin: 0 0 12px;
    color: var(--birch-cream);
}
.cta-banner__sub { color: var(--muted-foreground); font-size: 17px; margin: 0 0 20px; max-width: 560px; }
.cta-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cta-banner__actions .btn { min-height: 52px; }
@media (min-width: 640px) { .cta-banner__actions { flex-direction: row; flex-wrap: wrap; } }
.cta-banner__legal { font-size: 12px; color: var(--muted-foreground); margin: 16px 0 0; }

.cta-banner__mascot {
    position: relative;
    min-height: 180px;
    background:
        radial-gradient(circle at 50% 60%, rgba(225,29,72,.18), transparent 65%),
        radial-gradient(circle at 50% 40%, rgba(228,168,39,.18), transparent 65%);
    border: 1.5px dashed rgba(228,168,39,.35);
    border-radius: var(--radius-lg);
}
.cta-banner__mascot::before {
    content: "🐟";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: clamp(80px, 14vw, 140px);
    filter: drop-shadow(0 10px 28px rgba(225,29,72,.45));
    animation: bob 3.6s var(--ease) infinite;
}
.cta-banner__snow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.5), transparent 60%),
        radial-gradient(2px 2px at 70% 70%, rgba(255,255,255,.4), transparent 60%),
        radial-gradient(1.5px 1.5px at 40% 80%, rgba(255,255,255,.35), transparent 60%),
        radial-gradient(1.5px 1.5px at 85% 20%, rgba(255,255,255,.4), transparent 60%),
        radial-gradient(1px 1px at 55% 50%, rgba(255,255,255,.3), transparent 60%);
    background-size: 800px 500px;
    animation: snowdrift 18s linear infinite;
}
@keyframes snowdrift {
    0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 200px 400px, -200px 400px, 150px 400px, -100px 400px, 0 400px; }
}

/* ============================================
   FAQ ACCORDION
   details/summary with amber left accent
   ============================================ */
.faq { margin: 40px 0; }
.faq__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.faq__icon {
    width: 44px; height: 44px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 35% 35%, #ff3856, #4a0613 80%);
    border: 2px solid var(--amber);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-20deg);
    font-size: 20px;
}
.faq__title { margin: 0; }
.faq__list {
    background: linear-gradient(180deg, var(--frost-card), var(--frost-elev));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.faq__item {
    border-bottom: 1px solid var(--border);
    border-left: 3px solid transparent;
    transition: border-color var(--tr), background var(--tr);
}
.faq__item:last-child { border-bottom: none; }
.faq__item[open] {
    border-left-color: var(--amber);
    background: rgba(228,168,39,.04);
}
.faq__item > summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    color: var(--birch-cream);
    min-height: 48px;
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__plus {
    position: relative;
    flex-shrink: 0;
    width: 22px; height: 22px;
    border: 1.5px solid var(--ice);
    border-radius: 50%;
}
.faq__plus::before, .faq__plus::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background: var(--ice);
    transition: transform var(--tr);
}
.faq__plus::before { width: 10px; height: 2px; }
.faq__plus::after { width: 2px; height: 10px; }
.faq__item[open] .faq__plus::after { transform: rotate(90deg); }
.faq__answer {
    padding: 0 24px 24px;
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.7;
    border-top: 1px solid rgba(0,207,255,.15);
    padding-top: 18px;
    margin-top: 0;
}
.faq__answer p { margin: 0 0 12px; }
.faq__answer p:last-child { margin-bottom: 0; }

/* ============================================
   COMPARISON TABLE
   Amber-highlighted recommended column
   ============================================ */
.cmp { margin: 40px 0; }
.cmp__wrap {
    max-width: 100%;
    overflow-x: auto;
    background: linear-gradient(180deg, var(--frost-card), var(--frost-elev));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    -webkit-overflow-scrolling: touch;
}
.cmp__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
    color: var(--birch-cream);
}
.cmp__table thead th {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--amber-glow);
    padding: 16px 14px;
    text-align: left;
    background: rgba(0,0,0,.2);
    border-bottom: 1px solid rgba(0,207,255,.2);
    white-space: nowrap;
}
.cmp__table tbody td {
    padding: 14px;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,207,255,.1);
    vertical-align: top;
}
.cmp__table tbody tr:nth-child(even) td { background: rgba(0,207,255,.03); }
.cmp__table tbody tr:last-child td { border-bottom: none; }
.cmp__rowhead {
    font-weight: 600;
    color: var(--birch-cream);
    font-family: var(--font-display);
    position: sticky;
    left: 0;
    background: var(--frost-card) !important;
    z-index: 1;
}
.cmp__table .is-recommended {
    background: linear-gradient(180deg, rgba(228,168,39,.14), rgba(228,168,39,.06)) !important;
    color: var(--amber-glow);
    font-weight: 600;
}
.cmp__table thead th.is-recommended {
    box-shadow: inset 0 -2px 0 var(--amber-glow);
}
.cmp__crown {
    display: inline-block;
    color: var(--amber-glow);
    margin-right: 6px;
    font-size: 14px;
}
.cmp__source {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 13px;
    color: var(--muted-foreground);
    text-align: right;
    margin: 8px 4px 0;
}

/* ============================================
   STAT HIGHLIGHT
   Large amber numbers with count-up
   ============================================ */
.stats {
    background:
        linear-gradient(180deg, rgba(0,207,255,.04), transparent 40%),
        var(--frost-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    margin: 40px 0;
}
@media (min-width: 1024px) { .stats { padding: 48px 40px; } }
.stats__title { text-align: center; margin-bottom: 28px; }
.stats__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 20px;
}
@media (min-width: 900px) {
    .stats__grid {
        grid-template-columns: repeat(4, minmax(0,1fr));
        gap: 0;
    }
    .stats__item + .stats__item { border-left: 1px solid rgba(0,207,255,.2); }
}
.stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
    gap: 6px;
}
.stats__icon {
    font-size: 22px;
    color: var(--ice);
    filter: drop-shadow(0 0 6px rgba(0,207,255,.4));
    margin-bottom: 4px;
}
.stats__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 3vw + 10px, 44px);
    color: var(--amber-glow);
    letter-spacing: -0.02em;
    line-height: 1;
}
.stats__label {
    font-size: 14px;
    color: var(--birch-cream);
    font-weight: 500;
}
.stats__source {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 12px;
    color: var(--muted-foreground);
}

/* ============================================
   TRUST BADGE ROW
   Licensing and payment badges
   ============================================ */
.trust {
    padding: 28px 0;
    margin: 32px 0;
    border-top: 1px solid rgba(0,207,255,.18);
    border-bottom: 1px solid rgba(0,207,255,.18);
    background: linear-gradient(180deg, rgba(245,234,209,.02), transparent);
}
.trust__eyebrow { text-align: center; }
.trust__row {
    list-style: none;
    margin: 0;
    padding: 0 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.trust__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 18px;
    background: var(--frost-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .1em;
    color: var(--ice);
}
.trust__badge--pulse { animation: pulseGlow 4s ease-in-out infinite; }
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(228,168,39,0); border-color: var(--border); }
    50% { box-shadow: 0 0 0 6px rgba(228,168,39,.08); border-color: rgba(228,168,39,.45); }
}

/* ============================================
   PROSE - SEO text sections
   ============================================ */
.prose {
    max-width: 820px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: var(--birch-cream);
}
.prose h2 { margin-top: 48px; }
.prose h3 { margin-top: 32px; color: var(--ice); }
.prose ul, .prose ol { margin: 0 0 var(--space-lg) var(--space-md); padding-left: var(--space-lg); }
.prose ul li, .prose ol li { margin-bottom: 8px; }
.prose a { color: var(--amber-glow); text-decoration: underline; text-decoration-color: rgba(228,168,39,.35); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--amber-glow); }
.prose strong { color: var(--snow); }
.prose table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.prose th, .prose td { padding: 10px 12px; border-bottom: 1px solid var(--border); text-align: left; }
.prose th { font-family: var(--font-display); color: var(--amber-glow); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }

/* ============================================
   HERO - Shared base for page headers
   ============================================ */
.hero {
    position: relative;
    padding: 40px 0 32px;
    overflow: clip;
}
@media (min-width: 1024px) { .hero { padding: 64px 0 48px; } }
.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.2fr 1fr; gap: 48px; } }
.hero__title {
    font-size: clamp(32px, 4.5vw + 8px, 54px);
    line-height: 1.05;
    margin: 12px 0 16px;
}
.hero__lead {
    font-size: clamp(16px, .6vw + 14px, 19px);
    color: var(--muted-foreground);
    max-width: 60ch;
    margin: 0 0 24px;
}
.hero__cta { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 480px) { .hero__cta { flex-direction: row; flex-wrap: wrap; } }
.hero__visual {
    position: relative;
    min-height: 320px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 50% 40%, rgba(228,168,39,.22), transparent 60%),
        radial-gradient(circle at 30% 80%, rgba(0,207,255,.2), transparent 65%),
        linear-gradient(180deg, #0e1e36, #060e1c);
    border: 1px solid var(--border);
    overflow: hidden;
}

/* ============================================
   THREE.JS CANVAS HOST
   ============================================ */
.wheel-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* ============================================
   SECTION TITLES (for pages)
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: 32px;
}
.section-title .eyebrow { margin-bottom: 8px; }
.section-title h2 { margin: 0; }
.section-title p { color: var(--muted-foreground); max-width: 640px; margin: 12px auto 0; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.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: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .bonus-card__mascot, .cta-banner__mascot::before, .cta-banner__snow, .trust__badge--pulse { animation: none; }
    html { scroll-behavior: auto; }
}

/* ============================================
   PAYMENT PILLS (horizontal scroll carousel)
   ============================================ */
.pay-pills {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 12px 2px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}
.pay-pills__item {
    scroll-snap-align: start;
    flex: 0 0 auto;
    background: var(--frost-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 20px;
    min-width: 180px;
    text-align: center;
}
.pay-pills__name {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ice);
    font-size: 15px;
}
.pay-pills__time {
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 4px;
    display: block;
}

/* ============================================
   NET.HTML - Redirect stub page
   ============================================ */
.redirect-stub {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 40px 20px;
    text-align: center;
    background:
        radial-gradient(600px 400px at 50% 30%, rgba(0,207,255,.12), transparent 65%),
        radial-gradient(500px 300px at 50% 80%, rgba(228,168,39,.08), transparent 65%),
        var(--frost);
    position: relative;
    overflow: hidden;
}
.redirect-stub__mascot {
    width: 140px; height: 140px;
    background: radial-gradient(circle at 35% 35%, #ff3856, #4a0613 80%);
    border: 3px solid var(--amber);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-15deg);
    animation: bob 3.6s var(--ease) infinite;
    box-shadow: 0 20px 60px rgba(225,29,72,.35);
}
.redirect-stub h1 {
    font-size: clamp(28px, 4vw + 10px, 44px);
    margin: 0;
}
.redirect-stub p {
    color: var(--muted-foreground);
    max-width: 520px;
    margin: 0 auto;
}
.redirect-stub__dots {
    display: inline-flex;
    gap: 8px;
    margin-top: 8px;
}
.redirect-stub__dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--ice);
    animation: blink 1.4s ease-in-out infinite;
}
.redirect-stub__dots span:nth-child(2) { animation-delay: .2s; }
.redirect-stub__dots span:nth-child(3) { animation-delay: .4s; }
@keyframes blink {
    0%, 80%, 100% { opacity: .25; transform: scale(.9); }
    40% { opacity: 1; transform: scale(1.1); }
}

/* ============================================
   HOMEPAGE - Hero visual composition
   ============================================ */
.hero--home .hero__visual {
    min-height: 380px;
    aspect-ratio: 1 / 1;
}
@media (min-width: 900px) {
    .hero--home .hero__visual { min-height: 520px; }
}
.hero__wheel-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: .35;
    pointer-events: none;
    mix-blend-mode: screen;
}
.hero__wheel-fallback img {
    width: 92%;
    height: 92%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(228,168,39,.35));
}
.hero__mascot {
    position: absolute;
    right: -6%;
    bottom: -4%;
    width: 62%;
    max-width: 340px;
    pointer-events: none;
    z-index: 3;
    animation: bob 4.4s var(--ease) infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
}
.hero__mascot img { width: 100%; height: auto; }
.hero__bullets { margin-top: 20px; }

@media (max-width: 640px) {
    .hero__mascot { right: -8%; bottom: -2%; width: 58%; }
}

.section--alt {
    background: linear-gradient(180deg, rgba(0,207,255,.03), transparent 40%);
}

/* ============================================
   Payment grid - mascot with intro
   ============================================ */
.pay-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 24px;
}
@media (min-width: 900px) {
    .pay-grid { grid-template-columns: 1.4fr 1fr; gap: 48px; }
}
.pay-grid__intro { }
.pay-grid__visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 280px;
    background:
        radial-gradient(circle at 50% 50%, rgba(228,168,39,.18), transparent 65%),
        radial-gradient(circle at 30% 80%, rgba(0,207,255,.14), transparent 70%);
    border-radius: var(--radius-xl);
    border: 1px dashed rgba(228,168,39,.25);
}
.pay-grid__visual img {
    max-width: 80%;
    height: auto;
    animation: bob 4.4s var(--ease) infinite;
    filter: drop-shadow(0 16px 32px rgba(225,29,72,.25));
}

/* ============================================
   SLOTS HERO POSTER (reel preview)
   ============================================ */
.hero--slots .hero__visual { min-height: 380px; }
@media (min-width: 900px) { .hero--slots .hero__visual { min-height: 480px; } }

.slots-hero-poster {
    position: absolute;
    inset: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: stretch;
    border: 2px solid rgba(228,168,39,.4);
    border-radius: var(--radius-lg);
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(10,22,40,.7), rgba(10,22,40,.85)),
        radial-gradient(circle at 30% 30%, rgba(0,207,255,.15), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(228,168,39,.18), transparent 60%);
    overflow: hidden;
}
.slots-hero-poster__reel {
    position: relative;
    background: linear-gradient(180deg, rgba(245,234,209,.06), rgba(10,22,40,.8));
    border: 1px solid rgba(0,207,255,.25);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 220px;
}
.slots-hero-poster__symbols {
    position: absolute;
    left: 0; right: 0; top: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px 0;
    font-size: clamp(28px, 3.6vw, 42px);
    text-align: center;
    animation: reelSpin 6s linear infinite;
}
.slots-hero-poster__symbols span {
    display: block;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(228,168,39,.4));
}
.slots-hero-poster__reel--2 .slots-hero-poster__symbols { animation-duration: 7.2s; animation-delay: -1.4s; }
.slots-hero-poster__reel--3 .slots-hero-poster__symbols { animation-duration: 8.4s; animation-delay: -2.8s; }
@keyframes reelSpin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
.slots-hero-poster__fish {
    position: absolute;
    width: 70px; height: 70px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-20deg);
    border: 2px solid var(--amber);
    animation: bob 4s var(--ease) infinite;
    box-shadow: 0 8px 24px rgba(0,0,0,.5);
    z-index: 3;
}
.slots-hero-poster__fish--blue {
    background: radial-gradient(circle at 35% 35%, #4fb8ff, #0f3a66 80%);
    border-color: var(--ice);
    bottom: -10px; left: -10px;
}
.slots-hero-poster__fish--orange {
    background: radial-gradient(circle at 35% 35%, #ffa14d, #7a3400 80%);
    top: -10px; right: -12px;
    animation-delay: -1.2s;
}
.slots-hero-poster__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(300px 150px at 50% 0%, rgba(228,168,39,.25), transparent 70%),
        radial-gradient(300px 150px at 50% 100%, rgba(0,207,255,.18), transparent 70%);
}

/* ============================================
   DROPS & WINS BANNER
   ============================================ */
.dw-banner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    background:
        radial-gradient(600px 400px at 80% 50%, rgba(228,168,39,.22), transparent 70%),
        radial-gradient(500px 300px at 10% 80%, rgba(0,207,255,.18), transparent 70%),
        linear-gradient(135deg, #0e1e36, #080f1f);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 24px;
    overflow: hidden;
}
@media (min-width: 900px) {
    .dw-banner { grid-template-columns: 1.4fr 1fr; padding: 56px; align-items: center; }
}
.dw-banner__headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(52px, 8vw, 96px);
    line-height: 1;
    margin: 8px 0 14px;
    background: linear-gradient(135deg, var(--amber-glow), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}
.dw-banner__sub {
    color: var(--muted-foreground);
    font-size: 16px;
    max-width: 520px;
    margin: 0 0 18px;
}
.dw-banner__visual {
    position: relative;
    min-height: 220px;
    border: 1.5px dashed rgba(228,168,39,.35);
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 50% 50%, rgba(228,168,39,.18), transparent 70%);
    overflow: hidden;
}
.dw-banner__trophy {
    position: absolute;
    inset: 0;
    display: block;
}
.dw-banner__trophy::before {
    content: "🏆";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: clamp(80px, 14vw, 140px);
    filter: drop-shadow(0 14px 28px rgba(228,168,39,.5));
    animation: bob 4s var(--ease) infinite;
}
.dw-banner__coin {
    position: absolute;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, var(--amber-glow), var(--amber) 80%);
    box-shadow: 0 0 12px rgba(228,168,39,.6);
    animation: coinFall 3.5s ease-in-out infinite;
}
.dw-banner__coin--1 { left: 15%; top: 20%; animation-delay: 0s; }
.dw-banner__coin--2 { left: 70%; top: 15%; animation-delay: -1.2s; width: 18px; height: 18px; }
.dw-banner__coin--3 { left: 40%; top: 70%; animation-delay: -2.3s; width: 20px; height: 20px; }
@keyframes coinFall {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(40px) rotate(360deg); opacity: 0; }
}

/* ============================================
   FOCUS STATES
   ============================================ */
:focus-visible {
    outline: 2px solid var(--ice);
    outline-offset: 3px;
    border-radius: 6px;
}