/*
 * LIZARO CASINO - DESIGN SYSTEM
 * Wild West saloon-night aesthetic with neon orange/gold/green accents.
 * Fonts: Bungee (display) + Outfit (body).
 * Single fixed dark theme - no theme switcher.
 */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --background: #1a1410;
    --foreground: #f5e6c8;
    --card: #2a2018;
    --card-foreground: #f5e6c8;
    --popover: #221a14;
    --popover-foreground: #f5e6c8;
    --primary: #ff6b00;
    --primary-foreground: #1a1410;
    --secondary: #2a2018;
    --secondary-foreground: #f5e6c8;
    --muted: #3a2e26;
    --muted-foreground: #a89684;
    --accent: #ffd700;
    --accent-foreground: #1a1410;
    --neon-green: #39ff14;
    --destructive: #ea1414;
    --destructive-foreground: #ffffff;
    --border: #4a3a2e;
    --input: #2a2018;
    --ring: #ff6b00;

    --header-height: 64px;
    --max-width: 1200px;
    --section-spacing: clamp(48px, 7vw, 72px);
    --component-padding: clamp(24px, 4vw, 32px);
    --card-spacing: 24px;
    --card-padding: 16px;
    --base-grid: 8px;

    --font-display: "Bungee", sans-serif;
    --font-body: "Outfit", sans-serif;

    --transition: 250ms ease-out;
}

.dark {
    --background: #1a1410;
    --foreground: #f5e6c8;
    --card: #2a2018;
    --card-foreground: #f5e6c8;
    --popover: #221a14;
    --popover-foreground: #f5e6c8;
    --primary: #ff6b00;
    --primary-foreground: #1a1410;
    --secondary: #2a2018;
    --secondary-foreground: #f5e6c8;
    --muted: #3a2e26;
    --muted-foreground: #a89684;
    --accent: #ffd700;
    --accent-foreground: #1a1410;
    --neon-green: #39ff14;
    --destructive: #ea1414;
    --destructive-foreground: #ffffff;
    --border: #4a3a2e;
    --input: #2a2018;
    --ring: #ff6b00;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary);
}

ul, ol {
    list-style: none;
}

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

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY
   Bungee for display headings, Outfit for body.
   H1 48px desktop / 28px mobile
   H2 36px / 24px
   H3 26px / 20px
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--foreground);
}

h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 400;
}

h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
}

h3 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 400;
}

p {
    margin-bottom: 28px;
    max-width: 80ch;
}

strong, b {
    font-weight: 700;
    color: var(--foreground);
}

/* ============================================
   LAYOUT UTILITIES
   .container - max-width 1200px centered
   .section - vertical padding rhythm
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

.section--tight {
    padding-top: calc(var(--section-spacing) * 0.6);
    padding-bottom: calc(var(--section-spacing) * 0.6);
}

.section-title {
    margin-bottom: 48px;
    text-align: center;
}

.section-title--left {
    text-align: left;
}

.text-center {
    text-align: center;
}

/* ============================================
   BUTTONS
   .btn - base button styles
   .btn--primary - vibrant orange filled
   .btn--outline - bordered outline
   .btn--large - increased size for CTA sections
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    min-height: 44px;
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: #ff8500;
    border-color: #ff8500;
    color: var(--primary-foreground);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
    transform: translateY(-1px);
}

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

.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.2);
}

.btn--large {
    font-size: 18px;
    padding: 16px 40px;
    min-height: 52px;
}

/* ============================================
   HEADER
   Sticky header with brand, nav, and CTA buttons.
   Mobile: hamburger toggle reveals drawer.
   Desktop (1024px+): inline nav and CTAs.
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
}

.header-inner {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-brand__text {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: -0.02em;
    color: var(--primary);
    text-transform: uppercase;
}

.site-brand:hover .site-brand__text {
    color: var(--accent);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    align-items: center;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

/* Primary navigation - mobile drawer by default */
.primary-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 8px;
}

.primary-nav.is-open {
    display: flex;
}

.primary-nav__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
}

.primary-nav__link:hover {
    background: var(--muted);
    color: var(--primary);
}

.primary-nav__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.primary-nav__cta .btn {
    width: 100%;
}

/* Desktop navigation */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }

    .primary-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        background: transparent;
        padding: 0;
        gap: 32px;
        overflow: visible;
    }

    .primary-nav__link {
        min-height: auto;
        padding: 8px 0;
        font-size: 16px;
        border-radius: 0;
    }

    .primary-nav__link:hover {
        background: transparent;
    }

    .primary-nav__cta {
        flex-direction: row;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        margin-left: auto;
    }

    .primary-nav__cta .btn {
        width: auto;
    }
}

/* ============================================
   FOOTER
   Four-column layout on desktop, stacked on mobile.
   Internal links, Seitenübersicht, payments, license.
   ============================================ */
.site-footer {
    background: var(--popover);
    border-top: 1px solid var(--border);
    padding: 48px 24px 24px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col__title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 15px;
    color: var(--foreground);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-method {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 6px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--foreground);
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 6px;
}

