/*
 * JACK CASINO DESIGN SYSTEM
 * Mobile-first neon crypto casino foundation.
 */

:root {
    --background: #0b1220;
    --foreground: #f2f6fc;
    --card: #16202f;
    --card-foreground: #f2f6fc;
    --popover: #121a29;
    --popover-foreground: #f2f6fc;
    --primary: #22e07a;
    --primary-foreground: #062312;
    --secondary: #0b66f4;
    --secondary-foreground: #f2f6fc;
    --muted: #232f45;
    --muted-foreground: #b8c3d4;
    --accent: #f5b32b;
    --accent-foreground: #1a1206;
    --destructive: #dd0d30;
    --destructive-foreground: #fdf2f4;
    --border: #2c3a55;
    --input: #131b2b;
    --ring: #22e07a;
    --gold-gradient: linear-gradient(135deg, #f5b32b 0%, #ffe08a 46%, #22e07a 100%);
    --blue-gradient: linear-gradient(135deg, #0b66f4 0%, #22e07a 100%);
    --surface-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
    --glow-green: 0 0 28px rgba(34, 224, 122, 0.28);
    --glow-gold: 0 0 34px rgba(245, 179, 43, 0.34);
    --font-heading: "Space Grotesk", sans-serif;
    --font-body: "Outfit", sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 4rem;
    --space-3xl: 6.875rem;
    --radius: 12px;
    --header-height: 72px;
    color-scheme: dark;
}

.dark {
    --background: #0b1220;
    --foreground: #f2f6fc;
    --card: #16202f;
    --card-foreground: #f2f6fc;
    --popover: #121a29;
    --popover-foreground: #f2f6fc;
    --primary: #22e07a;
    --primary-foreground: #062312;
    --secondary: #0b66f4;
    --secondary-foreground: #f2f6fc;
    --muted: #232f45;
    --muted-foreground: #b8c3d4;
    --accent: #f5b32b;
    --accent-foreground: #1a1206;
    --destructive: #dd0d30;
    --destructive-foreground: #fdf2f4;
    --border: #2c3a55;
    --input: #131b2b;
    --ring: #22e07a;
}

/* ============================================
   RESET & OVERFLOW SAFETY - predictable layouts
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 80% 10%, rgba(47, 125, 246, 0.16), transparent 30rem),
        radial-gradient(circle at 10% 20%, rgba(34, 224, 122, 0.10), transparent 26rem),
        var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: clip;
}
img, video, iframe, embed, object, svg { max-width: 100%; height: auto; }
[class*="grid"] > *, [class*="flex"] > *, .card, .info-card, .stat-block { 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; white-space: pre; }
.table-wrapper, [class*="table-"] { min-width: 0; max-width: 100%; overflow-x: auto; }
p, li, td, th { overflow-wrap: break-word; }
a { color: var(--primary); text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
a[href^="http"], code { word-break: break-word; }
input, textarea, select { max-width: 100%; }
section, header, footer { overflow: clip; }

/* ============================================
   TYPOGRAPHY - Space Grotesk headings, Outfit body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 var(--space-md);
    color: var(--foreground);
    font-family: var(--font-heading);
    line-height: 1.12;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.875rem, calc(4vw + 1rem), 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.625rem, calc(2.1vw + 1rem), 2.375rem); font-weight: 650; }
h3 { font-size: clamp(1.25rem, calc(1vw + 1rem), 1.625rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { margin: 0 0 var(--space-lg); max-width: 68ch; }
ul, ol { margin: 0 0 var(--space-lg); padding-left: 1.25rem; }
li + li { margin-top: 0.35rem; }
strong { color: var(--foreground); }
.section-kicker, .eyebrow {
    margin: 0 0 var(--space-sm);
    color: var(--primary);
    font: 700 0.875rem/1.2 var(--font-heading);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.micro-copy, small, figcaption { color: var(--muted-foreground); font-size: 0.875rem; }
.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;
}
.skip-link {
    position: fixed; left: var(--space-md); top: var(--space-md); z-index: 2000;
    padding: 0.75rem 1rem; border-radius: 999px; background: var(--accent); color: var(--accent-foreground);
    transform: translateY(-150%); transition: transform 180ms ease-out;
}
.skip-link:focus { transform: translateY(0); }

/* ============================================
   LAYOUT - mobile-first containers and sections
   ============================================ */
main { min-height: 60vh; }
.container, .section-inner, .site-header__inner, .site-footer__inner {
    width: min(100% - 2rem, 1200px);
    margin-inline: auto;
}
.narrow-container { width: min(100% - 2rem, 800px); margin-inline: auto; }
.section, .content-section { padding-block: var(--space-2xl); }
.full-bleed { width: 100%; }
.grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-md); }
.cards-grid, .info-grid, .stats-grid, .trust-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-md); }
.two-column { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-xl); align-items: center; }

