/* ============================================
   CRAZYBUZZER CASINO - ROYAL FANTASY DESIGN SYSTEM
   Mobile-first. Always dark. Gold + black + magenta.
   ============================================ */

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

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

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

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

.table-wrapper { max-width: 100%; overflow-x: auto; min-width: 0; }
.table-wrapper:focus { outline: 2px solid var(--ring); outline-offset: 2px; }

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

input, textarea, select { max-width: 100%; box-sizing: border-box; }

section { overflow: clip; position: relative; }

/* ============================================
   BASE - Typography & Reset
   Cinzel Decorative for headings, Rubik for body
   ============================================ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: "Rubik", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(circle at 10% 0%, rgba(255, 193, 7, 0.08), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(107, 31, 58, 0.18), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.04), transparent 60%);
    background-attachment: fixed;
    overflow-x: hidden;
}

@media (min-width: 1024px) {
    body { font-size: 17px; }
}

h1, h2, h3, h4, h5 {
    font-family: "Cinzel Decorative", "Cinzel", "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.6em;
    letter-spacing: 0.02em;
    color: var(--foreground);
}

h1 { font-size: clamp(1.85rem, 5vw + 0.5rem, 2.75rem); font-weight: 900; }
h2 { font-size: clamp(1.55rem, 3.5vw + 0.5rem, 2.125rem); }
h3 { font-size: clamp(1.2rem, 1.5vw + 0.6rem, 1.5rem); font-weight: 700; }
h4 { font-size: 1.125rem; }

.gold-text,
.section-title,
.hero-title,
h1, h2, h3 {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 1px 0 rgba(255, 193, 7, 0.15);
    filter: drop-shadow(0 2px 8px rgba(255, 193, 7, 0.25));
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

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

ul, ol { padding-left: 1.25em; }
li { margin-bottom: 0.4em; }

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 18px;
    z-index: 9999;
    font-weight: 600;
}
.skip-link:focus { top: 0; }

:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 3px;
    border-radius: 4px;
}

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

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

.section-eyebrow {
    display: inline-block;
    font-family: "Cinzel Decorative", serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-2);
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid var(--border-strong);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    -webkit-text-fill-color: var(--primary-2);
}

.section-title {
    margin-bottom: 0.5em;
}

.section-lead {
    color: var(--muted-foreground);
    max-width: 760px;
    margin: 0 0 var(--space-xl);
    font-size: 1.0625rem;
    line-height: 1.65;
}

.section-head {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.section-head .section-lead { margin-left: auto; margin-right: auto; }

/* ============================================
   HEADER - Fixed top bar with logo, nav, CTAs
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(14, 11, 8, 0.85);
    border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
    .site-header {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        background: rgba(14, 11, 8, 0.78);
    }
}
.site-header::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.6;
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    height: var(--header-h);
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
@media (min-width: 1024px) { .header-inner { padding: 0 32px; } }

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--foreground);
    flex-shrink: 0;
}
.brand:hover { text-decoration: none; }

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 12px rgba(255,193,7,0.45);
    object-fit: cover;
    background: var(--card);
}
@media (min-width: 1024px) {
    .logo { width: 48px; height: 48px; }
}

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: "Cinzel Decorative", serif;
    font-weight: 900;
    font-size: 1.125rem;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--muted-foreground);
    text-transform: uppercase;
    margin-top: 2px;
}

/* Desktop nav */
.main-nav {
    display: none;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: flex-end;
}
@media (min-width: 1024px) {
    .main-nav { display: flex; }
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    align-items: center;
}
.nav-list li { margin: 0; }

.nav-link {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 14px;
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background .25s var(--ease), color .25s var(--ease);
}
.nav-link:hover {
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary-2);
    text-decoration: none;
}

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

/* Mobile menu toggle */
.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
    gap: 5px;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform .28s var(--ease), opacity .28s var(--ease);
    transform-origin: center;
}
.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); }

