/* ============================================
   LEGIANO CASINO - DARK ROMAN FANTASY
   Design tokens, typography, components
   ============================================ */

:root {
    --background: #0a0807;
    --foreground: #f5ecd7;
    --card: #15110d;
    --card-foreground: #f5ecd7;
    --popover: #15110d;
    --popover-foreground: #f5ecd7;
    --primary: #f4c430;
    --primary-foreground: #0a0807;
    --secondary: #8b1a1a;
    --secondary-foreground: #f5ecd7;
    --muted: #2a2520;
    --muted-foreground: #c9b896;
    --accent: #ffb347;
    --accent-foreground: #0a0807;
    --destructive: #9b2c1f;
    --destructive-foreground: #f5ecd7;
    --border: #3a3228;
    --input: #1f1a14;
    --ring: #f4c430;
}

/* ============================================
   OVERFLOW PREVENTION
   ============================================ */
*, *::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; }
p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; }
section { overflow: clip; }

/* ============================================
   BASE & TYPOGRAPHY
   Cinzel for monumental headlines, Inter Tight for body
   ============================================ */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: "Inter Tight", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    min-height: 100vh;
    background-image:
        radial-gradient(ellipse at top, rgba(244,196,48,0.06), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(220,53,69,0.05), transparent 60%);
}

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

h1 { font-size: clamp(2.5rem, 6vw + 1rem, 4.5rem); font-weight: 800; letter-spacing: 0.04em; }
h2 { font-size: clamp(2rem, 3vw + 1rem, 3.25rem); font-weight: 600; }
h3 { font-size: clamp(1.5rem, 1.5vw + 1rem, 2.125rem); font-weight: 600; }
h4 { font-size: clamp(1.2rem, 0.8vw + 1rem, 1.5rem); }

p { margin: 0 0 1.5em; max-width: 72ch; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
strong, b { color: var(--primary); font-weight: 600; }
em { font-style: italic; }

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

/* Eyebrow labels */
.eyebrow {
    display: inline-block;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 0.2em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75em;
    position: relative;
    padding-left: 28px;
}
.eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--primary);
    transform: translateY(-50%);
}

