/* ============================================
   BIZZO CASINO - EPIC FANTASY DESIGN SYSTEM
   Mobile-first, dark-fantasy bison kingdom
   ============================================ */

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

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

body {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse at top, rgba(124, 58, 237, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

img, video, iframe, 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%; font: inherit; }
section { overflow: clip; position: relative; }

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

/* ============================================
   TYPOGRAPHY - Cinzel for heroic, Manrope for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: var(--foreground);
    margin: 0 0 0.6em;
}

h1 {
    font-size: clamp(2.2rem, 6vw + 0.5rem, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24 0%, #f5ead6 50%, #d4a017 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.3);
}

h2 { font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2vw + 0.5rem, 1.75rem); }
h4 { font-size: clamp(1.1rem, 1.2vw + 0.5rem, 1.35rem); }

p { margin: 0 0 1.4em; max-width: 72ch; }

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: #ffd54a; text-decoration: underline; }

strong { color: var(--accent); font-weight: 700; }

ul, ol { padding-left: 1.5em; margin: 0 0 1.4em; }
li { margin-bottom: 0.5em; }

/* Links inside body paragraphs / callouts must be underlined for a11y contrast */
.seo-content p a,
.callout p a,
.legal-text a {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

/* ============================================
   CONTAINERS & LAYOUT
   ============================================ */
.container-xl, .container-md, .container-sm {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.container-xl { max-width: 1280px; }
.container-md { max-width: 960px; }
.container-sm { max-width: 640px; }

@media (min-width: 768px) {
    .container-xl, .container-md, .container-sm { padding: 0 32px; }
}

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

.section-heading {
    font-size: clamp(1.8rem, 3.5vw + 0.5rem, 2.75rem);
    text-align: center;
    margin-bottom: 1.5em;
    position: relative;
}
.section-heading::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    margin: 0.6em auto 0;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* ============================================
   BUTTONS - Gold pulsing CTAs
   ============================================ */
.btn-gold, .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    min-height: 48px;
    padding: 12px 28px;
    font-family: 'Cinzel Decorative', serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: 2px solid var(--accent);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease-out;
    text-align: center;
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, #fbbf24 0%, #d4a017 100%);
    color: #1a0a1f;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: #1a0a1f;
    text-decoration: none;
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    text-decoration: none;
}

.btn-sm { min-height: 40px; padding: 8px 18px; font-size: 14px; }
.btn-lg { min-height: 56px; padding: 16px 36px; font-size: 18px; }

.btn-pulse {
    animation: goldPulse 2s ease-in-out infinite;
}
@keyframes goldPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(251, 191, 36, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 4px 32px rgba(251, 191, 36, 0.75), 0 0 40px rgba(251, 191, 36, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
}

/* ============================================
   HEADER - Fixed translucent with gold accent
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(21, 10, 26, 0.92);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

@media (min-width: 769px) {
    .site-header { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--foreground);
    z-index: 1001;
}
.brand:hover { text-decoration: none; color: var(--accent); }
.brand .logo {
    height: 44px;
    width: 44px;
    border-radius: 8px;
    border: 2px solid var(--accent);
    box-shadow: 0 0 16px rgba(251, 191, 36, 0.3);
}
.brand-name {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--accent);
    letter-spacing: 0.03em;
}

/* Nav hidden on mobile by default */
.main-nav {
    display: none;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 28px;
}
.nav-list a {
    color: var(--foreground);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 4px;
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.25s ease-out;
}
.nav-list a:hover { color: var(--accent); text-decoration: none; }
.nav-list a:hover::after { transform: scaleX(1); }

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 2px solid var(--accent);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transition: all 0.25s ease-out;
    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 nav drawer */
@media (max-width: 768px) {
    .main-nav.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        background-image:
            radial-gradient(ellipse at top, rgba(124, 58, 237, 0.3) 0%, transparent 60%),
            linear-gradient(180deg, #150a1a 0%, #1a0e24 100%);
        z-index: 999;
        padding: 32px 24px;
        overflow-y: auto;
        gap: 24px;
        border-top: 2px solid var(--accent);
    }
    .main-nav.is-open .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .main-nav.is-open .nav-list a {
        display: flex;
        align-items: center;
        min-height: 56px;
        padding: 16px 20px;
        font-size: 18px;
        font-family: 'Cinzel Decorative', serif;
        border: 2px solid var(--border);
        border-radius: 12px;
        background: var(--card);
    }
    .main-nav.is-open .nav-list a::after { display: none; }
    .main-nav.is-open .nav-cta-group {
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }
    .main-nav.is-open .nav-cta-group a { width: 100%; }
}

@media (min-width: 1024px) {
    .menu-toggle { display: none; }
    .main-nav {
        display: flex;
        align-items: center;
        gap: 32px;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .menu-toggle { display: flex; }
}

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

/* Header spacer */
main { padding-top: 72px; }

/* ============================================
   FILIGREE CORNER ORNAMENTS (signature motif)
   ============================================ */
.filigree-corners {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.filigree-corners::before,
.filigree-corners::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2px solid var(--accent);
}
.filigree-corners::before {
    top: 6px;
    left: 6px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 12px;
}
.filigree-corners::after {
    bottom: 6px;
    right: 6px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 12px;
}

/* ============================================
   CARDS - Deep indigo with gold borders
   ============================================ */
.card {
    position: relative;
    background: var(--card);
    border: 2px solid var(--border-gold);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(251, 191, 36, 0.1);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
    min-width: 0;
}
@media (min-width: 768px) { .card { padding: 32px; } }
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.3), 0 0 0 2px var(--accent);
}

/* ============================================
   GAME CARD
   ============================================ */
.game-card {
    position: relative;
    background: var(--card);
    border: 2px solid var(--border-gold);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.35);
}
.game-card-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--secondary);
}
.game-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(21, 10, 26, 0.85) 100%);
    pointer-events: none;
}
.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.05em;
    z-index: 2;
}
.game-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.game-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 18px;
    color: var(--foreground);
    margin: 0;
}
.game-provider {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0 0 12px;
}
.game-card-body .btn-gold { margin-top: auto; }

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