/* 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:
            radial-gradient(circle at 50% 0%, rgba(255,193,7,0.12), transparent 60%),
            radial-gradient(circle at 80% 100%, rgba(107,31,58,0.25), transparent 50%);
        z-index: 999;
        display: none;
        flex-direction: column;
        padding: 28px 24px 40px;
        overflow-y: auto;
        border-top: 1px solid var(--border);
    }
    .main-nav.is-open {
        display: flex;
    }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
    }
    .nav-list li { width: 100%; }
    .nav-link {
        min-height: 56px;
        height: auto;
        font-family: "Cinzel Decorative", serif;
        font-size: 1.25rem;
        font-weight: 700;
        padding: 14px 18px;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        background: var(--gold-grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .nav-link:hover {
        background: rgba(255,193,7,0.12);
        -webkit-text-fill-color: transparent;
    }
    .nav-cta {
        flex-direction: column;
        margin-left: 0;
        margin-top: 28px;
        gap: 12px;
        width: 100%;
    }
    .nav-cta .btn {
        width: 100%;
        min-height: 56px;
        font-size: 1.05rem;
    }
}

/* Spacer for fixed header */
main#main-content { padding-top: var(--header-h); }

/* ============================================
   BUTTONS - Primary gold pulse, ghost, etc.
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 22px;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    border-radius: 12px;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
    white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--gold-grad);
    color: var(--primary-foreground);
    box-shadow: 0 4px 14px rgba(255,193,7,0.35);
    font-weight: 700;
    letter-spacing: 0.02em;
}
.btn-primary:hover {
    color: var(--primary-foreground);
    box-shadow: 0 6px 22px rgba(255,193,7,0.55);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
    background: rgba(255,193,7,0.08);
    border-color: var(--primary);
    color: var(--primary-2);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
    border-color: var(--secondary);
}
.btn-secondary:hover { color: var(--secondary-foreground); background: #7e2647; }

.btn-block { width: 100%; }
.btn-slot { margin: 0 16px 16px; width: calc(100% - 32px); height: 52px; }
.btn-xl {
    min-height: 64px;
    padding: 18px 36px;
    font-size: 1.125rem;
    border-radius: 16px;
}
.btn-lg {
    min-height: 56px;
    padding: 16px 28px;
    font-size: 1.05rem;
    border-radius: 14px;
}

/* Pulse animation for primary CTAs */
@keyframes goldPulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(255,193,7,0.35), 0 0 0 rgba(255,193,7,0.6); }
    50%      { box-shadow: 0 6px 24px rgba(255,193,7,0.65), 0 0 24px rgba(255,193,7,0.6); }
}
.btn-pulse { animation: goldPulse 1.8s ease-in-out infinite; }

/* Sticky mobile CTA */
.sticky-mobile-cta-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 900;
}
@media (min-width: 1024px) { .sticky-mobile-cta-nav { display: none; } }
.sticky-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 56px;
    padding: 12px 22px;
    background: var(--gold-grad);
    color: var(--primary-foreground);
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-size: 1.0625rem;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0,0,0,0.5), 0 0 24px rgba(255,193,7,0.45);
    animation: goldPulse 1.8s ease-in-out infinite;
}
.sticky-mobile-cta:hover { color: var(--primary-foreground); }
.crown-emoji { font-size: 1.2em; }

@media (min-width: 1024px) { .sticky-mobile-cta { display: none; } }

/* Tablet footer fix - 2x2 grid prevents overflow */
@media (min-width: 768px) and (max-width: 1023.98px) {
    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
    }
    .footer-col { min-width: 0; }
    .payment-list { gap: 6px; }
    .pay-chip { padding: 6px 10px; font-size: 0.75rem; }
}

/* ============================================
   HERO - Royal full-bleed scene
   ============================================ */