/* Pull quote */
.pull-quote {
    font-family: "Cinzel", serif;
    font-style: italic;
    font-size: clamp(1.25rem, 1vw + 1rem, 1.75rem);
    line-height: 1.4;
    padding: 1rem 0 1rem 1.5rem;
    border-left: 3px solid var(--primary);
    color: var(--foreground);
    margin: 2rem 0;
    max-width: 56ch;
}
.pull-quote cite { display: block; font-size: 0.875rem; font-style: normal; color: var(--muted-foreground); margin-top: .75rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* Skip link */
.skip-link {
    position: absolute; top: -100px; left: 1rem;
    background: var(--primary); color: var(--primary-foreground);
    padding: .75rem 1.25rem; border-radius: 4px; z-index: 10000;
    font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.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; }

/* ============================================
   LAYOUT WRAPPERS
   ============================================ */
.container-wide { max-width: 1240px; margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 1.25rem; }
.dark-arena { position: relative; }

section.page-section { padding: 64px 0; position: relative; }
@media (min-width: 1024px) { section.page-section { padding: 112px 0; } }

/* Torch divider between sections */
.torch-divider {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; padding: 2rem 0; opacity: 0.7;
}
.torch-divider::before, .torch-divider::after {
    content: ""; flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    max-width: 280px;
}
.torch-divider-icon {
    width: 32px; height: 32px;
    color: var(--primary);
}

/* ============================================
   HEADER
   Sticky, semi-transparent blurred, gold accents
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 8, 7, 0.88);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.header-inner {
    max-width: 1240px; margin: 0 auto;
    padding: 0.875rem 1.25rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
}
.site-brand {
    display: inline-flex; align-items: center; gap: 0.75rem;
    color: var(--foreground); font-family: "Cinzel", serif;
    font-weight: 700; font-size: 1.25rem; letter-spacing: 0.08em;
    text-transform: uppercase;
}
.site-brand .logo {
    width: 44px; height: 44px; border-radius: 50%;
    background: radial-gradient(circle, var(--primary), #b8860b);
    padding: 4px;
    box-shadow: 0 0 16px rgba(244,196,48,0.4);
}
.brand-text em {
    color: var(--primary); font-style: normal; margin-left: .25em;
}

.primary-nav { display: flex; align-items: center; gap: 2rem; }
.nav-list {
    display: flex; gap: 1.75rem; list-style: none;
    margin: 0; padding: 0;
}
.nav-list a {
    font-family: "Cinzel", serif;
    color: var(--foreground);
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 0.15em;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color .2s;
}
.nav-list a:hover { color: var(--primary); }
.nav-list a::after {
    content: ""; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px; background: var(--primary);
    transform: scaleX(0); transform-origin: left;
    transition: transform .25s ease;
}
.nav-list a:hover::after { transform: scaleX(1); }

.nav-cta-group { display: flex; gap: 0.75rem; align-items: center; }

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
}
.mobile-menu-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--primary); border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1023px) {
    .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(10,8,7,0.96); }
    .mobile-menu-toggle { display: flex; }
    .primary-nav {
        display: none;
        position: fixed;
        top: 73px; left: 0; right: 0; bottom: 0;
        background: var(--background);
        flex-direction: column;
        align-items: stretch;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        overflow-y: auto;
        z-index: 999;
        border-top: 1px solid var(--border);
    }
    .primary-nav.is-open { display: flex; }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }
    .nav-list li { border-bottom: 1px solid var(--border); }
    .nav-list a {
        display: flex; align-items: center;
        min-height: 56px; font-size: 1rem;
        padding: 1rem 0;
    }
    .nav-cta-group { flex-direction: column; align-items: stretch; gap: 0.75rem; margin-top: auto; padding-top: 1.5rem; }
    .nav-cta-group .btn { width: 100%; justify-content: center; }
}

/* ============================================
   BUTTONS
   Gold-filled CTAs, gold-outline secondary, ghost
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem;
    font-family: "Cinzel", serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    min-height: 48px;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .22s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
}
.btn-lg { min-height: 56px; padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { min-height: 40px; padding: 0.5rem 1rem; font-size: 0.75rem; }

.btn-gold {
    background: linear-gradient(135deg, #f4c430, #b8860b 60%, #f4c430);
    background-size: 200% 100%;
    color: #0a0807;
    border-color: #f4c430;
    box-shadow: 0 4px 16px rgba(244,196,48,0.25);
}
.btn-gold::before {
    content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    transition: left .6s;
}
.btn-gold:hover { background-position: 100% 0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,196,48,0.45); color: #0a0807; }
.btn-gold:hover::before { left: 100%; }

.btn-gold-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-gold-outline:hover { background: var(--primary); color: var(--primary-foreground); }

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
    position: relative;
    padding: 80px 0 64px;
    overflow: hidden;
    isolation: isolate;
}
@media (min-width: 1024px) { .hero { padding: 140px 0 96px; } }

.hero-bg {
    position: absolute; inset: 0; z-index: -2;
    background-size: cover; background-position: center;
}
.hero-bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,8,7,0.6) 0%, rgba(10,8,7,0.85) 100%);
}

.hero-inner {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    grid-template-columns: 1fr;
    position: relative;
}
@media (min-width: 768px) {
    .hero-inner { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 3rem; }
}
.hero-text h1 { margin-bottom: 1rem; }
.hero-text h1 .gold { color: var(--primary); }
.hero-lede {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 56ch;
    margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.hero-meta {
    display: flex; flex-wrap: wrap; gap: 1.25rem;
    font-size: 0.875rem; color: var(--muted-foreground);
    letter-spacing: 0.05em;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-meta strong { color: var(--primary); }

.hero-visual { position: relative; min-height: 320px; }
.hero-visual img { width: 100%; height: auto; display: block; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6)); }

/* Torch flames in hero corners */
.torch {
    position: absolute; width: 60px; height: 120px;
    pointer-events: none; z-index: 2;
}
.torch-left { top: 5%; left: 3%; }
.torch-right { top: 5%; right: 3%; }
.torch .flame {
    display: block; width: 32px; height: 56px;
    margin: 0 auto;
    background: radial-gradient(ellipse at center bottom, #ffb347 0%, #f4c430 30%, #dc3545 70%, transparent 100%);
    border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
    filter: blur(2px);
    box-shadow: 0 0 30px rgba(255,179,71,0.7), 0 0 60px rgba(244,196,48,0.4);
    animation: flicker 2.4s ease-in-out infinite;
    transform-origin: bottom center;
}
.torch .flame::after {
    content: ""; position: absolute; bottom: -8px; left: 50%;
    transform: translateX(-50%);
    width: 12px; height: 30px;
    background: linear-gradient(180deg, #5c3a1d, #2a1a0d);
    border-radius: 4px;
}
@keyframes flicker {
    0%, 100% { transform: scale(1) translateY(0); opacity: 1; }
    25% { transform: scale(1.05, 0.95) translateY(-2px); opacity: 0.9; }
    50% { transform: scale(0.95, 1.05) translateY(1px); opacity: 1; }
    75% { transform: scale(1.02, 0.98) translateY(-1px); opacity: 0.85; }
}

/* ============================================
   INFO CARD
   Used for games, providers, bonuses, VIP tiers, payment methods
   ============================================ */
.card-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) { .card-grid { gap: 1.25rem; grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.card-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px) { .card-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.card-grid.cols-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px) { .card-grid.cols-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .card-grid.cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

.info-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    color: var(--card-foreground);
    transition: transform .22s cubic-bezier(.4,0,.2,1), box-shadow .22s, border-color .22s;
    display: flex; flex-direction: column;
    min-width: 0;
}
.info-card::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(135deg, transparent 0%, transparent 60%, rgba(244,196,48,0.05) 100%);
}
.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(244,196,48,0.18), 0 0 0 1px rgba(244,196,48,0.2);
}
.info-card-media {
    position: relative; aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #1a1410, #0a0807);
    overflow: hidden;
}
.info-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.info-card:hover .info-card-media img { transform: scale(1.05); }

.info-card-badge {
    position: absolute; top: 12px; left: 12px; z-index: 3;
    background: var(--secondary); color: var(--secondary-foreground);
    font-family: "Cinzel", serif;
    font-size: 0.6875rem; letter-spacing: 0.1em;
    text-transform: uppercase; font-weight: 600;
    padding: 0.3rem 0.6rem; border-radius: 4px;
}
.info-card-tag {
    position: absolute; bottom: 12px; right: 12px;
    background: rgba(10,8,7,0.8); color: var(--primary);
    font-size: 0.6875rem; letter-spacing: 0.08em;
    padding: 0.25rem 0.5rem; border-radius: 4px;
    border: 1px solid var(--primary);
}

.info-card-body {
    padding: 1.25rem;
    display: flex; flex-direction: column; gap: 0.5rem;
    flex: 1;
}
.info-card-eyebrow {
    font-family: "Cinzel", serif;
    text-transform: uppercase; font-size: 0.6875rem;
    letter-spacing: 0.18em; color: var(--accent); font-weight: 600;
}
.info-card-title {
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    font-size: 1rem; letter-spacing: 0.06em;
    color: var(--foreground); margin: 0; line-height: 1.3;
}
.info-card-desc {
    color: var(--muted-foreground);
    font-size: 0.9375rem; margin: 0; line-height: 1.55;
}
.info-card-meta {
    display: flex; flex-wrap: wrap; gap: .5rem;
    margin-top: auto; font-size: 0.8125rem;
    color: var(--muted-foreground);
}
.info-card-meta strong { color: var(--primary); }
.info-card-foot { font-size: 0.8125rem; color: var(--primary); font-family: "Cinzel", serif; letter-spacing: 0.1em; text-transform: uppercase; }

/* Laurel corner ornaments */
.laurel-corner {
    position: absolute; width: 28px; height: 28px;
    opacity: 0; transition: opacity .25s;
    background-image: radial-gradient(circle at center, var(--primary), transparent 70%);
}
.laurel-corner::before {
    content: "❦"; position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 16px;
}
.laurel-tl { top: 6px; left: 6px; }
.laurel-br { bottom: 6px; right: 6px; }
.info-card:hover .laurel-corner { opacity: 0.7; }

/* Card variants */
.info-card.variant-bonus .info-card-title { color: var(--primary); font-size: 1.125rem; }
.info-card.variant-bonus .info-card-media { aspect-ratio: 16 / 9; }
.info-card.variant-tier { text-align: center; }
.info-card.variant-tier .info-card-media { aspect-ratio: 1; max-width: 140px; margin: 1.25rem auto 0; background: transparent; }
.info-card.variant-provider .info-card-media { aspect-ratio: 16/9; background: var(--muted); display: flex; align-items: center; justify-content: center; padding: 1rem; }
.info-card.variant-provider .info-card-media img { object-fit: contain; max-height: 100%; }
.info-card.variant-payment .info-card-media { aspect-ratio: 3 / 2; padding: 1rem; background: var(--muted); }
.info-card.variant-payment .info-card-media img { object-fit: contain; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    border-top: 1px solid var(--border);
    background: var(--card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.faq-item {
    border-bottom: 1px solid var(--border);
    position: relative;
}
.faq-item:last-child { border-bottom: none; }
.faq-item[open] { background: rgba(244,196,48,0.04); }
.faq-item[open]::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--secondary);
}
.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    font-family: "Cinzel", serif;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: none;
    min-height: 48px;
    transition: background .2s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: rgba(244,196,48,0.06); }