/* ============================================
   BONUS CARD
   ============================================ */
.bonus-card {
    position: relative;
    background: linear-gradient(160deg, var(--card) 0%, var(--secondary) 100%);
    border: 2px solid var(--border-gold);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    min-width: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}
@media (min-width: 768px) { .bonus-card { padding: 40px 32px; } }
.bonus-card-featured {
    transform: scale(1);
    border-width: 3px;
    box-shadow: 0 12px 48px rgba(251, 191, 36, 0.4);
}
.bonus-icon-wrap {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bonus-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, transparent 70%);
    animation: slowPulse 3s ease-in-out infinite;
}
@keyframes slowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}
.bonus-icon {
    position: relative;
    font-size: 56px;
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.6));
}
.bonus-amount {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2.2rem, 5vw + 0.5rem, 3.5rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #fbbf24, #ffd54a, #d4a017);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    text-shadow: 0 0 32px rgba(251, 191, 36, 0.4);
}
.bonus-title {
    font-size: 22px;
    color: var(--foreground);
    margin-bottom: 12px;
}
.bonus-desc {
    color: var(--muted-foreground);
    font-size: 16px;
    margin-bottom: 24px;
    max-width: none;
}

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

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--card);
    border: 2px solid var(--border-gold);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.25s;
}
.faq-item[open] { border-color: var(--accent); box-shadow: 0 0 24px rgba(251, 191, 36, 0.2); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    cursor: pointer;
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    color: var(--foreground);
    list-style: none;
    min-height: 48px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 22px;
    font-weight: 700;
    transition: transform 0.3s ease-out;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
    padding: 0 20px 20px;
    border-top: 1px solid var(--border-gold);
    margin-top: 0;
    padding-top: 16px;
    color: var(--foreground);
}
.faq-answer p { margin: 0; color: var(--muted-foreground); }

/* ============================================
   PROVIDER LOGO GRID
   ============================================ */