.trust-badge--age {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 12px;
}

/* ============================================
   HERO SECTION
   Full-width banner with background image, content, and mascot.
   Mobile: text only. Desktop: mascot on right side.
   ============================================ */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 64px 24px;
    overflow: hidden;
}

.hero-section__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 20, 16, 0.92) 0%, rgba(26, 20, 16, 0.6) 50%, rgba(26, 20, 16, 0.85) 100%);
}

.hero-section__content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.hero-section__text {
    max-width: 600px;
}

.hero-section__headline {
    margin-bottom: 20px;
}

.hero-section__subtext {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 50ch;
}

.hero-section__mascot {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    max-width: 420px;
    pointer-events: none;
}

.hero-section__mascot img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .hero-section {
        min-height: 600px;
    }

    .hero-section__mascot {
        display: block;
    }
}

/* ============================================
   STAT BLOCK GRID
   Grid of highlighted numbers with labels.
   Reflows 1 → 2 → 4 columns.
   ============================================ */
.stat-block-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--card-spacing);
}

@media (min-width: 640px) {
    .stat-block-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .stat-block-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .stat-block-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-cell {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--card-padding);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    min-width: 0;
}

.stat-cell:hover {
    transform: scale(1.03);
    box-shadow: 0 0 24px rgba(255, 215, 0, 0.15);
}

.stat-cell__number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 32px);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-cell__number--gold {
    color: var(--accent);
}

.stat-cell__number--green {
    color: var(--neon-green);
}

.stat-cell__label {
    display: block;
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   GAME CARD GRID
   Responsive grid of game/category cards.
   Reflows 1 → 2 → 3 → 4 columns.
   ============================================ */
.game-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--card-spacing);
}

@media (min-width: 640px) {
    .game-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .game-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .game-card-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.game-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    min-width: 0;
}

.game-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 24px rgba(255, 215, 0, 0.15);
}

.game-card__image {
    width: 100%;
    aspect-ratio: 5 / 3;
    overflow: hidden;
    background: var(--muted);
}

.game-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card__body {
    padding: var(--card-padding);
}

.game-card__title {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--foreground);
    margin-bottom: 4px;
}

.game-card__subtitle {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   CTA BANNER
   Full-width section with radial glow and centered content.
   ============================================ */
.cta-banner {
    position: relative;
    background: var(--popover);
    padding: var(--section-spacing) 24px;
    text-align: center;
    overflow: hidden;
}

.cta-banner__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    max-width: 100%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner__headline {
    font-size: clamp(24px, 5vw, 36px);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--foreground);
}

.cta-banner__subtext {
    font-size: 16px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
}

.cta-banner .btn--primary {
    animation: ctaPulse 2s ease-in-out infinite;
}

.cta-banner__microcopy {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 16px;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px 4px rgba(255, 107, 0, 0.3);
    }
}

/* ============================================
   FAQ ACCORDION
   Native <details>/<summary> based accordion.
   ============================================ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: var(--card-spacing);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item[open] {
    border-left: 3px solid var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--foreground);
    cursor: pointer;
    list-style: none;
    min-height: 44px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question__text {
    flex: 1;
    min-width: 0;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--accent);
    transition: transform var(--transition);
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 16px 16px 16px;
    color: var(--foreground);
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 0;
}

/* ============================================
   CALLOUT / HIGHLIGHT BOX
   Attention-grabbing inline block with accent border.
   ============================================ */
.callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 24px;
    margin: 32px 0;
}

.callout--warning {
    border-left-color: var(--primary);
}

.callout--info {
    border-left-color: var(--accent);
}

.callout--success {
    border-left-color: var(--neon-green);
}

.callout__title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--foreground);
}

.callout__text {
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ============================================
   TRUST BADGES ROW (in-content)
   Horizontal arrangement of badges.
   ============================================ */
.trust-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}

.trust-badge-row .trust-badge {
    font-size: 14px;
    padding: 8px 16px;
}

/* ============================================
   PAYMENT STRIP (in-content)
   Horizontal strip of payment provider names.
   ============================================ */
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}

.payment-strip .payment-method {
    font-size: 14px;
    padding: 8px 16px;
}

/* ============================================
   PROVIDER STRIP
   Horizontal strip of provider names in muted style.
   ============================================ */
.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}

.provider-strip__item {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--muted-foreground);
    padding: 8px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: color var(--transition), border-color var(--transition);
}

.provider-strip__item:hover {
    color: var(--foreground);
    border-color: var(--accent);
}

/* ============================================
   VIP / PROMOTIONS SECTION
   Two-column layout: VIP tiers and promotions list.
   ============================================ */
.vip-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .vip-section {
        grid-template-columns: 1fr 1fr;
    }
}

.vip-tiers {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vip-tier {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
}

.vip-tier__name {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 8px;
}

.vip-tier__desc {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 12px;
}

.vip-tier__bar {
    height: 6px;
    background: var(--muted);
    border-radius: 3px;
    overflow: hidden;
}

.vip-tier__bar-fill {
    height: 100%;
    background: var(--neon-green);
    border-radius: 3px;
    transition: width 600ms ease-out;
}

.promotions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.promotion-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    transition: border-color var(--transition);
}