.faq-flame { font-size: 1.1rem; flex-shrink: 0; }
.faq-q-text { flex: 1; }
.faq-chevron {
    flex-shrink: 0; color: var(--primary);
    transition: transform .25s;
    display: inline-flex;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    padding: 0 1.5rem 1.75rem 3.25rem;
    color: var(--foreground);
    font-size: 0.9375rem;
    line-height: 1.7;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul, .faq-answer ol { margin-bottom: 0.5em; }
.faq-title {
    text-align: center; margin-bottom: 1.5rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: 80px 1.25rem;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(10,8,7,0.85), rgba(10,8,7,0.95)),
        var(--cta-bg, linear-gradient(135deg, #1a1410, #0a0807));
    background-size: cover;
    background-position: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    isolation: isolate;
}
@media (min-width: 1024px) { .cta-banner { padding: 140px 1.25rem; } }
.cta-banner-inner {
    max-width: 760px; margin: 0 auto;
    position: relative; z-index: 2;
}
.cta-banner-title {
    font-size: clamp(1.75rem, 2vw + 1rem, 2.75rem);
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; flex-wrap: wrap;
}
.cta-banner-title .laurel {
    color: var(--primary); opacity: 0.7;
    font-size: 1.5rem;
}
.cta-banner-sub {
    color: var(--foreground); margin: 0 auto 2rem;
    font-size: 1.0625rem; max-width: 56ch;
}
.cta-micro {
    display: block; margin-top: 1.25rem;
    color: var(--muted-foreground);
    font-size: 0.8125rem; letter-spacing: 0.05em;
}
.cta-banner .torch { position: absolute; }
.cta-banner .torch-left { left: 5%; top: 20%; }
.cta-banner .torch-right { right: 5%; top: 20%; }

/* ============================================
   SECTION HEADER
   ============================================ */
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}
.section-head h2 {
    margin-bottom: 1rem;
}
.section-head p {
    color: var(--muted-foreground);
    margin: 0 auto;
}

/* ============================================
   ENGAGEMENT & CRO PATTERNS
   ============================================ */
.tldr-box {
    background: var(--card);
    border: 1px solid var(--primary);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
    position: relative;
}
.tldr-box::before {
    content: "TL;DR - Auf einen Blick";
    display: block; font-family: "Cinzel", serif;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--primary); font-size: 0.8125rem;
    margin-bottom: .75rem; font-weight: 600;
}
.tldr-box p:last-child { margin-bottom: 0; }