.provider-section {
    position: relative;
    background: var(--card);
    border: 2px solid var(--border-gold);
    border-radius: 16px;
    padding: 32px 20px;
    margin: 40px 0;
}
@media (min-width: 768px) { .provider-section { padding: 48px 32px; } }
.provider-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.provider-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) { .provider-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .provider-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.provider-tile {
    aspect-ratio: 1;
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: all 0.25s ease-out;
}
.provider-tile:hover {
    background: var(--secondary);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    transform: translateY(-2px);
}
.provider-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted-foreground);
    text-align: center;
    transition: color 0.25s;
}
.provider-tile:hover .provider-name { color: var(--accent); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background: linear-gradient(135deg, #1a0e24 0%, #2d1b4e 50%, #1a0e24 100%);
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    padding: 72px 20px;
    text-align: center;
    overflow: hidden;
    margin: 72px 0;
}
@media (min-width: 1024px) {
    .cta-banner { padding: 120px 32px; }
}
.cta-castle {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at bottom, rgba(124, 58, 237, 0.4) 0%, transparent 70%);
    pointer-events: none;
}
.cta-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.3) 1px, transparent 2px),
        radial-gradient(circle at 60% 70%, rgba(251, 191, 36, 0.25) 1px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.3) 1px, transparent 2px),
        radial-gradient(circle at 30% 80%, rgba(251, 191, 36, 0.25) 1px, transparent 2px);
    background-size: 200px 200px;
    pointer-events: none;
    animation: particleDrift 20s linear infinite;
}
@keyframes particleDrift {
    from { background-position: 0 0, 0 0, 0 0, 0 0; }
    to { background-position: 200px 200px, -200px 200px, 200px -200px, -200px -200px; }
}
.cta-bison {
    display: none;
}
@media (min-width: 1024px) {
    .cta-bison {
        display: block;
        position: absolute;
        left: -40px;
        bottom: 0;
        width: 360px;
        opacity: 0.9;
        pointer-events: none;
        z-index: 1;
    }
}
.cta-content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    z-index: 2;
}
.cta-headline {
    font-size: clamp(1.875rem, 4vw + 0.5rem, 2.75rem);
    margin-bottom: 16px;
    color: var(--foreground);
}
.cta-subline {
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: none;
}
.cta-micro {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 20px;
    margin-bottom: 0;
}

/* ============================================
   PAYMENT METHOD GRID
   ============================================ */
.payment-section {
    position: relative;
    background: var(--card);
    border: 2px solid var(--border-gold);
    border-radius: 16px;
    padding: 32px 20px;
    margin: 40px 0;
}
@media (min-width: 768px) { .payment-section { padding: 48px 32px; } }
.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
@media (min-width: 768px) { .payment-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .payment-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.payment-tile {
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    aspect-ratio: 1;
    transition: all 0.25s ease-out;
}
.payment-tile:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.2);
}
.payment-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 14px;
    font-weight: 900;
    color: var(--foreground);
    text-align: center;
    line-height: 1.1;
}
.payment-label {
    font-size: 12px;
    color: var(--muted-foreground);
    text-align: center;
}

/* ============================================
   HERO SECTION - Full-bleed cinematic
   ============================================ */
.hero {
    position: relative;
    padding: 48px 20px 72px;
    min-height: 560px;
    overflow: hidden;
    background: linear-gradient(135deg, #150a1a 0%, #1f1433 40%, #2d1b4e 100%);
    border-bottom: 2px solid var(--border-gold);
}
@media (min-width: 768px) { .hero { padding: 72px 32px 96px; min-height: 640px; } }
@media (min-width: 1024px) { .hero { padding: 96px 32px 120px; min-height: 720px; } }

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 2;
}
@media (min-width: 1024px) { .hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: 48px; } }

