/* ============================================
   SPINGRANNY CASINO - DESIGN SYSTEM
   Retro Las Vegas 1970s · Dark-theme only
   ============================================ */

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

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

body {
    margin: 0;
    font-family: "Inter Tight", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--parchment);
    background: var(--plum-night);
    background-image:
        radial-gradient(ellipse at top, rgba(255,106,0,0.10), transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(200,134,10,0.08), transparent 60%),
        linear-gradient(180deg, #14081f 0%, #1a0a2e 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

img, video, iframe, embed, object, svg { max-width: 100%; height: auto; display: block; }
[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }
pre, code { max-width: 100%; overflow-x: auto; }
.table-wrapper { max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; }
section { overflow: clip; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Bebas Neue", "Inter Tight", sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: var(--parchment);
    margin: 0 0 0.5em;
    text-transform: uppercase;
}

h1, .h1, .monoton {
    font-family: "Monoton", "Bebas Neue", sans-serif;
    letter-spacing: 0.03em;
    line-height: 1.1;
    font-weight: 400;
    color: var(--parchment);
    text-shadow: 0 0 12px rgba(255,106,0,0.55), 0 0 28px rgba(255,106,0,0.25);
    font-size: clamp(2.25rem, 6vw + 0.5rem, 4.5rem);
    text-transform: uppercase;
}
h2 { font-size: clamp(1.75rem, 3vw + 0.8rem, 3rem); letter-spacing: 0.03em; }
h3 { font-size: clamp(1.3rem, 1vw + 0.9rem, 1.75rem); letter-spacing: 0.04em; }
h4 { font-size: 1.15rem; letter-spacing: 0.05em; color: var(--gold); }

p { margin: 0 0 1.2em; max-width: 70ch; }
a { color: var(--orange); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--orange-bright); }

.eyebrow {
    display: inline-block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    padding: 4px 12px;
    border: 1px solid rgba(200,134,10,0.5);
    border-radius: 999px;
    background: rgba(200,134,10,0.08);
}

.neon-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.neon-underline::after {
    content: "";
    position: absolute; left: 0; bottom: 0;
    height: 3px; width: 72%;
    background: linear-gradient(90deg, transparent, var(--orange) 15%, var(--orange) 85%, transparent);
    box-shadow: 0 0 12px var(--orange), 0 0 24px rgba(255,106,0,0.6);
    border-radius: 3px;
}

/* ============================================
   LAYOUT - Container, grid, sections
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container);
    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: 80px 0; } }

.section--tight { padding: 40px 0; }

.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head p { margin-left: auto; margin-right: auto; color: var(--muted-foreground); }

.section-divider {
    position: relative;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    box-shadow: 0 0 14px rgba(255,106,0,0.6);
    margin: 0;
    transform: skewY(-1.5deg);
    transform-origin: left;
}

.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: minmax(0, 1fr); gap: 20px; }
.grid-3 { grid-template-columns: minmax(0, 1fr); gap: 20px; }
.grid-4 { grid-template-columns: minmax(0, 1fr); gap: 16px; }

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

/* Velvet card surface */
.velvet-bg {
    background: linear-gradient(180deg, rgba(42,21,64,0.8), rgba(26,10,46,0.85));
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

/* ============================================
   BUTTONS / CTA
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 22px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(180deg, #ff8a30, #ff6a00);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(255,106,0,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,106,0,0.6), 0 0 18px rgba(255,106,0,0.6); color: #ffffff; }
.btn-ghost {
    background: transparent;
    color: var(--parchment);
    border-color: rgba(245,235,217,0.4);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-gold {
    background: linear-gradient(180deg, #e0a020, #c8860a);
    color: var(--velvet);
    box-shadow: 0 6px 18px rgba(200,134,10,0.4);
}
.btn-block { width: 100%; }
.btn-lg { min-height: 56px; padding: 14px 28px; font-size: 1.15rem; }
.btn-pulse { animation: ctaPulse 2s ease-in-out infinite; }

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 6px 18px rgba(255,106,0,0.45), 0 0 0 0 rgba(255,106,0,0.4); }
    50% { box-shadow: 0 8px 22px rgba(255,106,0,0.6), 0 0 0 12px rgba(255,106,0,0); }
}

/* ============================================
   HEADER / NAV
   ============================================ */
.skip-link {
    position: absolute; left: -9999px;
    background: var(--orange); color: #fff;
    padding: 10px 16px; z-index: 2000;
}
.skip-link:focus { left: 16px; top: 12px; }

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(20, 8, 31, 0.92);
    border-bottom: 1px solid rgba(200,134,10,0.3);
    box-shadow: 0 2px 0 rgba(255,106,0,0.35);
    height: var(--header-h);
}
.header-inner {
    max-width: var(--container);
    height: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
@media (min-width: 768px) { .header-inner { padding: 0 32px; } }

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--parchment);
    text-decoration: none;
    font-family: "Monoton", sans-serif;
}
.brand .logo {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    box-shadow: 0 0 12px rgba(255,106,0,0.5);
    background: var(--velvet);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: "Monoton", sans-serif;
    font-size: 1.25rem;
    color: var(--orange);
    letter-spacing: 0.04em;
    text-shadow: 0 0 10px rgba(255,106,0,0.55);
}
.brand-sub {
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    color: var(--gold);
    margin-top: 2px;
}