.callout {
    background: var(--card);
    border-left: 4px solid var(--accent);
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    margin: 1.75rem 0;
    color: var(--foreground);
}
.callout-warning { border-color: var(--secondary); background: rgba(220,53,69,0.08); }
.callout-tip { border-color: var(--primary); background: rgba(244,196,48,0.06); }
.callout strong { display: block; margin-bottom: .35rem; color: var(--primary); font-family: "Cinzel", serif; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8125rem; }

.stat-grid {
    display: grid; gap: 1rem;
    grid-template-columns: repeat(2, minmax(0,1fr));
    margin: 2rem 0;
}
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.5rem; } }
.stat-highlight {
    text-align: center; padding: 1.5rem 1rem;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 8px; transition: border-color .22s, transform .22s;
}
.stat-highlight:hover { border-color: var(--primary); transform: translateY(-2px); }
.stat-highlight .stat-number {
    display: block;
    font-family: "Cinzel", serif;
    font-size: clamp(1.75rem, 1.5vw + 1rem, 2.5rem);
    color: var(--primary); font-weight: 700;
    line-height: 1;
}
.stat-highlight .stat-label {
    display: block; margin-top: .5rem;
    font-size: 0.875rem; color: var(--muted-foreground);
    letter-spacing: 0.05em;
}
.stat-highlight .stat-source {
    display: block; margin-top: .35rem;
    font-size: 0.6875rem; color: var(--muted-foreground); opacity: 0.7;
}

