/* ============================================
   SLOTMAFIA CASINO - Design System
   Noir Mafia Aesthetic · Mobile-First · Dark-default with light variant
   ============================================ */

/* Light theme - warm parchment ivory variant for accessibility preference.
   Default site experience remains dark/noir; toggle persists per visitor. */
html[data-theme="light"] {
    --background: #f4ead0;
    --background-2: #ebdfb8;
    --foreground: #1a120c;
    --card: #fff7e0;
    --card-2: #f0e3b8;
    --card-foreground: #1a120c;
    --popover: #fff7e0;
    --popover-foreground: #1a120c;
    --primary: #8a0a1a;
    --primary-2: #c8102e;
    --primary-foreground: #fff8e7;
    --secondary: #8b6914;
    --secondary-2: #b8881f;
    --secondary-foreground: #fff8e7;
    --muted: #e6d8b0;
    --muted-foreground: #6b5836;
    --accent: #c95a13;
    --accent-foreground: #fff8e7;
    --burgundy: #4a0d14;
    --burgundy-2: #7a1f2b;
    --border: #c9b785;
    --border-gold: #8b6914;
    --input: #fff7e0;
    --ring: #8b6914;
}
html[data-theme="light"] body {
    background-image:
        radial-gradient(ellipse at 20% 10%, rgba(122,31,43,.10), transparent 55%),
        radial-gradient(ellipse at 80% 90%, rgba(139,105,20,.10), transparent 60%);
}
html[data-theme="light"] .site-header {
    background: rgba(244,234,208,.94);
    border-bottom-color: var(--border-gold);
}
@media (min-width: 1024px) {
    html[data-theme="light"] .site-header { background: rgba(244,234,208,.82); }
}
html[data-theme="light"] .nav-list a { color: var(--foreground); }
html[data-theme="light"] .site-footer {
    background: #ebdfb8;
    color: var(--muted-foreground);
}
html[data-theme="light"] .footer-bottom { color: var(--foreground); }
html[data-theme="light"] .gold-text,
html[data-theme="light"] .stat-number,
html[data-theme="light"] .bonus-card-amount,
html[data-theme="light"] .brand-name-top {
    background: linear-gradient(180deg, #b8881f 0%, #8b6914 50%, #5a4308 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
html[data-theme="light"] .game-card,
html[data-theme="light"] .review-card,
html[data-theme="light"] .trust-badge,
html[data-theme="light"] .stat-highlight,
html[data-theme="light"] details.collapse {
    background: var(--card);
}
html[data-theme="light"] .faq-list { background: var(--card); }
html[data-theme="light"] .compare-table { background: var(--card); }
html[data-theme="light"] .compare-table thead th { background: var(--card-2); }

/* Theme toggle button (header) */
.theme-toggle {
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--secondary);
    cursor: pointer; padding: 0;
    flex-shrink: 0;
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
    margin-left: 4px;
}
.theme-toggle:hover { background: rgba(212,175,55,.10); color: var(--secondary-2); }
.theme-toggle:focus-visible { outline: 2px solid var(--secondary); outline-offset: 2px; }
.theme-icon { width: 20px; height: 20px; display: block; }
html[data-theme="dark"] .theme-icon-sun { display: none; }
html[data-theme="light"] .theme-icon-moon { display: none; }
@media (min-width: 1024px) {
    .theme-toggle { margin-left: 8px; }
}


/* ---------- Reset & Safety Net ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 20% 10%, rgba(122,31,43,.18), transparent 55%),
        radial-gradient(ellipse at 80% 90%, rgba(212,175,55,.07), transparent 60%),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><defs><filter id='n'><feTurbulence baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.04 0 0 0 0 0.03 0 0 0 0.5 0'/></filter></defs><rect width='160' height='160' filter='url(%23n)' opacity='.35'/></svg>");
}

img, video, iframe, embed, object, svg { max-width: 100%; height: auto; display: block; }
[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }
pre, code, .code-block { max-width: 100%; overflow-x: auto; }
.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; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--foreground);
    letter-spacing: .02em;
    line-height: 1.2;
    margin: 0 0 .6em;
    font-weight: 700;
}
h1 { font-size: clamp(1.85rem, 4.6vw + .5rem, 2.75rem); letter-spacing: .04em; text-transform: uppercase; }
h2 { font-size: clamp(1.55rem, 2.8vw + .5rem, 2.1rem); text-transform: uppercase; letter-spacing: .05em; }
h3 { font-size: clamp(1.2rem, 1.4vw + .6rem, 1.5rem); letter-spacing: .04em; }
h4 { font-size: 1.05rem; font-family: var(--font-heading); letter-spacing: .12em; text-transform: uppercase; }

p { margin: 0 0 1.2em; max-width: 70ch; }
a { color: var(--secondary); text-decoration: none; transition: color .2s var(--ease); word-break: break-word; }
a:hover { color: var(--secondary-2); }
strong { color: var(--secondary-2); font-weight: 700; }
small { font-size: .875rem; color: var(--muted-foreground); }

.skip-link {
    position: absolute; left: -9999px; top: 8px;
    background: var(--secondary); color: var(--background);
    padding: 8px 14px; border-radius: 6px; font-weight: 700; z-index: 9999;
}
.skip-link:focus { left: 8px; }

::selection { background: var(--primary); color: var(--primary-foreground); }

.gold-text {
    background: linear-gradient(180deg, #f7e394 0%, #d4af37 50%, #8b6914 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fraktur { font-family: var(--font-fraktur); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

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

.section-eyebrow {
    font-family: var(--font-heading);
    font-size: .85rem; letter-spacing: .25em; text-transform: uppercase;
    color: var(--secondary); text-align: center; margin: 0 0 28px;
    font-weight: 600;
}
.section-heading {
    text-align: center; margin: 0 0 12px;
}
.section-lede {
    text-align: center; max-width: 64ch; margin: 0 auto 48px;
    color: var(--muted-foreground); font-size: 1.05rem;
}

/* Filigree divider - crossed Tommy guns motif */
.divider-tommy {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin: 32px auto; max-width: 320px;
}
.divider-tommy::before, .divider-tommy::after {
    content: ""; flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary) 50%, transparent);
}
.divider-tommy-mark {
    width: 28px; height: 28px; border: 1.5px solid var(--secondary);
    transform: rotate(45deg); position: relative; flex-shrink: 0;
}
.divider-tommy-mark::after {
    content: ""; position: absolute; inset: 6px;
    border: 1px solid var(--secondary); transform: rotate(45deg);
}