/* ============================================
   HEADER & NAVIGATION - sticky chrome and mobile drawer
   ============================================ */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    min-height: var(--header-height);
    background: rgba(11, 18, 32, 0.98);
    border-bottom: 1px solid rgba(44, 58, 85, 0.9);
}
.site-header__inner {
    min-height: var(--header-height);
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-md);
}
.site-brand {
    display: inline-flex; align-items: center; gap: 0.65rem; min-height: 48px;
    color: var(--foreground); font-family: var(--font-heading); font-weight: 700; text-decoration: none;
    flex-shrink: 0;
}
.site-brand__mark {
    display: grid; place-items: center; width: 2.35rem; height: 2.35rem; border-radius: 10px;
    background: var(--gold-gradient); color: var(--accent-foreground); box-shadow: var(--glow-gold);
}
.primary-nav {
    display: none;
    position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0; z-index: 999;
    background: var(--background); overflow-y: auto; padding: var(--space-lg);
}
.primary-nav.is-open { display: block; }
.primary-nav__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.primary-nav a, .footer-nav a {
    display: flex; align-items: center; min-height: 48px; color: var(--foreground); text-decoration: none;
    border-radius: 10px; padding: 0.75rem 1rem; transition: color 250ms ease-out, background 250ms ease-out;
}
.primary-nav a:hover, .primary-nav a:focus-visible, .footer-nav a:hover, .footer-nav a:focus-visible {
    color: var(--primary); background: rgba(34, 224, 122, 0.08); outline: none;
}
.mobile-menu-toggle {
    position: relative; z-index: 1001; display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 48px; height: 48px; border: 1px solid var(--border); border-radius: 999px; background: var(--card); color: var(--foreground);
}
.mobile-menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin-inline: auto; background: var(--foreground); border-radius: 999px; transition: transform 250ms ease, opacity 250ms ease; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
.header-actions { display: none; align-items: center; gap: var(--space-sm); }

/* ============================================
   BUTTONS & LINKS - gold CTA with gradient hairline
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; min-height: 48px; min-width: 48px;
    padding: 0.85rem 1.25rem; border: 1px solid var(--border); border-radius: 999px;
    font-family: var(--font-heading); font-weight: 700; text-decoration: none; cursor: pointer;
    transition: transform 250ms ease-out, box-shadow 250ms ease-out, background 250ms ease-out;
}
.btn--primary {
    position: relative; border: 0; background: var(--accent); color: var(--accent-foreground);
    box-shadow: 0 0 0 1px rgba(245,179,43,0.55), var(--glow-gold);
}
.btn--primary::before {
    content: ""; position: absolute; inset: -2px; z-index: -1; border-radius: inherit; background: var(--gold-gradient);
}
.btn--ghost { background: rgba(255, 255, 255, 0.03); color: var(--foreground); border-color: rgba(184,195,212,0.45); }
.btn--large { width: 100%; padding-inline: 1.7rem; font-size: 1.05rem; }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); box-shadow: var(--glow-green), var(--glow-gold); outline: none; }
.text-link { font-weight: 700; color: var(--primary); text-decoration: none; }
.text-link:hover, .text-link:focus-visible { text-decoration: underline; outline: none; }

/* ============================================
   HERO - neon crypto ambience and model/image panels
   ============================================ */
.hero, .page-hero {
    position: relative; min-height: 60vh; display: grid; align-items: center; padding-block: var(--space-2xl);
    background:
        linear-gradient(135deg, rgba(34,224,122,0.08) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(245,179,43,0.24), transparent 25rem),
        var(--background);
    background-size: 44px 44px, auto, auto;
}
.hero--blue { background: linear-gradient(135deg, rgba(34,224,122,0.08) 1px, transparent 1px), radial-gradient(circle at 80% 70%, rgba(47,125,246,0.28), transparent 25rem), var(--background); background-size: 44px 44px, auto, auto; }
.hero__inner { width: min(100% - 2rem, 1200px); margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-xl); align-items: center; }
.hero__content p { color: var(--muted-foreground); font-size: 1.06rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; margin-top: var(--space-lg); }
.hero__media {
    border-radius: 24px; overflow: clip; background: var(--card); border: 1px solid rgba(34,224,122,0.24);
    box-shadow: var(--surface-shadow), var(--glow-green);
}
.hero__media img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

/* ============================================
   CARDS - Content containers with signature border
   ============================================ */