.hero {
    position: relative;
    padding: 56px 0 64px;
    overflow: clip;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(255,193,7,0.18), transparent 55%),
        radial-gradient(ellipse at 80% 90%, rgba(107,31,58,0.35), transparent 60%),
        linear-gradient(180deg, var(--background-2), var(--background));
}
@media (min-width: 1024px) { .hero { padding: 96px 0 112px; } }

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255,215,0,0.12), transparent 8%),
        radial-gradient(circle at 70% 60%, rgba(255,215,0,0.10), transparent 6%),
        radial-gradient(circle at 90% 30%, rgba(236,72,153,0.10), transparent 8%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
@media (min-width: 900px) {
    .hero-inner { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
}

.hero-content { text-align: center; }
@media (min-width: 900px) { .hero-content { text-align: left; } }

.hero-title {
    font-size: clamp(1.95rem, 5vw + 0.6rem, 3.25rem);
    margin-bottom: 18px;
}
.hero-sub {
    font-size: 1.05rem;
    color: var(--muted-foreground);
    margin-bottom: 28px;
    max-width: 540px;
}
@media (min-width: 900px) { .hero-sub { margin-left: 0; margin-right: 0; } }
@media (max-width: 899.98px) { .hero-sub { margin-left: auto; margin-right: auto; } }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}
@media (min-width: 900px) { .hero-actions { justify-content: flex-start; } }

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: center;
    align-items: center;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}
@media (min-width: 900px) { .hero-trust { justify-content: flex-start; } }

.hero-mascot {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 540px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 60px rgba(255,193,7,0.25);
    border: 1px solid var(--border-strong);
}
.hero-mascot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-mascot::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 50%, rgba(14,11,8,0.6));
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   CARDS - General card styling
   ============================================ */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    min-width: 0;
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
@media (min-width: 1024px) { .card { padding: 28px; } }
.card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 24px rgba(255,193,7,0.18);
}

/* ============================================
   SLOT CARDS - Grid 4/2/2
   ============================================ */
.slots-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) { .slots-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .slots-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.slot-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
    min-width: 0;
}
.slot-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 16px 36px rgba(0,0,0,0.5), 0 0 28px rgba(255,193,7,0.35);
}
.slot-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--background-2);
    overflow: hidden;
}
.slot-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
}
.slot-card:hover .slot-card-media img { transform: scale(1.05); }

.slot-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-family: "Cinzel Decorative", serif;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    box-shadow: 0 0 14px rgba(236,72,153,0.55);
}
.slot-badge-hot { background: #b8266e; color: #fff; }
.slot-badge-neu { background: var(--gold-grad); color: var(--primary-foreground); box-shadow: 0 0 14px rgba(255,193,7,0.55); }
.slot-badge-top { background: var(--secondary); color: #fff; }

.slot-seal {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 11, 8, 0.75);
    border: 1px solid var(--primary);
    border-radius: 50%;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(255,193,7,0.4);
}

.slot-card-body { padding: 14px 16px 8px; flex: 1; }
.slot-card-title {
    font-size: 1.05rem;
    margin: 0 0 6px;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.25;
}
.slot-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--muted-foreground);
}
.slot-rtp {
    color: var(--primary-2);
    font-weight: 600;
}

/* ============================================
   BONUS CARDS - Big numbers, gold seal
   ============================================ */
.bonus-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .bonus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) {
    .bonus-grid.bonus-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.bonus-card {
    position: relative;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,193,7,0.12), transparent 60%),
        var(--card-2);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    overflow: hidden;
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
    display: flex;
    flex-direction: column;
}
@media (min-width: 1024px) { .bonus-card { padding: 36px 28px; } }
.bonus-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 18px 40px rgba(0,0,0,0.55), 0 0 28px rgba(255,193,7,0.3);
}
.bonus-card-featured {
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(255,193,7,0.35);
}

.bonus-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 0% 0%, rgba(255,215,0,0.08), transparent 30%),
        radial-gradient(circle at 100% 100%, rgba(255,215,0,0.08), transparent 30%);
    pointer-events: none;
}

.bonus-seal {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 14px rgba(255,193,7,0.5);
    border: 2px solid var(--background);
}
.seal-inner {
    font-family: "Cinzel Decorative", serif;
    font-weight: 900;
    color: var(--primary-foreground);
    font-size: 1.1rem;
}

.bonus-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.bonus-amount {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(2.75rem, 8vw, 4.25rem);
    font-weight: 900;
    line-height: 1;
    margin: 12px 0 18px;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 18px rgba(255,193,7,0.45));
}

.bonus-title {
    font-size: 1.4rem;
    margin: 0 0 10px;
}