/* ============================================
   BUTTONS
   .btn-primary  - blood-red CTA with shimmer
   .btn-ghost    - outlined gold
   .btn-gold     - gold secondary
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    font-size: .95rem;
    padding: 14px 26px; min-height: 48px;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    cursor: pointer; user-select: none;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
    position: relative; overflow: hidden;
    text-decoration: none;
}
.btn-sm { padding: 10px 16px; min-height: 40px; font-size: .8rem; }
.btn-lg { padding: 18px 36px; min-height: 56px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
    background: linear-gradient(180deg, #e8243a 0%, #c8102e 60%, #8b0a1e 100%);
    color: #fff;
    border-color: #f1cf6a55;
    box-shadow: 0 6px 18px rgba(225,29,46,.45), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(225,29,46,.6), inset 0 1px 0 rgba(255,255,255,.22); color: #fff; }
.btn-primary:active { transform: translateY(0); }

.btn-shimmer::before {
    content: ""; position: absolute; top: 0; bottom: 0; left: -120%;
    width: 60%;
    background: linear-gradient(110deg, transparent 0%, rgba(241,207,106,.0) 30%, rgba(255,243,196,.55) 50%, rgba(241,207,106,0) 70%, transparent 100%);
    transform: skewX(-20deg);
    animation: brassShimmer 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes brassShimmer {
    0%, 60% { left: -120%; }
    100% { left: 140%; }
}

.btn-ghost {
    background: transparent; color: var(--secondary);
    border-color: var(--border-gold);
}
.btn-ghost:hover { background: rgba(212,175,55,.08); color: var(--secondary-2); border-color: var(--secondary); }

.btn-gold {
    background: linear-gradient(180deg, #f1cf6a 0%, #d4af37 60%, #8b6914 100%);
    color: #1a1411; border-color: #fff3c455;
    box-shadow: 0 6px 18px rgba(212,175,55,.35);
}
.btn-gold:hover { transform: translateY(-2px); color: #1a1411; box-shadow: 0 12px 28px rgba(212,175,55,.5); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ============================================
   HEADER - fixed, smoked-glass blur on desktop
   ============================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(14,11,9,.92);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 4px 18px rgba(0,0,0,.5);
}
.header-inner {
    max-width: var(--maxw); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 8px 16px;
    height: var(--header-h);
}
.brand {
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--foreground);
    flex-shrink: 0;
}
.brand .logo {
    width: 44px; height: 44px; border-radius: 8px;
    border: 1px solid var(--border-gold);
    background: #14100d;
    object-fit: cover;
}
.brand-name {
    display: flex; flex-direction: column; line-height: 1;
    font-family: var(--font-display);
}
.brand-name-top {
    font-size: 1.05rem; letter-spacing: .12em; text-transform: uppercase;
    background: linear-gradient(180deg, #f7e394, #d4af37 70%, #8b6914);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.brand-name-sub {
    font-size: .68rem; letter-spacing: .35em; text-transform: uppercase;
    color: var(--primary-2); margin-top: 2px;
}

.main-nav { display: none; }
.nav-list { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
.nav-list a {
    font-family: var(--font-heading); text-transform: uppercase;
    letter-spacing: .14em; font-size: .82rem; font-weight: 600;
    color: var(--foreground); padding: 8px 2px;
    position: relative;
}
.nav-list a:hover { color: var(--secondary); }
.nav-list a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    transform: scaleX(0); transform-origin: center;
    transition: transform .3s var(--ease);
}
.nav-list a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; gap: 10px; align-items: center; }

.menu-toggle {
    width: 44px; height: 44px;
    background: transparent; border: 1px solid var(--border-gold);
    border-radius: 8px;
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    cursor: pointer; padding: 0;
    z-index: 1001; flex-shrink: 0;
}
.menu-toggle span {
    width: 22px; height: 2px; background: var(--secondary); border-radius: 2px;
    transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.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); }

/* Push body content below fixed header */
main { padding-top: var(--header-h); }

@media (min-width: 1024px) {
    .site-header { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); background: rgba(14,11,9,.78); }
    .main-nav {
        display: flex; align-items: center; gap: 28px;
        position: static; width: auto; height: auto;
        background: transparent; padding: 0;
    }
    .menu-toggle { display: none; }
    .header-inner { padding: 8px 32px; }
}