.hero-castle-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 50% 100%, rgba(124, 58, 237, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(251, 191, 36, 0.15) 0%, transparent 40%);
    z-index: 0;
}
.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(251, 191, 36, 0.4) 1px, transparent 2px),
        radial-gradient(circle at 45% 55%, rgba(251, 191, 36, 0.3) 1px, transparent 2px),
        radial-gradient(circle at 75% 35%, rgba(251, 191, 36, 0.35) 1px, transparent 2px),
        radial-gradient(circle at 25% 85%, rgba(251, 191, 36, 0.3) 1px, transparent 2px);
    background-size: 300px 300px;
    z-index: 1;
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--accent);
    border-radius: 999px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.hero-title {
    margin-bottom: 20px;
}
.hero-lead {
    font-size: clamp(17px, 1.5vw + 0.5rem, 20px);
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 60ch;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.hero-mascot {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-mascot img {
    max-width: 100%;
    max-height: 500px;
    filter: drop-shadow(0 20px 40px rgba(124, 58, 237, 0.5)) drop-shadow(0 0 60px rgba(251, 191, 36, 0.3));
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.hero-stat {
    text-align: center;
}
.hero-stat-num {
    display: block;
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(22px, 3vw + 0.5rem, 32px);
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}
.hero-stat-label {
    display: block;
    font-size: 12px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 6px;
}

/* ============================================
   CATEGORY TILES
   ============================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
@media (min-width: 768px) { .category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; } }
.category-grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px) { .category-grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

.category-tile {
    position: relative;
    background: linear-gradient(160deg, var(--card), var(--secondary));
    border: 2px solid var(--border-gold);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    color: var(--foreground);
    transition: all 0.25s ease-out;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.category-tile:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.35);
    color: var(--foreground);
    text-decoration: none;
}
.category-icon {
    font-size: 48px;
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.5));
}
.category-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
.category-desc {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   TRUST BADGES ROW
   ============================================ */
.trust-section {
    padding: 40px 20px;
    background: var(--card);
    border: 2px solid var(--border-gold);
    border-radius: 16px;
    margin: 40px 0;
    position: relative;
}
.trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--muted);
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: var(--foreground);
}
.age-badge {
    background: var(--accent);
    color: var(--accent-foreground);
    border-color: var(--accent);
}

/* ============================================
   TABLES - Comparison tables
   ============================================ */
.table-wrapper {
    margin: 24px 0;
    border: 2px solid var(--border-gold);
    border-radius: 12px;
    overflow: hidden;
}
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    font-size: 15px;
}
thead {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
th {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    color: var(--accent);
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--border-gold);
    white-space: nowrap;
}
td {
    padding: 12px 16px;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
}
tbody tr:hover { background: rgba(251, 191, 36, 0.05); }
tbody tr:last-child td { border-bottom: none; }
.table-highlight td { background: rgba(251, 191, 36, 0.08); font-weight: 600; }

/* ============================================
   ENGAGEMENT COMPONENTS
   ============================================ */