/* Burger toggle */
.menu-toggle {
    position: relative;
    z-index: 1001;
    width: 48px; height: 48px;
    background: transparent;
    border: 1px solid rgba(255,106,0,0.5);
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
}
.menu-toggle span {
    width: 22px; height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s 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); }

/* Nav - mobile drawer */
.main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    z-index: 999;
    background: var(--plum-night);
    background-image:
        radial-gradient(ellipse at top, rgba(255,106,0,0.18), transparent 60%),
        linear-gradient(180deg, #1a0a2e 0%, #14081f 100%);
    padding: 24px 20px 32px;
    overflow-y: auto;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(200,134,10,0.3);
}
.main-nav.is-open { display: flex; }

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
}
.nav-list a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--parchment);
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-left: 3px solid transparent;
}
.nav-list a:hover {
    background: rgba(255,106,0,0.1);
    border-left-color: var(--orange);
    color: var(--orange);
}

.nav-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(200,134,10,0.3);
}

/* Desktop nav */
@media (min-width: 1024px) {
    .menu-toggle { display: none; }
    .main-nav {
        display: flex !important;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 18px;
        padding: 0;
        background: transparent;
        border: none;
        overflow: visible;
    }
    .nav-list {
        flex-direction: row;
        gap: 4px;
    }
    .nav-list a {
        min-height: 42px;
        padding: 8px 14px;
        font-size: 1rem;
        border-left: none;
        border-bottom: 2px solid transparent;
    }
    .nav-list a:hover {
        background: transparent;
        border-bottom-color: var(--orange);
    }
    .nav-ctas {
        flex-direction: row;
        margin: 0;
        padding: 0;
        border: none;
    }
}

/* ============================================
   MAIN CONTENT OFFSET
   ============================================ */
#main-content { padding-top: var(--header-h); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    margin-top: 80px;
    background: linear-gradient(180deg, #1a0a2e 0%, #0d0418 100%);
    border-top: 2px solid var(--orange);
    box-shadow: 0 -4px 24px rgba(255,106,0,0.25);
    color: var(--parchment);
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 48px 20px 24px;
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; padding: 64px 32px 28px; } }

.footer-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.18em;
    color: var(--orange);
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(200,134,10,0.35);
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--parchment); }
.footer-links a:hover { color: var(--orange); }
.footer-tag { color: var(--muted-foreground); font-size: 0.95rem; }

.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.badge {
    display: inline-flex; align-items: center;
    padding: 6px 12px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    border-radius: 999px;
    border: 1px solid rgba(200,134,10,0.5);
    color: var(--gold);
    background: rgba(200,134,10,0.06);
}
.badge-age { color: var(--orange); border-color: var(--orange); }

.pay-logos { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-chip {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 7px 12px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    background: rgba(245,235,217,0.06);
    border: 1px solid rgba(245,235,217,0.14);
    border-radius: 6px;
    color: var(--parchment);
}

.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px 20px 32px;
    border-top: 1px solid rgba(200,134,10,0.25);
    font-size: 0.85rem;
    color: var(--muted-foreground);
    text-align: center;
}
.footer-bottom p { margin: 6px auto; max-width: 80ch; }

/* ============================================
   HERO - generic
   ============================================ */