/* Mobile drawer */
@media (max-width: 1023.98px) {
    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        background: var(--background);
        background-image:
            linear-gradient(180deg, rgba(14,11,9,.98), rgba(14,11,9,1) 80%),
            radial-gradient(circle at 50% 0%, rgba(122,31,43,.5), transparent 60%);
        border-top: 1px solid var(--border-gold);
        z-index: 999;
        flex-direction: column;
        padding: 28px 20px 40px;
        gap: 18px;
        overflow-y: auto;
        display: none;
    }
    .main-nav.is-open { display: flex; }
    .nav-list {
        flex-direction: column; align-items: stretch; gap: 4px; width: 100%;
    }
    .nav-list li { width: 100%; }
    .nav-list a {
        display: flex; align-items: center; min-height: 52px;
        font-size: 1rem; padding: 8px 12px;
        border-bottom: 1px solid var(--border);
    }
    .nav-cta {
        flex-direction: column; align-items: stretch; gap: 12px;
        width: 100%; margin-top: 18px;
    }
    .nav-cta .btn { width: 100%; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #08060a;
    background-image:
        linear-gradient(180deg, rgba(74,13,20,.18), transparent 30%),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='40' viewBox='0 0 80 40'><rect width='80' height='40' fill='%2308060a'/><path d='M0 20h80M20 0v20M60 0v20M0 40h80M40 20v20' stroke='%231f1814' stroke-width='1'/></svg>");
    border-top: 2px solid var(--border-gold);
    color: var(--muted-foreground);
    padding: 56px 0 0;
    margin-top: 80px;
}
.footer-inner {
    max-width: var(--maxw); margin: 0 auto;
    padding: 0 20px;
    display: grid; grid-template-columns: 1fr; gap: 36px;
}
.footer-col h4, .footer-col .footer-title { color: var(--secondary); margin-bottom: 14px; font-size: .85rem; font-family: var(--font-heading); letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-top: 0; }
.footer-tag { font-size: .92rem; line-height: 1.65; max-width: 38ch; }
.footer-list, .payment-list, .badge-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.footer-list a {
    color: var(--muted-foreground); font-size: .92rem;
    display: inline-flex; align-items: center; gap: 8px;
}
.footer-list a:hover { color: var(--secondary); }
.footer-list a::before { content: "♠"; color: var(--primary); font-size: .75em; }