.summary-box {
    background: linear-gradient(135deg, var(--card), var(--secondary));
    border: 2px solid var(--border-gold);
    border-left: 6px solid var(--accent);
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
}
.summary-box h3 {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.summary-box ul { margin-bottom: 0; }

.callout {
    background: var(--muted);
    border: 1px solid var(--border-gold);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    padding: 20px 24px;
    margin: 24px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.callout-icon {
    font-size: 28px;
    flex-shrink: 0;
}
.callout p { margin-bottom: 0; }
.callout p a {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.callout-warning { border-left-color: var(--destructive); }
.callout-tip { border-left-color: var(--accent); }

.stat-highlight {
    text-align: center;
    padding: 24px;
    background: var(--card);
    border: 2px solid var(--border-gold);
    border-radius: 12px;
    margin: 16px 0;
}
.stat-highlight .stat-num {
    display: block;
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}
.stat-highlight .stat-label {
    display: block;
    font-size: 14px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 8px;
}
.stat-highlight .stat-source {
    display: block;
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 8px;
    font-style: italic;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 32px 0;
}
@media (min-width: 768px) { .stat-row { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

blockquote.pull-quote {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(20px, 2vw + 0.5rem, 26px);
    color: var(--accent);
    border-left: 4px solid var(--accent);
    padding: 20px 28px;
    margin: 32px 0;
    background: var(--card);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    line-height: 1.4;
}
blockquote.pull-quote cite {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-style: normal;
    color: var(--muted-foreground);
    margin-top: 12px;
}

/* Answer capsule - first paragraph style */
.answer-capsule {
    font-size: 18px;
    color: var(--foreground);
    background: var(--card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 0 0 24px;
    line-height: 1.6;
    max-width: none;
}
.answer-capsule::first-line { font-weight: 700; }

/* ============================================
   SEO CONTENT BLOCK
   ============================================ */
.seo-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}
.seo-content h2 {
    margin-top: 2em;
    padding-top: 0.5em;
    border-top: 1px solid var(--border);
}
.seo-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.seo-content h3 { margin-top: 1.5em; color: var(--accent); }
.seo-content p, .seo-content li { font-size: 17px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, #0f0615 0%, #150a1a 100%);
    border-top: 2px solid var(--accent);
    padding: 56px 20px 32px;
    color: var(--muted-foreground);
    overflow: hidden;
}
.footer-bison {
    display: none;
}
@media (min-width: 1024px) {
    .footer-bison {
        display: block;
        position: absolute;
        right: 40px;
        top: 40px;
        opacity: 0.3;
        pointer-events: none;
    }
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.footer-brand img { border-radius: 8px; border: 2px solid var(--accent); }
.footer-brand span {
    font-family: 'Cinzel Decorative', serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--accent);
}
.footer-tag {
    font-size: 14px;
    color: var(--muted-foreground);
    max-width: 320px;
}
.footer-heading {
    font-family: 'Cinzel Decorative', serif;
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    color: var(--muted-foreground);
    font-size: 14px;
    text-decoration: none;
}
.footer-col a:hover { color: var(--accent); text-decoration: underline; }

.footer-payments {
    max-width: 1280px;
    margin: 0 auto 32px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.pay-badge {
    padding: 8px 16px;
    background: var(--muted);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--foreground);
}

.footer-legal {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
.footer-legal .trust-row { margin-bottom: 20px; }
.legal-text {
    font-size: 13px;
    color: var(--muted-foreground);
    max-width: 780px;
    margin: 0 auto 16px;
    line-height: 1.6;
}
.copyright {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   ANIMATIONS - GSAP scroll reveal helpers
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.bison-fly-in {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.bison-fly-in.is-visible {
    opacity: 0.9;
    transform: translateX(0);
}

/* Falling gold coins (initial page load) */
.coin-rain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}
.coin {
    position: absolute;
    top: -40px;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 35% 35%, #ffd54a, #d4a017 70%);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.8), inset 0 -4px 0 rgba(0, 0, 0, 0.2);
    animation: coinFall linear forwards;
}
.coin::before {
    content: '€';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a3f00;
    font-weight: 900;
    font-size: 14px;
    font-family: 'Cinzel Decorative', serif;
}
@keyframes coinFall {
    0% { transform: translateY(-40px) rotate(0deg); opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(110vh) rotate(720deg); opacity: 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; }
    .coin-rain { display: none; }
}

/* ============================================
   CALM HERO VARIANT - for technical pages
   ============================================ */
.hero-calm {
    min-height: auto;
    background: linear-gradient(135deg, #150a1a 0%, #1a0e24 50%, #1f1433 100%);
}
.hero-calm .hero-title {
    background: linear-gradient(135deg, #f5ead6 0%, #c4b5d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}
.hero-calm .hero-mascot img {
    max-height: 420px;
    filter: drop-shadow(0 20px 40px rgba(124, 58, 237, 0.4));
}

/* ============================================
   CLAIM PAGE - minimal loader
   ============================================ */
.claim-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    background: radial-gradient(ellipse at center, #2d1b4e 0%, #150a1a 70%);
}
.claim-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    border: 3px solid var(--accent);
    box-shadow: 0 0 32px rgba(251, 191, 36, 0.5);
    margin-bottom: 32px;
}
.claim-wrap h1 {
    font-size: clamp(28px, 4vw + 0.5rem, 40px);
    margin-bottom: 24px;
}
.claim-spinner {
    width: 64px;
    height: 64px;
    border: 4px solid var(--muted);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 24px 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.claim-mascot img {
    max-width: 280px;
    filter: drop-shadow(0 0 40px rgba(251, 191, 36, 0.4));
}
.claim-text {
    color: var(--muted-foreground);
    font-size: 15px;
    margin-top: 24px;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--accent); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-lg { margin-bottom: 48px; }

.checklist {
    list-style: none;
    padding: 0;
}
.checklist li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
}
.checklist li::before {
    content: '⚔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 18px;
}