.bonus-desc {
    color: var(--muted-foreground);
    margin-bottom: 18px;
}

.bonus-terms {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bonus-terms li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--foreground);
    font-size: 0.95rem;
    margin: 0;
}
.bonus-terms .check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: var(--gold-grad);
    color: var(--primary-foreground);
    font-weight: 900;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.bonus-card .btn { margin-top: auto; }

/* ============================================
   PROVIDER CARDS - Logo grid
   ============================================ */
.provider-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) { .provider-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 1024px) { .provider-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

.provider-card {
    position: relative;
    aspect-ratio: 1 / 1;
    background:
        radial-gradient(circle at 50% 50%, rgba(255,193,7,0.08), transparent 70%),
        var(--card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--foreground);
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
    text-align: center;
    gap: 8px;
}
.provider-card:hover {
    transform: scale(1.04);
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(255,193,7,0.4);
    text-decoration: none;
}

.provider-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(255,193,7,0.4);
    margin-bottom: 8px;
}
.provider-initial {
    font-family: "Cinzel Decorative", serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-foreground);
}
.provider-name {
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-size: 0.95rem;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.provider-games, .provider-tag {
    font-size: 0.8rem;
    color: var(--muted-foreground);
}
.provider-tag {
    color: var(--accent);
    font-weight: 600;
}

/* ============================================
   USP BLOCK - Feature grid
   ============================================ */
.usp-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .usp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .usp-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; } }

.usp-cell {
    text-align: center;
    padding: 24px 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform .3s var(--ease), border-color .3s var(--ease);
    position: relative;
}
@media (min-width: 1024px) { .usp-cell { padding: 28px; } }
.usp-cell:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}
.usp-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: radial-gradient(circle, rgba(255,193,7,0.2), transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-2);
    border: 1px solid var(--primary);
    box-shadow: 0 0 18px rgba(255,193,7,0.25);
}
.usp-cell-title {
    font-size: 1.2rem;
    margin: 0 0 8px;
}
.usp-cell-desc {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    margin: 0;
}
.usp-block-title { text-align: center; margin-bottom: 32px; }

/* ============================================
   FAQ ACCORDION - Royal scrolls
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 880px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 0 18px rgba(255,193,7,0.2);
}

.faq-question {
    cursor: pointer;
    list-style: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: "Cinzel Decorative", serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    user-select: none;
}
@media (min-width: 1024px) {
    .faq-question { padding: 22px 28px; font-size: 1.2rem; }
}
.faq-question::-webkit-details-marker { display: none; }

.faq-seal {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,193,7,0.12);
    border: 1px solid var(--primary);
    border-radius: 50%;
    font-size: 0.95rem;
}

.faq-q-text {
    flex: 1;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 0;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--primary-2);
    transition: transform .28s var(--ease);
    font-size: 1.1rem;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
    padding: 0 20px 20px;
    color: var(--foreground);
    font-size: 1rem;
    line-height: 1.65;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 0;
}
@media (min-width: 1024px) {
    .faq-answer { padding: 16px 28px 28px; font-size: 1.0625rem; }
}
.faq-answer p:first-child { margin-top: 0; }

/* ============================================
   CTA BANNER - Full-bleed conversion section
   ============================================ */
.cta-banner {
    position: relative;
    padding: 64px 20px;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255,193,7,0.18), transparent 60%),
        linear-gradient(180deg, var(--background-2), var(--card-2));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: clip;
}
@media (min-width: 1024px) { .cta-banner { padding: 96px 32px; } }

.cta-banner-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.cta-coin {
    position: absolute;
    color: var(--primary);
    opacity: 0.2;
    font-size: 36px;
    text-shadow: 0 0 20px rgba(255,193,7,0.6);
}
.coin-1 { top: 12%; left: 8%; font-size: 28px; }
.coin-2 { top: 70%; right: 10%; font-size: 44px; }
.coin-3 { top: 30%; right: 20%; font-size: 22px; }
.cta-eye {
    position: absolute;
    top: 50%;
    left: 5%;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.08;
    transform: translateY(-50%);
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-banner-mascot {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 0 40px rgba(255,193,7,0.45);
    flex-shrink: 0;
}
.cta-banner-mascot img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 1024px) {
    .cta-banner-mascot { width: 240px; height: 240px; }
}