.payment-list, .badge-list { flex-direction: row; flex-wrap: wrap; gap: 8px; }
.payment-pill, .badge-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    background: #1a1411;
    border: 1px solid var(--border-gold);
    color: var(--secondary);
    border-radius: 999px;
    font-size: .76rem; font-weight: 600; letter-spacing: .04em;
    font-family: var(--font-body);
}
.badge-pill { color: var(--foreground); }
.badge-age { color: #ff5566; border-color: var(--primary); }
.badge-license { color: var(--secondary-2); }

.footer-disclaimer {
    margin-top: 12px; font-size: .8rem; line-height: 1.55;
    color: var(--muted-foreground);
}
.footer-bottom {
    margin-top: 48px; padding: 20px;
    border-top: 1px solid var(--border);
    text-align: center; font-size: .82rem;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .footer-inner { grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 44px; padding: 0 32px; }
}

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

.game-card {
    position: relative;
    background: linear-gradient(180deg, #1a1411 0%, #100c0a 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
    min-width: 0;
}
.game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
    border-color: var(--secondary);
}
.game-card-thumb {
    position: relative; aspect-ratio: 1 / 1;
    background: #0c0907;
    overflow: hidden;
}
.game-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.game-card:hover .game-card-thumb img { transform: scale(1.05); }
.game-card-badge {
    position: absolute; top: 8px; left: 8px;
    background: var(--primary); color: #fff;
    font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 999px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.game-card-corner {
    position: absolute; width: 16px; height: 16px;
    border: 2px solid var(--secondary); pointer-events: none;
    opacity: .8;
}
.game-card-corner-tl { top: 6px; left: 6px; border-right: 0; border-bottom: 0; }
.game-card-corner-tr { top: 6px; right: 6px; border-left: 0; border-bottom: 0; }
.game-card-corner-bl { bottom: 6px; left: 6px; border-right: 0; border-top: 0; }
.game-card-corner-br { bottom: 6px; right: 6px; border-left: 0; border-top: 0; }
.game-card-play {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
    opacity: 0; transition: opacity .3s var(--ease);
    color: #fff; text-decoration: none;
}
.game-card:hover .game-card-play, .game-card:focus-within .game-card-play { opacity: 1; }
.play-triangle {
    width: 0; height: 0;
    border-style: solid; border-width: 14px 0 14px 22px;
    border-color: transparent transparent transparent var(--primary-2);
    filter: drop-shadow(0 2px 8px rgba(225,29,46,.6));
    animation: pulseRed 2s ease-in-out infinite;
}
@keyframes pulseRed {
    0%, 100% { filter: drop-shadow(0 2px 8px rgba(225,29,46,.6)); }
    50% { filter: drop-shadow(0 2px 16px rgba(225,29,46,1)); }
}
.play-text {
    font-family: var(--font-heading); font-weight: 700;
    text-transform: uppercase; letter-spacing: .18em; font-size: .8rem;
    color: var(--secondary);
}
.game-card-body { padding: 14px 14px 16px; }
.game-card-title {
    font-family: var(--font-display); font-size: .92rem;
    text-transform: uppercase; letter-spacing: .05em;
    margin: 0 0 6px; line-height: 1.25;
    color: var(--foreground);
}
.game-card-meta {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    font-size: .72rem; color: var(--muted-foreground);
    text-transform: uppercase; letter-spacing: .12em;
}
.game-card-rtp { color: var(--secondary); font-weight: 600; }

/* ============================================
   BONUS CARD
   ============================================ */
.bonus-grid {
    display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 640px) { .bonus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .bonus-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; } }

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

.bonus-card {
    position: relative;
    background: linear-gradient(165deg, #4a0d14 0%, #1a0c0a 60%, #0e0b09 100%);
    border: 1px solid var(--secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(212,175,55,.15);
    display: flex; flex-direction: column;
    min-width: 0;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg), 0 0 32px rgba(212,175,55,.25); }
.bonus-card-featured { border-width: 2px; }
.bonus-card-featured::before {
    content: "Top-Angebot"; position: absolute; top: 14px; right: -38px;
    background: var(--primary); color: #fff;
    padding: 4px 44px; font-size: .65rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    transform: rotate(35deg); z-index: 3;
    box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.bonus-card-illu {
    aspect-ratio: 16 / 10;
    background: #100806; overflow: hidden;
    border-bottom: 1px solid var(--border-gold);
}
.bonus-card-illu img { width: 100%; height: 100%; object-fit: cover; }
.bonus-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.bonus-card-eyebrow {
    margin: 0; font-family: var(--font-heading); font-size: .75rem;
    color: var(--secondary); letter-spacing: .25em; text-transform: uppercase; font-weight: 600;
}
.bonus-card-amount {
    margin: 0; font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.2vw + .8rem, 2.4rem);
    line-height: 1.1; letter-spacing: .02em;
    background: linear-gradient(180deg, #f7e394, #d4af37 60%, #8b6914);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}
.bonus-card-sub { margin: 0; color: var(--foreground); font-size: 1rem; line-height: 1.5; }
.bonus-card-code {
    display: inline-flex; align-items: center; gap: 8px;
    align-self: flex-start;
    background: rgba(14,11,9,.5);
    border: 1px dashed var(--secondary);
    border-radius: 999px;
    padding: 6px 14px;
}
.bonus-card-code-label {
    font-size: .7rem; color: var(--muted-foreground);
    letter-spacing: .2em; text-transform: uppercase;
}
.bonus-card-code-value {
    font-family: var(--font-heading); font-weight: 700;
    color: var(--secondary-2); letter-spacing: .14em;
}
.bonus-card-terms {
    margin: 0; font-size: .78rem; color: var(--muted-foreground); line-height: 1.5;
}
.bonus-card .btn { margin-top: auto; }

/* ============================================
   CTA BANNER - full-width route stop
   ============================================ */
.cta-banner {
    position: relative;
    padding: 56px 0;
    overflow: hidden;
    isolation: isolate;
}
@media (min-width: 1024px) { .cta-banner { padding: 96px 0; } }
.cta-banner-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(74,13,20,.92), rgba(14,11,9,.96)),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><defs><pattern id='cob' width='40' height='40' patternUnits='userSpaceOnUse'><circle cx='10' cy='10' r='8' fill='%23130c0a' stroke='%23241814' stroke-width='1'/><circle cx='30' cy='30' r='8' fill='%23130c0a' stroke='%23241814' stroke-width='1'/><circle cx='30' cy='10' r='6' fill='%23150e0b' stroke='%23241814' stroke-width='1'/><circle cx='10' cy='30' r='6' fill='%23150e0b' stroke='%23241814' stroke-width='1'/></pattern></defs><rect width='100' height='100' fill='url(%23cob)'/></svg>");
    background-size: cover, 200px 200px;
    z-index: -1;
}
.cta-banner-bg::after {
    content: ""; position: absolute; inset: 0;
    background:
        repeating-linear-gradient(105deg, rgba(212,175,55,.04) 0 1px, transparent 1px 5px),
        radial-gradient(ellipse at 50% 100%, rgba(225,29,46,.18), transparent 60%);
}
.cta-banner-inner {
    max-width: var(--maxw); margin: 0 auto; padding: 0 20px;
    display: grid; grid-template-columns: 1fr; gap: 32px;
    align-items: center;
}
.cta-banner-content { text-align: center; }
.cta-quote {
    display: block;
    font-family: var(--font-display);
    font-size: 5rem; line-height: .6;
    color: var(--primary-2);
    margin-bottom: 8px;
    text-shadow: 0 2px 14px rgba(225,29,46,.45);
}
.cta-headline {
    font-size: clamp(1.6rem, 3.5vw + .6rem, 2.4rem);
    color: var(--secondary-2); text-transform: uppercase;
    margin: 0 auto 16px; max-width: 22ch;
}
.cta-subtext {
    color: var(--foreground); font-size: 1.05rem;
    max-width: 56ch; margin: 0 auto 28px;
}
.cta-fineprint { font-size: .78rem; color: var(--muted-foreground); margin: 18px 0 0; }
.cta-banner-mascot { display: none; justify-self: end; }
.cta-banner-mascot img { max-height: 480px; width: auto; filter: drop-shadow(0 18px 40px rgba(0,0,0,.7)); }

@media (min-width: 1024px) {
    .cta-banner-inner { grid-template-columns: 1fr auto; padding: 0 32px; gap: 56px; text-align: left; }
    .cta-banner-content { text-align: left; }
    .cta-headline, .cta-subtext { margin-left: 0; margin-right: 0; }
    .cta-banner-mascot { display: block; }
}

/* ============================================
   PROVIDER LOGOS strip
   ============================================ */
.provider-logos {
    padding: 48px 0;
    background:
        linear-gradient(180deg, transparent, rgba(212,175,55,.04), transparent),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='40' viewBox='0 0 80 40'><rect width='80' height='40' fill='%2308060a'/><path d='M0 20h80M20 0v20M60 0v20M0 40h80M40 20v20' stroke='%231a1411' stroke-width='1'/></svg>");
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.provider-row {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}
@media (min-width: 640px) { .provider-row { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .provider-row { grid-template-columns: repeat(7, minmax(0, 1fr)); } }
.provider-logo {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 18px 12px;
    border-right: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    opacity: .6; transition: opacity .25s var(--ease);
    min-height: 70px;
}
.provider-logo:hover { opacity: 1; }
.provider-row > .provider-logo:nth-child(2n) { border-right: 0; }
@media (min-width: 640px) {
    .provider-row > .provider-logo { border-right: 1px solid var(--border-gold); border-bottom: 0; }
    .provider-row > .provider-logo:nth-child(2n) { border-right: 1px solid var(--border-gold); }
    .provider-row > .provider-logo:nth-child(4n) { border-right: 0; }
}
@media (min-width: 1024px) {
    .provider-row > .provider-logo { border-right: 1px solid var(--border-gold); }
    .provider-row > .provider-logo:nth-child(4n) { border-right: 1px solid var(--border-gold); }
    .provider-row > .provider-logo:last-child { border-right: 0; }
}
.provider-mark {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(180deg, #f7e394 0%, #d4af37 60%, #8b6914);
    color: #1a1411;
    font-family: var(--font-display); font-weight: 900;
    font-size: .85rem; letter-spacing: .02em;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.provider-name {
    font-family: var(--font-heading); font-weight: 600;
    color: var(--secondary); text-transform: uppercase;
    letter-spacing: .12em; font-size: .78rem;
}

/* ============================================
   STAT BLOCK
   ============================================ */
.stat-block-section {
    padding: 56px 0;
    background:
        linear-gradient(180deg, #100c0a, #08060a);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    position: relative;
}
.stat-block-row {
    display: grid; grid-template-columns: 1fr; gap: 28px;
    align-items: stretch;
}
@media (min-width: 768px) { .stat-block-row { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; } }
.stat-item {
    text-align: center; padding: 14px 16px;
    display: flex; flex-direction: column; gap: 6px;
    border-bottom: 1px solid var(--border-gold);
}
.stat-item:last-of-type { border-bottom: 0; }
@media (min-width: 768px) {
    .stat-item { border-bottom: 0; }
}
.stat-divider {
    display: none;
}
@media (min-width: 768px) {
    .stat-divider {
        display: block; width: 1px;
        background: linear-gradient(180deg, transparent, var(--secondary) 50%, transparent);
        position: absolute;
        /* visually handled by border on item - keep hidden default */
    }
    .stat-block-row .stat-item + .stat-item { border-left: 1px solid var(--border-gold); }
    .stat-block-row .stat-item + .stat-item.stat-item { /* noop */ }
}
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw + .8rem, 3.5rem);
    font-weight: 700;
    background: linear-gradient(180deg, #f7e394, #d4af37 55%, #8b6914);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1;
}
.stat-label {
    font-family: var(--font-heading); font-weight: 600;
    text-transform: uppercase; letter-spacing: .2em;
    font-size: .85rem; color: var(--foreground);
}
.stat-source { font-size: .72rem; color: var(--muted-foreground); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section { padding: 56px 0; }
@media (min-width: 1024px) { .faq-section { padding: 96px 0; } }
.faq-list {
    max-width: 880px; margin: 0 auto;
    background: var(--card); border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.faq-item {
    border-bottom: 1px solid var(--border-gold);
    background: transparent;
}
.faq-item:last-child { border-bottom: 0; }
.faq-item[open] {
    background: linear-gradient(90deg, rgba(122,31,43,.18), transparent 30%);
    box-shadow: inset 4px 0 0 var(--primary-2);
}
.faq-question {
    list-style: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 22px;
    font-family: var(--font-display);
    font-size: clamp(.95rem, 1vw + .6rem, 1.1rem);
    color: var(--secondary-2);
    text-transform: uppercase; letter-spacing: .04em;
    line-height: 1.35;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-q-text { flex: 1; }
.faq-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    border: 1.5px solid var(--secondary);
    border-radius: 50%; position: relative;
    transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq-icon::before, .faq-icon::after {
    content: ""; position: absolute; left: 50%; top: 50%;
    width: 12px; height: 1.5px;
    background: var(--secondary); transform: translate(-50%, -50%);
    transition: opacity .3s var(--ease);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon { background: var(--secondary); }
.faq-item[open] .faq-icon::before { background: var(--background); }
.faq-item[open] .faq-icon::after { opacity: 0; }
.faq-answer {
    padding: 0 22px 22px; color: var(--foreground);
    font-size: 1rem; line-height: 1.7;
}
.faq-answer p { margin: 0; max-width: 70ch; color: var(--foreground); }

/* ============================================
   ENGAGEMENT / CRO PATTERNS
   ============================================ */
/* TL;DR / summary box */
.tldr-box {
    background: linear-gradient(180deg, rgba(212,175,55,.08), rgba(14,11,9,.5));
    border: 1px solid var(--border-gold);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin: 24px 0;
}
.tldr-box h3, .tldr-box h4 {
    margin: 0 0 8px; color: var(--secondary);
    font-size: .8rem; letter-spacing: .25em;
    font-family: var(--font-heading); text-transform: uppercase; font-weight: 700;
}
.tldr-box p:last-child { margin-bottom: 0; }

/* Callout */
.callout {
    background: rgba(122,31,43,.18);
    border: 1px solid var(--burgundy-2);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin: 24px 0;
    color: var(--foreground);
}
.callout strong { color: var(--secondary-2); }

/* Pull quote */
.pull-quote {
    border-left: 3px solid var(--primary);
    padding: 8px 0 8px 24px;
    margin: 32px 0;
    font-family: var(--font-display); font-style: italic;
    font-size: clamp(1.15rem, 2vw + .5rem, 1.45rem);
    line-height: 1.4; color: var(--secondary-2);
    position: relative;
}
.pull-quote::before {
    content: "“"; position: absolute; left: 12px; top: -10px;
    font-size: 3.6rem; line-height: 1; color: var(--primary-2);
    font-family: var(--font-display);
}
.pull-quote cite {
    display: block; margin-top: 10px;
    font-size: .85rem; color: var(--muted-foreground);
    font-style: normal; letter-spacing: .12em; text-transform: uppercase;
}

/* Stat highlight (single inline) */
.stat-highlight {
    display: inline-flex; flex-direction: column;
    background: linear-gradient(180deg, #1a1411, #100c0a);
    border: 1px solid var(--secondary);
    border-radius: var(--radius);
    padding: 14px 22px; gap: 4px;
    box-shadow: var(--shadow-gold);
}
.stat-highlight .num {
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 700;
    background: linear-gradient(180deg, #f7e394, #d4af37);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-highlight .lbl { font-size: .78rem; color: var(--muted-foreground); letter-spacing: .14em; text-transform: uppercase; }

/* Comparison table */
.compare-table-wrap { max-width: 100%; overflow-x: auto; margin: 24px 0; border-radius: var(--radius); border: 1px solid var(--border-gold); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 520px; background: var(--card); }
.compare-table th, .compare-table td {
    padding: 14px 16px; text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: .92rem; color: var(--foreground);
}
.compare-table thead th {
    background: linear-gradient(180deg, #1a1411, #0e0b09);
    color: var(--secondary);
    font-family: var(--font-heading); text-transform: uppercase; letter-spacing: .14em;
    font-size: .8rem; font-weight: 700;
    border-bottom: 2px solid var(--secondary);
}
.compare-table tbody tr:hover { background: rgba(212,175,55,.05); }
.compare-table .col-recommended { background: rgba(122,31,43,.18); position: relative; }
.compare-table thead th.col-recommended {
    color: var(--primary-2);
    background: linear-gradient(180deg, rgba(225,29,46,.2), rgba(122,31,43,.4));
    border-bottom-color: var(--primary);
}

/* Trust badges */
.trust-row {
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
    align-items: center; margin: 24px 0;
}
.trust-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--card); border: 1px solid var(--border-gold);
    border-radius: 999px; padding: 8px 16px;
    color: var(--secondary); font-size: .82rem;
    font-family: var(--font-heading); letter-spacing: .12em; text-transform: uppercase;
}
.trust-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary-2); box-shadow: 0 0 8px var(--primary-2); }

/* Social proof */
.review-grid {
    display: grid; grid-template-columns: 1fr; gap: 18px;
}
@media (min-width: 768px) { .review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.review-card {
    background: var(--card); border: 1px solid var(--border-gold);
    border-radius: var(--radius); padding: 20px;
    display: flex; flex-direction: column; gap: 10px;
    min-width: 0;
}
.review-stars { color: var(--secondary); letter-spacing: 4px; font-size: 1rem; }
.review-card blockquote { margin: 0; color: var(--foreground); font-style: italic; line-height: 1.55; }
.review-card cite { font-style: normal; color: var(--muted-foreground); font-size: .82rem; }

/* details/summary generic outside FAQ */
details.collapse { background: var(--card); border: 1px solid var(--border-gold); border-radius: var(--radius); padding: 0 18px; margin: 12px 0; }
details.collapse > summary { cursor: pointer; padding: 14px 0; font-family: var(--font-heading); color: var(--secondary); list-style: none; display: flex; justify-content: space-between; align-items: center; letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; }
details.collapse > summary::-webkit-details-marker { display: none; }
details.collapse > summary::after { content: "+"; color: var(--secondary); font-size: 1.2rem; }
details.collapse[open] > summary::after { content: "−"; }
details.collapse > *:not(summary) { padding-bottom: 16px; }

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

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; }
}

/* Body lock when mobile menu open */
body.menu-open { overflow: hidden; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--secondary); }
.text-red { color: var(--primary-2); }
.text-muted { color: var(--muted-foreground); }
.mt-0 { margin-top: 0; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 48px; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: .8rem; letter-spacing: .25em; text-transform: uppercase;
    color: var(--secondary); font-weight: 600;
    padding: 6px 14px;
    border: 1px solid var(--border-gold); border-radius: 999px;
    background: rgba(212,175,55,.06);
}

.container.narrow { max-width: 880px; }

/* ============================================
   HOMEPAGE - Cinematic hero
   ============================================ */
.home-hero {
    position: relative;
    min-height: 92vh;
    padding: 80px 0 56px;
    overflow: hidden;
    isolation: isolate;
    background: #050302;
}
@media (min-width: 1024px) {
    .home-hero { min-height: 88vh; padding: 120px 0 96px; }
}
.home-hero-canvas {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 110%, rgba(225,29,46,.25), transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(212,175,55,.18), transparent 50%),
        linear-gradient(180deg, #08060a 0%, #14080a 40%, #2a0a0e 75%, #4a0d14 100%),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><defs><pattern id='cob' width='40' height='40' patternUnits='userSpaceOnUse'><circle cx='10' cy='10' r='9' fill='%23120a08' stroke='%23231512' stroke-width='1'/><circle cx='30' cy='30' r='9' fill='%23120a08' stroke='%23231512' stroke-width='1'/><circle cx='30' cy='10' r='6' fill='%23150c0a' stroke='%23231512'/><circle cx='10' cy='30' r='6' fill='%23150c0a' stroke='%23231512'/></pattern></defs><rect width='200' height='200' fill='url(%23cob)' opacity='.5'/></svg>");
    background-size: cover, cover, cover, 240px 240px;
    transition: transform .4s var(--ease);
    z-index: 0;
}
.home-hero-canvas::before {
    content: ""; position: absolute; inset: 0;
    background:
        repeating-linear-gradient(180deg, transparent 0 60px, rgba(212,175,55,.04) 60px 61px),
        radial-gradient(ellipse at 50% 100%, rgba(255,200,80,.18), transparent 50%);
    pointer-events: none;
}
.home-hero-rain {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
        repeating-linear-gradient(105deg, transparent 0 4px, rgba(180,200,220,.05) 4px 5px, transparent 5px 12px),
        repeating-linear-gradient(108deg, transparent 0 9px, rgba(220,230,240,.04) 9px 10px, transparent 10px 22px);
    mix-blend-mode: screen;
    animation: rainFall 1.4s linear infinite;
}
@keyframes rainFall {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: -40px 100px, 60px 140px; }
}
.home-hero-vignette {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background:
        radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,.55) 75%, rgba(0,0,0,.85) 100%),
        linear-gradient(180deg, rgba(0,0,0,.6) 0%, transparent 30%, transparent 70%, rgba(0,0,0,.7) 100%);
}
.home-hero-don {
    position: absolute;
    right: -30px; bottom: -10px;
    width: 240px;
    z-index: 3;
    pointer-events: none;
    transition: transform .3s var(--ease);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.7));
    opacity: .9;
    animation: donBreathe 5s ease-in-out infinite;
}
.home-hero-don img { width: 100%; height: auto; }
@media (min-width: 768px) { .home-hero-don { width: 340px; right: 20px; opacity: 1; } }
@media (min-width: 1024px) { .home-hero-don { width: 440px; right: 4%; bottom: -20px; } }
@keyframes donBreathe {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.home-hero-neon {
    position: absolute;
    top: 18%; right: 8%;
    z-index: 2;
    text-align: right;
    pointer-events: none;
    transition: transform .3s var(--ease);
}
@media (max-width: 767px) {
    .home-hero-neon { top: 8%; right: 4%; }
}
.neon-text {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw + .5rem, 2.6rem);
    font-weight: 900;
    text-transform: uppercase; letter-spacing: .04em;
    color: #ffd9c0;
    text-shadow:
        0 0 4px #fff,
        0 0 14px #ff5530,
        0 0 28px #ff2a08,
        0 0 48px #c8102e;
    animation: neonFlicker 4s infinite;
}
.neon-sub {
    display: block;
    font-family: var(--font-heading);
    font-size: .85rem; letter-spacing: .4em;
    color: #f1cf6a;
    text-shadow: 0 0 8px #d4af37, 0 0 20px #b8881f;
    margin-top: 4px;
}
@keyframes neonFlicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
    20%, 24%, 55% { opacity: .55; }
}
.home-hero-content {
    position: relative; z-index: 4;
    max-width: 720px;
}
.home-hero-content h1 { margin-top: 16px; }
.home-hero-content .lead { font-size: clamp(1rem, 1vw + .8rem, 1.2rem); max-width: 56ch; color: var(--foreground); }
.hero-trust {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 28px;
}
.hero-actions { margin-top: 24px; }

/* ============================================
   ROUTE STOPS
   ============================================ */
.route-stops { position: relative; }
.stops-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
    margin-top: 24px;
    counter-reset: stop;
    position: relative;
}
@media (min-width: 768px) { .stops-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; } }
.stop-card {
    position: relative;
    background: linear-gradient(165deg, #1a1411 0%, #0e0b09 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 24px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s var(--ease), transform .8s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.stop-card.is-arrived { opacity: 1; transform: translateY(0); }
.stop-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-gold); }
.stop-number {
    font-family: var(--font-display); font-weight: 700;
    font-size: 3.5rem; line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--secondary);
    margin-bottom: 12px;
    opacity: .6;
}
.stop-illu {
    aspect-ratio: 3 / 2;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}