.card, .info-card, .summary-box, .callout, details, .social-card {
    position: relative; border-radius: var(--radius); background: linear-gradient(var(--card), var(--card)) padding-box, var(--gold-gradient) border-box;
    border: 1px solid transparent; box-shadow: var(--surface-shadow);
}
.card, .info-card { padding: 1.25rem; transition: transform 250ms ease-out, box-shadow 250ms ease-out; }
.info-card:hover { transform: scale(1.03); box-shadow: var(--surface-shadow), var(--glow-green); }
.info-card__icon { display: inline-grid; place-items: center; width: 3.4rem; height: 3.4rem; margin-bottom: var(--space-md); border-radius: 14px; background: rgba(34,224,122,0.10); color: var(--primary); font-size: 1.8rem; }
.info-card__image { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 10px; margin-bottom: var(--space-md); }
.info-card__kicker { margin-bottom: 0.35rem; color: var(--primary); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.info-card p { color: var(--muted-foreground); }

/* ============================================
   STATS - Tabular gold numerals and proof panels
   ============================================ */
.stat-panel, .stats-panel { padding: var(--space-md); border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); box-shadow: var(--surface-shadow); }
.stat-block { display: grid; gap: 0.25rem; justify-items: center; padding: 1.25rem; text-align: center; }
.stat-block__number, .stat-number {
    display: block; font-family: var(--font-heading); font-size: clamp(2.25rem, calc(3vw + 1rem), 3.5rem); font-weight: 700; line-height: 1;
    background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; font-variant-numeric: tabular-nums;
}
.stat-block__label { color: var(--foreground); font-weight: 700; }
.stat-block__note { color: var(--primary); font-size: 0.875rem; }
.stat-block__icon { color: var(--secondary); font-size: 1.5rem; }

/* ============================================
   ENGAGEMENT PATTERNS - TL;DR, callouts, quotes, accordions
   ============================================ */
.summary-box { padding: 1.25rem; margin-block: var(--space-xl); background: linear-gradient(135deg, rgba(34,224,122,0.12), rgba(47,125,246,0.08)); }
.summary-box h2, .summary-box h3 { margin-bottom: var(--space-sm); }
.callout { padding: 1.25rem; margin-block: var(--space-xl); border-left: 4px solid var(--primary); }
.callout--gold { border-left-color: var(--accent); }
.pull-quote, blockquote.pull-quote {
    margin: var(--space-xl) 0; padding: 0 0 0 var(--space-lg); border-left: 4px solid var(--primary);
    color: var(--foreground); font-size: clamp(1.35rem, calc(1.2vw + 1rem), 1.625rem); font-style: italic; line-height: 1.4;
}
.pull-quote cite { display: block; margin-top: var(--space-sm); color: var(--muted-foreground); font-size: 0.875rem; font-style: normal; }
details { padding: 0; margin-bottom: var(--space-md); overflow: hidden; }
summary { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); padding: 1rem 1.25rem; cursor: pointer; color: var(--foreground); font-family: var(--font-heading); font-weight: 650; }
summary::after { content: "+"; color: var(--primary); font-size: 1.4rem; }
details[open] summary::after { content: "−"; }
details > :not(summary) { padding: 0 1.25rem 1.25rem; color: var(--muted-foreground); }

/* ============================================
   CRO PATTERNS - CTA band, badges, tables, social proof
   ============================================ */
.cta-banner { position: relative; padding: var(--space-2xl) 1rem; background: radial-gradient(circle at 50% 55%, rgba(245,179,43,0.24), transparent 24rem), #0a101d; }
.cta-banner__inner { width: min(100%, 820px); margin-inline: auto; text-align: center; display: grid; justify-items: center; }
.cta-banner h2 { font-size: clamp(1.75rem, calc(3vw + 1rem), 3rem); }
.cta-banner__text { color: var(--muted-foreground); margin-inline: auto; }
.trust-badges, .payment-row, .badge-row { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-md); }
.payment-row span, .badge-row span, .trust-badges span {
    display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0.5rem 0.9rem;
    border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: var(--muted-foreground); font-weight: 700;
}
table { width: 100%; border-collapse: collapse; color: var(--foreground); background: var(--card); border-radius: var(--radius); overflow: hidden; }
th, td { padding: 0.9rem 1rem; border-bottom: 1px solid var(--border); text-align: left; }
th { color: var(--primary); font-family: var(--font-heading); }
.recommended, td.recommended, th.recommended { background: rgba(34,224,122,0.11); }
.social-proof, .review-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-md); }
.social-card { padding: 1.25rem; }
.rating { display: inline-flex; gap: 0.15rem; color: var(--accent); font-size: 1.1rem; }