.hero {
    position: relative;
    padding: 40px 0 60px;
    overflow: clip;
}
@media (min-width: 1024px) { .hero { padding: 64px 0 96px; } }

.hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 15% 40%, rgba(255,106,0,0.25), transparent 55%),
        radial-gradient(ellipse at 85% 60%, rgba(255,45,149,0.15), transparent 55%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 48px; }
}

.hero-copy h1 { margin-top: 0.2em; }
.hero-copy .lede { font-size: 1.1rem; color: var(--muted-foreground); max-width: 52ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

.hero-art {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    background: radial-gradient(circle at 50% 40%, rgba(255,106,0,0.2), rgba(26,10,46,0.7) 70%);
    border: 1px solid rgba(200,134,10,0.4);
    box-shadow: var(--shadow-neon);
    overflow: hidden;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
#hero-reel-canvas { width: 100%; height: 100%; display: block; }

/* ============================================
   GAME TILE
   ============================================ */
.game-tile {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #2a1540, #1a0a2e);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.game-tile:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
    box-shadow: 0 10px 32px rgba(0,0,0,0.55), 0 0 22px rgba(255,106,0,0.45);
}
.game-tile-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #3d2456, #1a0a2e);
    overflow: hidden;
}
.game-tile-media img { width: 100%; height: 100%; object-fit: cover; }
.game-tile-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
}
.game-tile-badge {
    position: absolute; top: 10px; left: 10px;
    padding: 4px 10px;
    background: var(--orange);
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255,106,0,0.7);
    text-transform: uppercase;
}
.game-tile-shine {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(20,8,31,0.8));
    pointer-events: none;
}
.game-tile-body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; }
.game-tile-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    margin: 0;
    color: var(--parchment);
}
.game-tile-provider { font-size: 0.85rem; color: var(--muted-foreground); margin: 0 0 10px; }

/* ============================================
   BONUS CARD
   ============================================ */