.cta-banner-title {
    font-size: clamp(1.7rem, 3.5vw + 0.6rem, 2.5rem);
    margin: 0 0 12px;
}

.cta-banner-sub {
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    max-width: 640px;
    margin: 0 auto 8px;
}

.cta-microcopy {
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--muted-foreground);
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

/* ============================================
   BADGES & CHIPS
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid var(--border-strong);
    color: var(--foreground);
    background: rgba(255,255,255,0.04);
}
.badge-age { border-color: var(--destructive); color: #ff8585; }
.badge-license { border-color: var(--primary); color: var(--primary-2); }
.badge-secure { border-color: var(--accent); color: #ff8fc7; }
.badge-age-sm, .badge-license-sm {
    font-size: 0.7rem;
    padding: 2px 8px;
}
.badge-age-sm { border-color: var(--destructive); color: #ff9595; }
.badge-license-sm { border-color: var(--primary); color: var(--primary-2); }

.pay-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: var(--card);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--foreground);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, var(--background), #07050307);
    border-top: 1px solid var(--border);
    padding: 56px 0 24px;
    margin-top: 64px;
    position: relative;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 1024px) {
    .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 0 32px; }
}

.footer-col { min-width: 0; }

.footer-tag {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    margin: 14px 0 18px;
}

.footer-title {
    font-family: "Cinzel Decorative", serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 16px;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-list a {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    text-decoration: none;
}
.footer-list a:hover { color: var(--primary-2); text-decoration: none; }

.payment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.payment-list li { margin: 0; }

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.responsible-bar {
    border-top: 1px solid var(--border);
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted-foreground);
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}
.responsible-bar a { color: var(--primary-2); }

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted-foreground);
    padding: 16px 20px 8px;
}

/* Mobile: account for sticky CTA */
@media (max-width: 1023.98px) {
    .site-footer { padding-bottom: 96px; }
}

/* ============================================
   CONTENT - Tables, blockquotes, callouts
   ============================================ */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border-strong);
    margin: 24px 0;
    background: var(--card);
}

table.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}
.data-table th, .data-table td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    vertical-align: top;
}
.data-table thead th {
    background: linear-gradient(180deg, rgba(255,193,7,0.18), rgba(255,193,7,0.06));
    color: var(--primary-2);
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
    white-space: nowrap;
}
.data-table tbody tr:hover { background: rgba(255,193,7,0.04); }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table .recommended {
    background: rgba(255,193,7,0.08);
    font-weight: 600;
    color: var(--primary-2);
}

blockquote.pull-quote {
    margin: 32px 0;
    padding: 24px 28px;
    border-left: 4px solid var(--primary);
    background: var(--card);
    border-radius: var(--radius-sm);
    font-family: "Cinzel Decorative", serif;
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--foreground);
    position: relative;
}
blockquote.pull-quote cite {
    display: block;
    font-family: "Rubik", sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    color: var(--muted-foreground);
    margin-top: 14px;
}

.callout {
    border-radius: var(--radius);
    padding: 20px 22px;
    margin: 24px 0;
    background: var(--card);
    border: 1px solid var(--border-strong);
    border-left: 4px solid var(--primary);
}
.callout.callout-tip { border-left-color: var(--primary); background: rgba(255,193,7,0.06); }
.callout.callout-warn { border-left-color: var(--destructive); background: rgba(239,68,68,0.06); }
.callout.callout-info { border-left-color: var(--accent); background: rgba(236,72,153,0.06); }
.callout-title {
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary-2);
}