/* ============================================
   FOOTER - four-column information architecture
   ============================================ */
.site-footer { padding-top: var(--space-2xl); background: #080e19; border-top: 1px solid var(--border); }
.site-footer__inner { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-xl); }
.site-footer h2 { font-size: 1rem; margin-bottom: var(--space-sm); }
.site-footer p { color: var(--muted-foreground); font-size: 0.95rem; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; }
.footer-nav a { padding-inline: 0; color: var(--muted-foreground); }
.site-footer__bottom { width: min(100% - 2rem, 1200px); margin: var(--space-xl) auto 0; padding-block: var(--space-lg); border-top: 1px solid var(--border); color: var(--muted-foreground); }

/* ============================================
   ANIMATION - scroll reveal and respectful motion
   ============================================ */
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; }

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

/* ============================================
   RESPONSIVE ENHANCEMENTS - tablet, desktop, max width
   ============================================ */
@media (min-width: 768px) {
    .section, .content-section { padding-block: var(--space-2xl); }
    .grid, .cards-grid, .info-grid, .social-proof, .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-lg); }
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .btn--large { width: auto; }
    .card, .info-card { padding: var(--space-xl); }
    .hero__media img { aspect-ratio: 1 / 1; }
}

@media (min-width: 1024px) {
    .site-header { background: rgba(11, 18, 32, 0.82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
    .mobile-menu-toggle { display: none; }
    .primary-nav { display: block; position: static; inset: auto; z-index: auto; background: transparent; overflow: visible; padding: 0; }
    .primary-nav__list { flex-direction: row; align-items: center; gap: 0.35rem; }
    .primary-nav a { padding-inline: 0.9rem; color: var(--muted-foreground); }
    .header-actions { display: flex; }
    .hero, .page-hero { min-height: 70vh; }
    .hero__inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
    .two-column { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cards-grid, .info-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .stats-grid.stats-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .stat-block + .stat-block { border-left: 1px solid rgba(34,224,122,0.35); }
    .site-footer__inner { grid-template-columns: 1.3fr 0.8fr 1fr 1fr; }
    .cta-banner { padding-block: var(--space-2xl); }
}

@media (min-width: 1280px) {
    .container, .section-inner, .site-header__inner, .site-footer__inner, .site-footer__bottom { width: min(100% - 3rem, 1200px); }
}

/* ============================================
   HOMEPAGE - jackpot ticker, bonus feature, VIP ladder
   ============================================ */
.text-gradient-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.jackpot-ticker {
    width: min(100% - 2rem, 1200px);
    margin: var(--space-lg) auto 0;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-xs) var(--space-lg);
    padding: 0.9rem 1.25rem; border-radius: 999px; text-align: center;
    background: rgba(22, 32, 47, 0.85); border: 1px solid rgba(245, 179, 43, 0.4);
    box-shadow: var(--glow-gold);
}
.jackpot-ticker__label {
    color: var(--primary); font: 700 0.8rem/1.2 var(--font-heading);
    letter-spacing: 0.12em; text-transform: uppercase;
}
.jackpot-ticker__amount {
    font-family: var(--font-heading); font-size: clamp(1.5rem, calc(2vw + 1rem), 2.25rem); font-weight: 700; line-height: 1;
    font-variant-numeric: tabular-nums;
    background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bonus-feature {
    display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-lg);
    padding: 1.25rem; margin-top: var(--space-lg); border-radius: var(--radius);
    background: linear-gradient(var(--card), var(--card)) padding-box, var(--gold-gradient) border-box;
    border: 1px solid transparent; box-shadow: var(--surface-shadow);
    transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.bonus-feature:hover { transform: scale(1.02); box-shadow: var(--surface-shadow), var(--glow-green); }
.bonus-feature__media img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 10px; }
.bonus-feature__amount {
    display: block; margin-bottom: var(--space-md);
    font-family: var(--font-heading); font-size: clamp(2.5rem, calc(4vw + 1rem), 3rem); font-weight: 700; line-height: 1;
    font-variant-numeric: tabular-nums;
    background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bonus-feature__terms { list-style: none; margin: 0 0 var(--space-lg); padding: 0; display: grid; gap: 0.5rem; }
.bonus-feature__terms li { position: relative; padding-left: 1.4rem; color: var(--muted-foreground); }
.bonus-feature__terms li::before { content: "✦"; position: absolute; left: 0; color: var(--primary); }
.bonus-feature__body .micro-copy { margin-top: var(--space-md); }
.vip-ladder { display: grid; gap: var(--space-md); align-content: start; }
.vip-tier {
    display: flex; gap: var(--space-md); align-items: flex-start; padding: 1.25rem; border-radius: var(--radius);
    background: linear-gradient(var(--card), var(--card)) padding-box, var(--gold-gradient) border-box;
    border: 1px solid transparent; box-shadow: var(--surface-shadow);
    transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.vip-tier:hover { transform: scale(1.03); box-shadow: var(--surface-shadow), var(--glow-green); }
.vip-tier img { width: 64px; height: 64px; flex-shrink: 0; }
.vip-tier h3 { margin-bottom: 0.25rem; }
.vip-tier p { margin: 0; color: var(--muted-foreground); font-size: 0.95rem; }
.crypto-logo-row {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-lg);
    margin-top: var(--space-lg); padding: var(--space-lg); border-radius: var(--radius);
    background: var(--card); border: 1px solid var(--border);
}
.crypto-logo-row img { width: 48px; height: 48px; filter: grayscale(1) brightness(1.1); opacity: 0.8; }
.crypto-logo-row span { color: var(--muted-foreground); font-weight: 700; }

@media (min-width: 768px) {
    .bonus-feature { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); align-items: center; padding: var(--space-xl); }
}

@media (min-width: 1024px) {
    .vip-ladder { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================
   BONUS PAGE - promo icons and VIP percentages
   ============================================ */
.promo-icon {
    display: block; width: 64px; height: 64px; object-fit: contain; margin-bottom: var(--space-md);
    filter: drop-shadow(0 0 12px rgba(34, 224, 122, 0.35));
}
.vip-tier__pct {
    display: block; margin-bottom: 0.25rem;
    font-family: var(--font-heading); font-size: clamp(1.75rem, calc(1.5vw + 1rem), 2.25rem); font-weight: 700; line-height: 1;
    font-variant-numeric: tabular-nums;
    background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ============================================
   CASINO SPIELE PAGE - provider strip & live grid
   ============================================ */
.provider-strip {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-md);
    margin-top: var(--space-lg);
}
.provider-card {
    padding: 1.25rem; text-align: center; border-radius: var(--radius);
    background: linear-gradient(var(--card), var(--card)) padding-box, var(--gold-gradient) border-box;
    border: 1px solid transparent; box-shadow: var(--surface-shadow);
    transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.provider-card:hover { transform: scale(1.03); box-shadow: var(--surface-shadow), var(--glow-green); }
.provider-card img {
    display: block; width: 72px; height: 72px; object-fit: contain; margin: 0 auto var(--space-sm);
    filter: drop-shadow(0 0 12px rgba(245, 179, 43, 0.3));
}
.provider-card h3 { margin-bottom: 0.25rem; font-size: 1.05rem; }
.provider-card p { margin: 0; color: var(--muted-foreground); font-size: 0.9rem; }
.live-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-md); align-content: start; }
.live-grid .info-card { padding: 1.25rem; }
.live-grid .info-card h3 { font-size: 1.125rem; margin-bottom: 0.35rem; }
.live-grid .info-card p { margin: 0; font-size: 0.95rem; }
.live-studio { margin-top: var(--space-2xl); }
.live-studio img { aspect-ratio: 16 / 9; }
.mobile-mockup { display: grid; place-items: center; }
.mobile-mockup img {
    width: min(100%, 380px);
    filter: drop-shadow(0 18px 45px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(34, 224, 122, 0.22));
}

@media (min-width: 768px) {
    .provider-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-lg); }
    .live-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .provider-strip { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

/* ============================================
   SITEMAP PAGE - structured page index list
   ============================================ */
.sitemap-header { text-align: center; }
.sitemap-header p { margin-inline: auto; }
.sitemap-list { display: grid; gap: var(--space-md); margin-top: var(--space-xl); }
.sitemap-entry { display: block; padding: 1.25rem; }
.sitemap-entry h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.sitemap-entry p { margin-bottom: var(--space-sm); color: var(--muted-foreground); }
.sitemap-entry--link { color: inherit; text-decoration: none; transition: transform 250ms ease-out, box-shadow 250ms ease-out; }
.sitemap-entry--link:hover, .sitemap-entry--link:focus-visible { transform: scale(1.02); box-shadow: var(--surface-shadow), var(--glow-green); outline: none; }
.sitemap-note-section { padding-top: 0; }
.sitemap-note-section .micro-copy { max-width: 68ch; }

/* ============================================
   SPORTWETTEN PAGE - floating bet slip visual
   ============================================ */
.betslip-mockup { display: grid; place-items: center; }
.betslip-mockup img {
    width: min(100%, 420px);
    filter: drop-shadow(0 18px 45px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(11, 102, 244, 0.3));
}