/* Comparison table */
.cmp-table-wrap { overflow-x: auto; margin: 2rem 0; border-radius: 8px; border: 1px solid var(--border); }
.cmp-table { width: 100%; border-collapse: collapse; background: var(--card); min-width: 480px; }
.cmp-table th, .cmp-table td { padding: 0.875rem 1rem; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.9375rem; }
.cmp-table th { font-family: "Cinzel", serif; font-size: 0.8125rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); background: rgba(244,196,48,0.05); }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody tr:hover { background: rgba(244,196,48,0.04); }
.cmp-table .recommended { background: rgba(244,196,48,0.08); }
.cmp-table .recommended td:first-child { border-left: 3px solid var(--primary); }

/* Trust badges */
.trust-badges {
    display: flex; flex-wrap: wrap; gap: 1rem;
    justify-content: center; padding: 1.5rem 0;
    align-items: center;
}
.trust-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    border: 1px solid var(--border); border-radius: 6px;
    background: var(--card);
    color: var(--muted-foreground);
    font-size: 0.8125rem;
    font-family: "Cinzel", serif; letter-spacing: 0.08em;
}
.trust-badge.age-badge { color: #ff6b6b; border-color: #ff6b6b; font-weight: 700; background: rgba(220,53,69,0.12); }

/* Social proof / review */
.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px; padding: 1.5rem;
}
.review-card .stars { color: var(--primary); letter-spacing: 0.1em; font-size: 1.1rem; margin-bottom: 0.5rem; }
.review-card .author { font-size: 0.8125rem; color: var(--muted-foreground); margin-top: 1rem; }