.promotion-item:hover {
    border-color: var(--accent);
}

.promotion-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--muted);
    border-radius: 50%;
    font-size: 24px;
}

.promotion-item__body {
    flex: 1;
    min-width: 0;
}

.promotion-item__title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 4px;
}

.promotion-item__desc {
    font-size: 14px;
    color: var(--muted-foreground);
}

.promotion-item__reward {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--accent);
}

/* ============================================
   TIMELINE / STEP GUIDE
   Vertical timeline with numbered steps.
   ============================================ */
.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        var(--accent) 0,
        var(--accent) 8px,
        transparent 8px,
        transparent 16px
    );
}

.timeline-step {
    position: relative;
    margin-bottom: 32px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step__number {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-size: 14px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-step__title {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--foreground);
    margin-bottom: 8px;
}

.timeline-step__desc {
    font-size: 15px;
    color: var(--muted-foreground);
}

/* ============================================
   TWO-COLUMN LAYOUT
   Generic two-column wrapper for content sections.
   ============================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
    }
}

.two-col__text {
    min-width: 0;
}

.two-col__visual {
    min-width: 0;
    display: flex;
    justify-content: center;
}

.two-col__visual img {
    max-width: 100%;
    border-radius: 12px;
}

/* ============================================
   SEO TEXT BLOCK
   Content block with comfortable reading width.
   ============================================ */
.seo-text {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.seo-text h2 {
    margin-bottom: 24px;
}

.seo-text p {
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: 28px;
}

.seo-text a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.seo-text a:hover {
    color: var(--accent);
}

/* ============================================
   SITEMAP LIST
   Vertical list of pages with descriptions.
   ============================================ */
.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.sitemap-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    transition: border-color var(--transition);
}

.sitemap-item:hover {
    border-color: var(--accent);
}

.sitemap-item__link {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 8px;
    display: inline-block;
}

.sitemap-item__link:hover {
    color: var(--primary);
}

.sitemap-item__desc {
    font-size: 15px;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ============================================
   BONUS HIGHLIGHT SECTION
   Wrapper for stat blocks with bonus context.
   ============================================ */
.bonus-highlight {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: var(--component-padding);
    margin-bottom: 32px;
}

.bonus-highlight__title {
    text-align: center;
    margin-bottom: 32px;
}

.bonus-highlight__note {
    text-align: center;
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 24px;
}

/* ============================================
   SOCIAL PROOF BADGE
   Small badge showing bonus claim count.
   ============================================ */
.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--muted);
    border: 1px solid var(--accent);
    border-radius: 24px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
}

.social-proof-badge__dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================================
   SCROLL ANIMATIONS
   Fade-in slide-up on viewport entry.
   Grid children stagger with 100ms delays.
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 400ms ease-out, transform 400ms ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Grid containers: animate children instead of container */
.stat-block-grid.animate-on-scroll,
.game-card-grid.animate-on-scroll {
    opacity: 1;
    transform: none;
}

.stat-block-grid.animate-on-scroll .stat-cell,
.game-card-grid.animate-on-scroll .game-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 400ms ease-out, transform 400ms ease-out;
}

.stat-block-grid.animate-on-scroll.is-visible .stat-cell,
.game-card-grid.animate-on-scroll.is-visible .game-card {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for up to 8 children */
.stat-block-grid.is-visible .stat-cell:nth-child(1),
.game-card-grid.is-visible .game-card:nth-child(1) {
    transition-delay: 0ms;
}
.stat-block-grid.is-visible .stat-cell:nth-child(2),
.game-card-grid.is-visible .game-card:nth-child(2) {
    transition-delay: 100ms;
}
.stat-block-grid.is-visible .stat-cell:nth-child(3),
.game-card-grid.is-visible .game-card:nth-child(3) {
    transition-delay: 200ms;
}
.stat-block-grid.is-visible .stat-cell:nth-child(4),
.game-card-grid.is-visible .game-card:nth-child(4) {
    transition-delay: 300ms;
}
.stat-block-grid.is-visible .stat-cell:nth-child(5),
.game-card-grid.is-visible .game-card:nth-child(5) {
    transition-delay: 400ms;
}
.stat-block-grid.is-visible .stat-cell:nth-child(6),
.game-card-grid.is-visible .game-card:nth-child(6) {
    transition-delay: 500ms;
}
.stat-block-grid.is-visible .stat-cell:nth-child(7),
.game-card-grid.is-visible .game-card:nth-child(7) {
    transition-delay: 600ms;
}
.stat-block-grid.is-visible .stat-cell:nth-child(8),
.game-card-grid.is-visible .game-card:nth-child(8) {
    transition-delay: 700ms;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.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;
}

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

/* ============================================
   RESPONSIVE HEADER HEIGHT
   ============================================ */
@media (min-width: 1024px) {
    :root {
        --header-height: 72px;
    }
}