.bonus-card {
    position: relative;
    display: flex; flex-direction: column;
    gap: 14px;
    padding: 20px;
    background: linear-gradient(180deg, #2a1540, #14081f);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}
@media (min-width: 768px) { .bonus-card { padding: 28px; } }

.bonus-card__bar {
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    box-shadow: 0 0 14px rgba(255,106,0,0.8);
}
.bonus-card--gold .bonus-card__bar { background: linear-gradient(90deg, transparent, var(--gold-bright), transparent); box-shadow: 0 0 14px rgba(200,134,10,0.8); }
.bonus-card--pink .bonus-card__bar { background: linear-gradient(90deg, transparent, var(--hot-pink), transparent); box-shadow: 0 0 14px rgba(255,45,149,0.8); }

.bonus-card__head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.bonus-medallion {
    flex: 0 0 64px;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #e0a020, #8a5a0a);
    border: 2px solid var(--gold-bright);
    box-shadow: 0 0 18px rgba(200,134,10,0.55), inset 0 2px 6px rgba(255,255,255,0.25);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: "Monoton", sans-serif;
    font-size: 1.75rem;
    color: var(--velvet);
}
.bonus-card__tag {
    display: inline-block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.8rem; letter-spacing: 0.18em;
    padding: 3px 10px;
    background: rgba(255,106,0,0.15);
    border: 1px solid var(--orange);
    color: var(--orange);
    border-radius: 4px;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.bonus-card__headline {
    font-family: "Monoton", sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--gold-bright);
    margin: 0;
    line-height: 1;
    text-shadow: 0 0 14px rgba(255,106,0,0.4);
}
.bonus-card__subtitle {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    margin: 0;
    color: var(--parchment);
}
.bonus-card__desc { color: var(--muted-foreground); margin: 0; font-size: 0.98rem; }
.bonus-card__terms {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 6px;
    border-top: 1px dashed rgba(200,134,10,0.3);
    border-bottom: 1px dashed rgba(200,134,10,0.3);
    padding: 10px 0;
}
.bonus-card__terms li {
    display: flex; justify-content: space-between; gap: 12px;
    font-size: 0.92rem;
    color: var(--muted-foreground);
}
.bonus-card__terms li strong { color: var(--parchment); font-weight: 600; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    background: linear-gradient(180deg, #2a1540, #1a0a2e);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}
.faq-item { border-bottom: 1px solid rgba(200,134,10,0.3); }
.faq-item:last-child { border-bottom: none; }
.faq-item[open] { background: linear-gradient(90deg, rgba(255,106,0,0.08), transparent 35%); border-left: 3px solid var(--orange); }
.faq-q {
    list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    min-height: 56px;
    padding: 16px 20px;
    cursor: pointer;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--parchment);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon {
    flex: 0 0 28px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--orange);
    position: relative;
    box-shadow: 0 0 10px rgba(255,106,0,0.6);
    transition: transform .3s ease;
}
.faq-icon::before, .faq-icon::after {
    content: "";
    position: absolute; left: 50%; top: 50%;
    background: #fff;
    transition: transform .25s ease, opacity .25s ease;
}
.faq-icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 20px 20px; color: var(--parchment); font-size: 1rem; line-height: 1.65; }
.faq-a p { margin: 0 0 0.75em; }
.faq-a p:last-child { margin-bottom: 0; }

/* ============================================
   STAT HIGHLIGHT
   ============================================ */
.stat-highlight {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 28px 16px;
    background: linear-gradient(180deg, #1a0a2e, #14081f);
    border: 1px solid var(--border);
    border-radius: 16px;
    position: relative;
}
.stat-divider { display: none; }
@media (min-width: 900px) {
    .stat-highlight { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; padding: 40px 20px; }
    .stat-divider {
        display: block;
        position: absolute;
        top: 20%; bottom: 20%;
        width: 2px;
        background: linear-gradient(180deg, transparent, var(--orange), transparent);
        box-shadow: 0 0 12px rgba(255,106,0,0.6);
        transform: skewX(-10deg);
    }
    .stat-highlight .stat-block:nth-child(2) ~ .stat-divider { left: 50%; }
}
.stat-block {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 10px 14px;
    gap: 6px;
}
.stat-medallion {
    width: 34px; height: 34px; border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #e0a020, #8a5a0a);
    border: 1px solid var(--gold-bright);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: "Monoton", sans-serif; color: var(--velvet); font-size: 1rem;
    box-shadow: 0 0 10px rgba(200,134,10,0.5);
    margin-bottom: 4px;
}
.stat-number {
    font-family: "Monoton", sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--gold-bright);
    line-height: 1;
    text-shadow: 0 0 14px rgba(255,106,0,0.45);
}
.stat-label {
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.9rem; letter-spacing: 0.14em;
    color: var(--parchment);
    text-transform: uppercase;
}
.stat-source { font-size: 0.75rem; color: var(--gold); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: 56px 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,106,0,0.25), transparent 55%),
        linear-gradient(180deg, #1a0a2e, #0d0418);
    border-top: 1px solid rgba(255,106,0,0.4);
    border-bottom: 1px solid rgba(255,106,0,0.4);
    overflow: clip;
}
@media (min-width: 1024px) { .cta-banner { padding: 80px 0; } }
.cta-banner__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}
@media (min-width: 1024px) { .cta-banner__inner { grid-template-columns: 0.8fr 1.2fr; padding: 0 32px; gap: 48px; } }

.cta-banner__art {
    aspect-ratio: 1 / 1;
    max-width: 360px;
    margin: 0 auto;
    border-radius: 18px;
    background: radial-gradient(circle, rgba(255,106,0,0.35), rgba(26,10,46,0.6) 70%);
    border: 1px solid rgba(200,134,10,0.5);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-neon);
}
.cta-banner__art img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__glyph {
    font-family: "Monoton", sans-serif;
    font-size: 6rem;
    color: var(--orange);
    text-shadow: 0 0 20px rgba(255,106,0,0.8);
}
.cta-banner__headline {
    font-family: "Monoton", sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--parchment);
    text-shadow: 0 0 18px rgba(255,106,0,0.45);
    margin: 0 0 12px;
    position: relative;
    padding-bottom: 12px;
}
.cta-banner__headline::after {
    content: "";
    position: absolute; left: 0; bottom: 0;
    height: 3px; width: 120px;
    background: var(--orange);
    box-shadow: 0 0 12px var(--orange);
    border-radius: 3px;
}
.cta-banner__subtext {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    color: var(--gold-bright);
    margin: 0 0 20px;
}
.cta-banner__note { font-size: 0.82rem; color: var(--muted-foreground); margin: 10px 0 0; }

/* ============================================
   PROVIDER STRIP
   ============================================ */