/* Details/summary */
details.fancy {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 8px; padding: 1rem 1.25rem; margin: 1rem 0;
}
details.fancy summary {
    cursor: pointer; font-family: "Cinzel", serif;
    color: var(--primary); font-weight: 600;
    letter-spacing: 0.05em; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
details.fancy summary::-webkit-details-marker { display: none; }
details.fancy summary::after { content: "+"; font-size: 1.5rem; color: var(--primary); transition: transform .25s; }
details.fancy[open] summary::after { transform: rotate(45deg); }
details.fancy > *:not(summary) { margin-top: 1rem; }

/* ============================================
   PROVIDER STRIP
   ============================================ */
.provider-strip {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1rem;
    align-items: center;
}
@media (min-width: 768px) { .provider-strip { grid-template-columns: repeat(6, minmax(0,1fr)); } }
.provider-strip .provider-tile {
    aspect-ratio: 3/2;
    display: flex; align-items: center; justify-content: center;
    padding: 0.75rem;
    background: rgba(10,8,7,0.4);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: border-color .22s, box-shadow .22s;
    text-align: center;
    font-family: "Cinzel", serif;
    color: var(--foreground);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.provider-strip .provider-tile:hover {
    border-color: var(--primary);
    box-shadow: 0 0 16px rgba(244,196,48,0.25);
    color: var(--primary);
}
.provider-strip .provider-tile img { max-width: 100%; max-height: 56px; object-fit: contain; }

/* ============================================
   PAYMENT METHODS GRID
   ============================================ */
.payment-grid {
    display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 0.5rem;
}
@media (min-width: 480px) { .payment-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.payment-grid .pay-logo {
    padding: 0.5rem 0.625rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 4px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-family: "Cinzel", serif;
    letter-spacing: 0.08em;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #050403;
    color: var(--foreground);
    border-top: 1px solid var(--border);
    padding: 4rem 1.25rem 1.5rem;
    margin-top: 4rem;
}
.footer-inner {
    max-width: 1240px; margin: 0 auto;
    display: grid; gap: 2.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 3rem; } }

.footer-brand-col .footer-brand {
    display: flex; align-items: center; gap: 0.75rem;
    color: var(--foreground); font-family: "Cinzel", serif;
    font-weight: 700; font-size: 1.25rem; letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer-brand .logo {
    width: 40px; height: 40px; border-radius: 50%;
    background: radial-gradient(circle, var(--primary), #b8860b);
    padding: 4px;
}
.footer-tagline {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    max-width: 40ch;
}
.trust-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.footer-title {
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    font-size: 0.9375rem;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin: 0 0 1rem;
    font-weight: 600;
}
.footer-links {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 0.6rem;
}
.footer-links a, .footer-links span {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    transition: color .2s;
}
.footer-links a:hover { color: var(--primary); }

.license-text {
    font-size: 0.8125rem; color: var(--muted-foreground);
    margin-top: 1rem; line-height: 1.5;
}

.footer-bottom {
    max-width: 1240px; margin: 3rem auto 0;
    padding-top: 1.5rem; border-top: 1px solid var(--border);
    text-align: center; font-size: 0.8125rem;
    color: var(--muted-foreground);
}
.footer-bottom p { margin: 0; }

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s 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; }
}

/* Bonus Crab mascot bobble */
.crab-mascot {
    display: inline-block;
    animation: crab-bob 3.5s ease-in-out infinite;
    filter: drop-shadow(0 8px 18px rgba(244,196,48,0.35));
}
@keyframes crab-bob {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* ============================================
   PAGE-SPECIFIC HELPERS
   ============================================ */
.anchor-grid {
    display: grid; gap: 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .anchor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .anchor-grid { grid-template-columns: repeat(4, 1fr); } }
.anchor-card {
    display: block; padding: 1.5rem;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--foreground);
    transition: all .22s;
}
.anchor-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(244,196,48,0.15);
    color: var(--foreground);
}
.anchor-card h3 { font-size: 1.125rem; color: var(--primary); margin-bottom: 0.5rem; }
.anchor-card p { font-size: 0.9375rem; color: var(--muted-foreground); margin: 0; }
.anchor-card .arrow { color: var(--primary); font-family: "Cinzel", serif; margin-top: 0.75rem; display: inline-block; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.75rem; }

/* Breadcrumbs */
.breadcrumbs { font-size: 0.8125rem; color: var(--muted-foreground); margin-bottom: 1rem; letter-spacing: 0.05em; }
.breadcrumbs a { color: var(--muted-foreground); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span[aria-current] { color: var(--primary); }
.breadcrumbs .sep { margin: 0 0.5rem; opacity: 0.5; }

/* Two-column generic */
.two-col {
    display: grid; gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .two-col { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-hero {
    text-align: center;
    position: relative;
    padding: 1rem 0 0;
}
.sitemap-laurel {
    display: block;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.7;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5em;
    padding-left: 0.5em;
}
.sitemap-hero h1 { margin-bottom: 1rem; }
.sitemap-hero .hero-lede { margin: 0 auto 1.5rem; }
.sitemap-crab {
    width: 140px; height: auto;
    display: block;
    margin: 1rem auto 0;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.sitemap-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    transition: border-color .22s, transform .22s, box-shadow .22s;
    overflow: hidden;
}
@media (min-width: 640px) {
    .sitemap-card {
        grid-template-columns: 72px 1fr;
        gap: 1.5rem;
        padding: 1.75rem 2rem;
    }
}
.sitemap-card::before {
    content: "";
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), transparent);
    opacity: 0.6;
}
.sitemap-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(244,196,48,0.18);
}
.sitemap-card:hover .laurel-corner { opacity: 0.7; }

.sitemap-card-num {
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
    letter-spacing: 0.05em;
    width: 72px; height: 72px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--primary);
    border-radius: 50%;
    background: rgba(244,196,48,0.05);
    flex-shrink: 0;
}
.sitemap-card-body { min-width: 0; }
.sitemap-card-title {
    font-family: "Cinzel", serif;
    font-size: clamp(1.125rem, 0.6vw + 1rem, 1.375rem);
    color: var(--primary);
    margin: 0.4rem 0 0.75rem;
    letter-spacing: 0.04em;
    line-height: 1.3;
}
.sitemap-card-title a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .22s, color .22s;
}
.sitemap-card-title a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}
.sitemap-card-body p {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0 0 0.75rem;
}
.sitemap-card-path {
    display: inline-block;
    font-family: "Inter Tight", monospace;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    background: var(--input);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    border: 1px solid var(--border);
}

/* Step flow */
.step-flow {
    display: grid; gap: 1rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}
@media (min-width: 768px) { .step-flow { grid-template-columns: repeat(4, 1fr); } }
.step-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 10px; padding: 1.5rem;
    position: relative;
}
.step-card .step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%; background: var(--primary); color: var(--primary-foreground);
    font-family: "Cinzel", serif; font-weight: 700; font-size: 1.125rem;
    margin-bottom: 1rem;
}
.step-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--muted-foreground); font-size: 0.9375rem; margin: 0; }