.stop-illu img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.stop-card:hover .stop-illu img { transform: scale(1.06); }
.stop-card h3 { color: var(--secondary-2); margin-bottom: 8px; }
.stop-card p { color: var(--foreground); margin-bottom: 14px; }
.stop-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-heading); font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em;
    font-size: .82rem; color: var(--primary-2);
}
.stop-link:hover { color: var(--secondary); transform: translateX(2px); }

/* ============================================
   WELCOME PACKAGE - fourth row + side
   ============================================ */
.welcome-pkg .bonus-grid { margin-bottom: 24px; }
.welcome-fourth {
    display: grid; grid-template-columns: 1fr; gap: 24px;
    margin-top: 24px;
}
@media (min-width: 768px) { .welcome-fourth { grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; } }
.welcome-side { display: flex; flex-direction: column; gap: 18px; }

/* ============================================
   CRYPTO BLOCK
   ============================================ */
.crypto-block {
    background:
        radial-gradient(ellipse at 80% 20%, rgba(212,175,55,.10), transparent 50%),
        linear-gradient(180deg, #0e0b09 0%, #14080a 100%);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}
.crypto-grid {
    display: grid; grid-template-columns: 1fr; gap: 32px;
    align-items: center;
}
@media (min-width: 1024px) { .crypto-grid { grid-template-columns: 1.1fr .9fr; gap: 56px; } }
.crypto-content h2 { margin-top: 12px; }
.crypto-list {
    list-style: none; padding: 0; margin: 16px 0 24px;
    display: grid; gap: 12px;
}
.crypto-list li {
    position: relative;
    padding: 10px 14px 10px 38px;
    background: rgba(14,11,9,.5);
    border: 1px solid var(--border);
    border-left: 3px solid var(--secondary);
    border-radius: var(--radius);
    font-size: .98rem;
}
.crypto-list li::before {
    content: "♠";
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    color: var(--primary-2); font-size: 1.1rem;
}
.crypto-illu {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    aspect-ratio: 1 / 1;
}
.crypto-illu img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   VIP TEASER
   ============================================ */
.vip-tier-row {
    display: grid; grid-template-columns: 1fr; gap: 18px;
    margin-top: 24px;
}
@media (min-width: 768px) { .vip-tier-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }
.vip-tier {
    text-align: center;
    padding: 28px 22px;
    background: linear-gradient(165deg, #1a1411 0%, #0e0b09 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.vip-tier:hover { transform: translateY(-4px); border-color: var(--secondary); box-shadow: var(--shadow-gold); }
.vip-tier h3 {
    font-size: 1.5rem;
    background: linear-gradient(180deg, #f7e394, #d4af37 60%, #8b6914);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}
.vip-tier-icon {
    width: 120px; height: 120px;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
}
.vip-tier-icon img { width: 100%; height: 100%; object-fit: contain; }
.vip-tier-bronze h3 {
    background: linear-gradient(180deg, #d4925a, #a96a35 60%, #6f4220);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.vip-tier-silver h3 {
    background: linear-gradient(180deg, #e8e8e8, #b8b8b8 60%, #777);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.vip-tier p { margin-bottom: 4px; }

/* ============================================
   SOCIAL PROOF
   ============================================ */
.social-proof .trust-row { margin-bottom: 32px; }

.tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: 999px;
    background: rgba(225,29,46,.14);
    border: 1px solid var(--primary);
    color: var(--primary-2);
    font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}

/* ============================================
   CATEGORY TILES (slots page)
   ============================================ */
.category-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px; margin-top: 24px;
}
@media (min-width: 768px) { .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; } }
.category-tile {
    display: flex; flex-direction: column; gap: 8px;
    padding: 22px 18px;
    background: linear-gradient(165deg, #1a1411 0%, #0e0b09 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    color: var(--foreground); text-decoration: none;
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
    min-height: 180px;
}
.category-tile:hover {
    transform: translateY(-4px); border-color: var(--secondary);
    box-shadow: var(--shadow-gold);
    color: var(--foreground);
}
.category-icon {
    font-size: 2rem; line-height: 1; margin-bottom: 4px;
    filter: drop-shadow(0 0 12px rgba(212,175,55,.4));
}
.category-tile h3 {
    margin: 0; font-size: 1.05rem;
    color: var(--secondary-2);
    text-transform: uppercase; letter-spacing: .08em;
}
.category-tile p {
    margin: 0; font-size: .88rem; line-height: 1.5;
    color: var(--muted-foreground); flex: 1;
}
.category-link {
    font-family: var(--font-heading); font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em;
    font-size: .76rem; color: var(--primary-2);
    margin-top: auto;
}
.category-tile:hover .category-link { color: var(--secondary); }

/* Filter chips */
.game-filter {
    display: flex; flex-wrap: wrap; gap: 8px;
    justify-content: center; margin: 0 0 28px;
}
.filter-chip {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--secondary);
    font-family: var(--font-heading); font-weight: 600;
    text-transform: uppercase; letter-spacing: .14em;
    font-size: .78rem;
    padding: 9px 16px; min-height: 40px;
    border-radius: 999px; cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.filter-chip:hover { background: rgba(212,175,55,.08); color: var(--secondary-2); }
.filter-chip.is-active {
    background: linear-gradient(180deg, #f1cf6a, #d4af37 60%, #8b6914);
    color: #1a1411; border-color: #fff3c4;
    box-shadow: var(--shadow-gold);
}

/* Slot filter - show/hide game wrappers */
#games-grid > div.is-hidden { display: none; }

/* Generic two-column hero */
.hero {
    position: relative;
    padding: 40px 0 56px;
    overflow: hidden;
}
@media (min-width: 1024px) { .hero { padding: 80px 0 96px; } }
.hero-grid {
    display: grid; grid-template-columns: 1fr; gap: 32px;
    align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 56px; } }
.hero-content h1 { margin-top: 12px; }
.hero-content .lead { font-size: 1.1rem; color: var(--foreground); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
    background: #0a0807;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 1024px) {
    .hero-media { aspect-ratio: 4 / 5; }
}