.provider-strip {
    padding: 22px 0;
    background: linear-gradient(180deg, rgba(42,21,64,0.6), rgba(26,10,46,0.6));
    border-top: 1px solid rgba(255,106,0,0.4);
    border-bottom: 1px solid rgba(255,106,0,0.4);
    box-shadow: 0 0 18px rgba(255,106,0,0.15) inset;
}
.provider-strip__title {
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-size: 0.9rem;
    margin: 0 0 14px;
    text-transform: uppercase;
}
.provider-strip__row {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
}
.provider-chip {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 16px;
    background: rgba(245,235,217,0.05);
    border: 1px solid rgba(200,134,10,0.35);
    border-radius: 8px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    color: var(--gold);
    transition: color .2s ease, border-color .2s ease, background .2s ease;
    text-transform: uppercase;
}
.provider-chip:hover {
    color: var(--orange);
    border-color: var(--orange);
    background: rgba(255,106,0,0.08);
    box-shadow: 0 0 12px rgba(255,106,0,0.35);
}

/* ============================================
   TABLES
   ============================================ */
.table-wrapper {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: linear-gradient(180deg, #2a1540, #1a0a2e);
    box-shadow: var(--shadow-card);
    margin: 1.5em 0;
}
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}
thead {
    background: linear-gradient(180deg, #3d2456, #2a1540);
    border-bottom: 2px solid var(--orange);
}
th {
    text-align: left;
    padding: 14px 16px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    color: var(--orange);
    text-transform: uppercase;
}
td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(200,134,10,0.2);
    color: var(--parchment);
    font-size: 0.95rem;
}
tr:last-child td { border-bottom: none; }
tr.is-recommended td { background: rgba(255,106,0,0.08); }
tr.is-recommended td:first-child { border-left: 3px solid var(--orange); }

/* ============================================
   ENGAGEMENT / CRO PATTERNS
   ============================================ */
.tldr-box {
    padding: 20px 24px;
    margin: 1.5em 0;
    border-left: 4px solid var(--orange);
    border-radius: 10px;
    background: rgba(255,106,0,0.08);
    box-shadow: 0 0 0 1px rgba(255,106,0,0.25) inset;
}
.tldr-box h3, .tldr-box strong:first-child {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin: 0 0 8px;
    text-transform: uppercase;
}

.callout {
    padding: 18px 22px;
    margin: 1.5em 0;
    border-radius: 10px;
    background: rgba(200,134,10,0.08);
    border: 1px solid rgba(200,134,10,0.4);
    color: var(--parchment);
}
.callout--tip { border-color: var(--orange); background: rgba(255,106,0,0.08); }
.callout--warn { border-color: var(--hot-pink); background: rgba(255,45,149,0.08); }
.callout strong { color: var(--gold-bright); }

.pull-quote {
    font-family: "Monoton", sans-serif;
    font-size: clamp(1.3rem, 2.4vw, 1.85rem);
    line-height: 1.35;
    color: var(--parchment);
    padding: 24px 28px;
    margin: 2em 0;
    border-left: 4px solid var(--orange);
    background: rgba(255,106,0,0.06);
    border-radius: 0 12px 12px 0;
    position: relative;
}
.pull-quote::before {
    content: "“";
    position: absolute; top: -8px; left: 16px;
    font-family: "Monoton", sans-serif;
    font-size: 3rem;
    color: var(--orange);
    line-height: 1;
}
.pull-quote cite { display: block; margin-top: 10px; font-family: "Bebas Neue", sans-serif; font-size: 0.9rem; letter-spacing: 0.12em; color: var(--gold); font-style: normal; }

.trust-row {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 12px;
    padding: 20px 0;
}
.trust-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(200,134,10,0.4);
    border-radius: 999px;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.12em;
    color: var(--gold);
    background: rgba(245,235,217,0.03);
}