.tldr {
    background:
        radial-gradient(circle at 0% 0%, rgba(255,193,7,0.12), transparent 60%),
        var(--card);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin: 24px 0 32px;
    box-shadow: 0 0 18px rgba(255,193,7,0.15);
}
.tldr-label {
    display: inline-block;
    font-family: "Cinzel Decorative", serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-foreground);
    background: var(--gold-grad);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.stat-highlight {
    text-align: center;
    padding: 20px;
}
.stat-highlight .stat-number {
    display: block;
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 900;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.stat-highlight .stat-label {
    display: block;
    margin-top: 8px;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}
.stat-highlight .stat-source {
    display: block;
    margin-top: 4px;
    color: var(--muted-foreground);
    font-size: 0.78rem;
    font-style: italic;
}

.stats-row {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) { .stats-row { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.stats-row .stat-highlight {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

/* SEO text block - two columns */
.seo-prose {
    column-count: 1;
    column-gap: 40px;
    color: var(--foreground);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 1080px;
    margin: 0 auto;
}
@media (min-width: 1024px) { .seo-prose { column-count: 2; } }
.seo-prose p { break-inside: avoid; margin-bottom: 1em; }
.seo-prose h3 {
    column-span: all;
    margin-top: 1.4em;
    margin-bottom: 0.6em;
}

/* Internal link cards */
.linkhub-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .linkhub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .linkhub-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.linkhub-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 22px;
    background: var(--card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--foreground);
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.linkhub-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(255,193,7,0.25);
    color: var(--foreground);
    text-decoration: none;
}
.linkhub-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gold-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-size: 1.4rem;
    box-shadow: 0 0 16px rgba(255,193,7,0.35);
}
.linkhub-title {
    font-family: "Cinzel Decorative", serif;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}
.linkhub-desc {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin: 0;
}
.linkhub-arrow {
    margin-top: auto;
    color: var(--primary-2);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Provider filter chips */
.provider-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 8px;
}
.filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 18px;
    background: var(--card);
    color: var(--foreground);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.filter-chip:hover {
    border-color: var(--primary);
    color: var(--primary-2);
}
.filter-chip.is-active {
    background: var(--gold-grad);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: 0 0 18px rgba(255,193,7,0.45);
}

.slot-card.is-hidden { display: none; }

/* Trust badges row */
.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
    opacity: 0.85;
}

/* Comparison split */
.split-2 {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 900px) {
    .split-2 { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.split-2 img { border-radius: var(--radius); border: 1px solid var(--border-strong); display: block; }

/* Step list / numbered process */
.steps-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    counter-reset: step-counter;
}
.steps-list li {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    counter-increment: step-counter;
    margin: 0;
}
.steps-list li::before {
    content: counter(step-counter);
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-grad);
    color: var(--primary-foreground);
    font-family: "Cinzel Decorative", serif;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

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

/* Floating coins parallax */
.floating-coin {
    position: absolute;
    pointer-events: none;
    color: var(--primary);
    opacity: 0.18;
    text-shadow: 0 0 16px rgba(255,193,7,0.5);
    animation: float 8s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* ============================================
   REDIRECT STUB (bonus.html)
   ============================================ */
.redirect-stub {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255,193,7,0.18), transparent 60%),
        var(--background);
    text-align: center;
}
.redirect-stub-inner { max-width: 520px; margin: 0 auto; }
.redirect-mascot {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
}
.redirect-mascot img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 0 40px rgba(255,193,7,0.5);
}
.redirect-ring {
    position: absolute;
    inset: -14px;
    border: 2px dashed var(--primary);
    border-radius: 50%;
    animation: spin 3.5s linear infinite;
    opacity: 0.6;
}
@keyframes spin { to { transform: rotate(360deg); } }
.redirect-title {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 12px;
}
.redirect-sub { color: var(--muted-foreground); }
.redirect-spinner {
    margin: 24px auto 0;
    width: 36px;
    height: 36px;
    border: 3px solid var(--border-strong);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.redirect-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.redirect-brand .brand-name {
    font-family: "Cinzel Decorative", serif;
    font-weight: 900;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.redirect-brand img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--primary); }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gold {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.no-pad-top { padding-top: 0; }
.no-pad-bot { padding-bottom: 0; }

/* Visually hidden */
.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;
}

/* Spacing for sticky CTA on mobile (prevent content under it) */
@media (max-width: 1023.98px) {
    main#main-content { padding-bottom: 12px; }
}