.social-proof {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) { .social-proof { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.review-card {
    padding: 20px;
    background: linear-gradient(180deg, #2a1540, #1a0a2e);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.review-card__rating { color: var(--orange); font-size: 1.1rem; letter-spacing: 2px; }
.review-card__src { font-size: 0.85rem; color: var(--gold); margin-top: 8px; }

/* Bullet lists */
.seo-content ul { padding-left: 1.2em; }
.seo-content ul li {
    list-style: none;
    position: relative;
    padding-left: 1.4em;
    margin-bottom: 0.5em;
}
.seo-content ul li::before {
    content: "◆";
    position: absolute; left: 0; top: 0;
    color: var(--orange);
}
.seo-content ol { padding-left: 1.4em; }
.seo-content ol li::marker { color: var(--orange); font-weight: 700; }

.seo-content h2 { margin-top: 2em; padding-bottom: 10px; border-bottom: 1px solid rgba(200,134,10,0.3); }
.seo-content h3 { margin-top: 1.6em; color: var(--gold-bright); }
.seo-content p { line-height: 1.7; }
.seo-content a { color: var(--orange); border-bottom: 1px dotted rgba(255,106,0,0.5); }
.seo-content a:hover { border-bottom-color: var(--orange); }

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .animate-on-scroll { opacity: 1; transform: none; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold-bright); }
.text-orange { color: var(--orange); }
.text-muted { color: var(--muted-foreground); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: 40px; }
.mb-lg { margin-bottom: 40px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.split-2 {
    display: grid; gap: 24px;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 900px) { .split-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; align-items: center; } }

.vegas-frame {
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 24px;
    background:
        repeating-linear-gradient(45deg, rgba(255,106,0,0.04) 0 10px, transparent 10px 20px),
        linear-gradient(180deg, #2a1540, #14081f);
    box-shadow: 0 0 0 1px rgba(255,106,0,0.3), var(--shadow-card);
    position: relative;
}
.vegas-frame::before, .vegas-frame::after {
    content: "";
    position: absolute;
    width: 16px; height: 16px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    background: radial-gradient(circle, #ffb066, var(--orange));
    box-shadow: 0 0 10px var(--orange);
}
.vegas-frame::before { top: -10px; left: -10px; }
.vegas-frame::after { bottom: -10px; right: -10px; }

.carpet-pattern {
    background-image:
        radial-gradient(circle at 30% 30%, rgba(255,106,0,0.12) 0%, transparent 30%),
        radial-gradient(circle at 70% 70%, rgba(200,134,10,0.1) 0%, transparent 30%),
        linear-gradient(180deg, #2a1540, #1a0a2e);
}

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
    border-radius: 4px;
}

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

.hero-home { padding-top: 32px; }
.hero-home .hero-art { aspect-ratio: 1 / 1.1; }

.hero-ticks {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}
.hero-ticks li {
    position: relative;
    padding-left: 28px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--parchment);
    text-transform: uppercase;
}
.hero-ticks li::before {
    content: "✦";
    position: absolute; left: 0; top: 0;
    color: var(--orange);
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(255,106,0,0.7);
}

.hero-granny {
    position: absolute;
    right: -12%;
    bottom: -6%;
    width: 70%;
    height: auto;
    pointer-events: none;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.6));
    z-index: 2;
    object-fit: contain;
}
@media (min-width: 1024px) {
    .hero-granny { width: 78%; right: -16%; }
}

.hero-marquee {
    position: absolute;
    top: 16px; left: 16px;
    padding: 8px 14px;
    background: rgba(20,8,31,0.8);
    border: 2px solid var(--orange);
    border-radius: 10px;
    box-shadow: 0 0 18px rgba(255,106,0,0.6), inset 0 0 10px rgba(255,106,0,0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Monoton", sans-serif;
    color: var(--gold-bright);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    z-index: 3;
    animation: neonBlink 3s ease-in-out infinite;
}
.hero-marquee span { text-shadow: 0 0 8px rgba(255,106,0,0.8); }

@keyframes neonBlink {
    0%, 100% { box-shadow: 0 0 18px rgba(255,106,0,0.6), inset 0 0 10px rgba(255,106,0,0.3); }
    50% { box-shadow: 0 0 28px rgba(255,106,0,0.9), inset 0 0 14px rgba(255,106,0,0.5); }
}

/* Payment grid on homepage */
.pay-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
}
@media (min-width: 640px) { .pay-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .pay-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; } }

.pay-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    background: linear-gradient(180deg, #2a1540, #1a0a2e);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.pay-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
    box-shadow: 0 8px 22px rgba(0,0,0,0.5), 0 0 18px rgba(255,106,0,0.3);
}
.pay-card strong {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    color: var(--orange);
    text-transform: uppercase;
}
.pay-card span { color: var(--parchment); font-size: 0.95rem; }
.pay-card small { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* SEO content lists use default color override - inside details/ol */
.seo-content ol li { margin-bottom: 0.5em; line-height: 1.6; }
.seo-content blockquote.pull-quote { margin: 2em 0; }
.seo-content code {
    background: rgba(255,106,0,0.12);
    color: var(--orange-bright);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* ============================================
   CATEGORY TABS (spiele.html)
   ============================================ */
.category-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 14px;
    margin: 0 -4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) transparent;
}
.category-tabs::-webkit-scrollbar { height: 6px; }
.category-tabs::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }
.cat-tab {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 10px 18px;
    background: rgba(42,21,64,0.6);
    border: 1px solid rgba(200,134,10,0.4);
    border-radius: 999px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.14em;
    color: var(--parchment);
    text-transform: uppercase;
    text-decoration: none;
    scroll-snap-align: start;
    transition: background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease, transform .2s ease;
}
.cat-tab span { font-size: 1.15rem; }
.cat-tab:hover {
    color: var(--orange);
    border-color: var(--orange);
    background: rgba(255,106,0,0.1);
    transform: translateY(-2px);
}
.cat-tab.is-active {
    background: linear-gradient(180deg, #ff8a30, #ff6a00);
    border-color: var(--orange);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(255,106,0,0.45), 0 0 14px rgba(255,106,0,0.5);
}
@media (min-width: 768px) {
    .category-tabs { flex-wrap: wrap; justify-content: center; overflow: visible; }
}

/* ============================================
   BONUS REDIRECT STUB
   ============================================ */
.redirect-stub {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 0 80px;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255,106,0,0.25), transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(255,45,149,0.15), transparent 55%),
        linear-gradient(180deg, #1a0a2e 0%, #14081f 100%);
}
.redirect-card {
    max-width: 560px;
    margin: 0 auto;
    padding: 36px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
@media (min-width: 768px) { .redirect-card { padding: 48px 40px; } }

.redirect-art {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px auto 8px;
}
@media (min-width: 768px) { .redirect-art { width: 260px; height: 260px; } }

.redirect-art img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.55));
}
.redirect-halo {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,106,0,0.45), rgba(255,106,0,0.05) 60%, transparent 75%);
    box-shadow: 0 0 60px rgba(255,106,0,0.5);
    animation: haloPulse 2.4s ease-in-out infinite;
    z-index: 1;
}
@keyframes haloPulse {
    0%, 100% { transform: scale(0.92); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
}

.redirect-headline {
    font-family: "Monoton", sans-serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    color: var(--gold-bright);
    text-shadow: 0 0 16px rgba(255,106,0,0.6), 0 0 32px rgba(255,106,0,0.3);
    margin: 0;
    letter-spacing: 0.04em;
    line-height: 1;
}
.redirect-subline {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    letter-spacing: 0.1em;
    color: var(--parchment);
    margin: 0;
    text-transform: uppercase;
}
.redirect-text {
    color: var(--muted-foreground);
    max-width: 42ch;
    margin: 0 auto;
    font-size: 1rem;
}

.loading-dots {
    display: inline-flex;
    gap: 10px;
    margin: 6px 0 10px;
}
.loading-dots span {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 12px rgba(255,106,0,0.8);
    animation: dotBounce 1.4s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.18s; background: var(--gold-bright); box-shadow: 0 0 12px rgba(200,134,10,0.8); }
.loading-dots span:nth-child(3) { animation-delay: 0.36s; background: var(--hot-pink); box-shadow: 0 0 12px rgba(255,45,149,0.8); }

@keyframes dotBounce {
    0%, 80%, 100% { transform: translateY(0) scale(0.9); opacity: 0.6; }
    40% { transform: translateY(-10px) scale(1.1); opacity: 1; }
}

.redirect-fallback {
    font-size: 0.92rem;
    color: var(--muted-foreground);
    margin: 4px 0 0;
}
.redirect-fallback a { color: var(--orange); border-bottom: 1px dotted rgba(255,106,0,0.5); }

.redirect-note {
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.02em;
    margin: 14px 0 0;
    max-width: 46ch;
    line-height: 1.5;
}
.redirect-back {
    font-size: 0.88rem;
    color: var(--muted-foreground);
    margin: 4px 0 0;
}
.redirect-back a { color: var(--parchment); }
.redirect-back a:hover { color: var(--orange); }