/*
 * LIZARO CASINO - DESIGN SYSTEM
 * Wild West neon-noir aesthetic. Dark fixed theme.
 * Fonts: Rye (display), Barlow (body)
 * Palette: charcoal-brown bg, sunset orange, neon gold, cactus green
 */

/* ============================================
   DESIGN TOKENS
   Single fixed dark theme - no toggle.
   ============================================ */
:root {
    --background: #17110e;
    --foreground: #f4e7cf;
    --card: #241a14;
    --card-foreground: #f4e7cf;
    --popover: #1d1510;
    --popover-foreground: #f4e7cf;
    --primary: #ff6a00;
    --primary-foreground: #211208;
    --secondary: #332217;
    --secondary-foreground: #f4e7cf;
    --muted: #3a2a1f;
    --muted-foreground: #b7c0a8;
    --accent: #e6b95c;
    --accent-foreground: #241607;
    --destructive: #dc2626;
    --destructive-foreground: #ffffff;
    --border: #8a6a2c;
    --input: #211712;
    --ring: #f0c96a;
    --green: #5dd97f;
    --sage: #a8b8a0;

    --font-display: "Rye", serif;
    --font-body: "Barlow", sans-serif;

    --section-gap: 56px;
    --section-gap-desktop: 96px;
    --component-pad: 20px;
    --component-pad-desktop: 32px;
    --base-grid: 8px;

    --container-max: 1180px;
    --hero-max: 1240px;
    --text-max: 70ch;

    --transition: 250ms ease-out;
    --transition-fast: 150ms ease-out;
    --transition-slow: 300ms ease;
}

.dark {
    --background: #17110e;
    --foreground: #f4e7cf;
    --card: #241a14;
    --card-foreground: #f4e7cf;
    --popover: #1d1510;
    --popover-foreground: #f4e7cf;
    --primary: #ff6a00;
    --primary-foreground: #211208;
    --secondary: #332217;
    --secondary-foreground: #f4e7cf;
    --muted: #3a2a1f;
    --muted-foreground: #b7c0a8;
    --accent: #e6b95c;
    --accent-foreground: #241607;
    --destructive: #dc2626;
    --destructive-foreground: #ffffff;
    --border: #8a6a2c;
    --input: #211712;
    --ring: #f0c96a;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    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-fast);
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input, textarea, select {
    max-width: 100%;
    font-family: inherit;
}

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

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY
   Rye for display headings, Barlow for body.
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--foreground);
}

h1 {
    font-size: 30px;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 26px;
    letter-spacing: 0.3px;
}

h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 20px;
}

p {
    margin-bottom: 24px;
    max-width: var(--text-max);
}

.text-lead {
    font-size: 18px;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

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

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

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

/* ============================================
   HEADER & NAVIGATION
   Sticky header with brand, nav, and CTA buttons.
   Mobile: hamburger toggle → fixed drawer.
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(23, 17, 14, 0.96);
    border-bottom: 1px solid var(--border);
}

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

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

.site-brand__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.site-brand__text {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--accent);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Primary nav - hidden on mobile, shown on desktop */
.primary-nav {
    display: none;
    align-items: center;
    gap: 24px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-list a {
    color: var(--foreground);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

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

@media (min-width: 768px) {
    .primary-nav {
        display: flex;
        margin-left: auto;
    }
}

/* Hamburger toggle - shown on mobile only */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    z-index: 1001;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

/* Mobile nav drawer */
.primary-nav.is-open {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--background);
    overflow-y: auto;
    z-index: 999;
    padding: 20px;
    gap: 0;
}

.primary-nav.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 24px;
}

.primary-nav.is-open .nav-list li {
    border-bottom: 1px solid var(--muted);
}

.primary-nav.is-open .nav-list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 8px;
    font-size: 17px;
}

.primary-nav.is-open .nav-cta {
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.primary-nav.is-open .nav-cta .btn {
    width: 100%;
    text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    min-height: 48px;
    border-radius: 6px;
    text-decoration: none;
    transition: background var(--transition-fast), box-shadow var(--transition), transform var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
}

.btn-primary:hover {
    background: #ff7d1a;
    color: var(--primary-foreground);
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.5);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--secondary);
    color: var(--foreground);
}

.btn-lg {
    font-size: 17px;
    padding: 16px 36px;
    min-height: 56px;
}

/* ============================================
   HERO SECTION
   Full-bleed banner with desert-sky gradient,
   model image, and glowing CTA.
   Mobile: mascot stacks below the copy so no
   text or button is obscured. Desktop: mascot
   is absolutely positioned to the right.
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(255, 106, 0, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #1a0f0a 0%, #2a1a10 40%, #1a1208 100%);
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--background), transparent);
    z-index: 1;
}

.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--hero-max);
    margin: 0 auto;
    padding: 56px 20px 72px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hero__mascot {
    position: static;
    order: 2;
    margin: 32px auto 0;
    max-height: 260px;
    width: auto;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 0 30px rgba(255, 106, 0, 0.2));
    animation: mascot-float 4s ease-in-out infinite;
}

@keyframes mascot-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero__content {
    order: 1;
    max-width: 600px;
}

.hero__title {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #ffd700 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__text {
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (min-width: 768px) {
    .hero {
        min-height: 520px;
    }

    .hero__inner {
        display: block;
        padding: 80px 32px 96px;
    }

    .hero__title {
        font-size: 44px;
    }

    .hero__text {
        font-size: 19px;
    }

    .hero__mascot {
        position: absolute;
        right: 0;
        bottom: 0;
        margin: 0;
        max-height: 420px;
    }
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading {
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 26px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, #ffd700 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading p {
    color: var(--muted-foreground);
    font-size: 17px;
    max-width: var(--text-max);
}

@media (min-width: 768px) {
    .section-heading h2 {
        font-size: 34px;
    }
}

/* ============================================
   CTA BANNER COMPONENT
   Full-width conversion band with desert-sky
   gradient, lizard-silhouette watermark, gold rope border.
   ============================================ */
.cta-banner {
    position: relative;
    width: 100%;
    padding: 56px 20px;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 106, 0, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, #1a1208 0%, #241a14 50%, #1a1208 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    overflow: hidden;
}

.cta-banner__rope {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--border) 0,
        var(--border) 8px,
        transparent 8px,
        transparent 12px
    );
}

.cta-banner__badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    opacity: 0.5;
    pointer-events: none;
}

.cta-banner__badge svg {
    width: 100%;
    height: 100%;
}

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

.cta-banner__title {
    font-size: 24px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, #ffd700 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.cta-banner__btn {
    animation: cta-shimmer 3s ease-in-out infinite;
}

@keyframes cta-shimmer {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 106, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 106, 0, 0.6); }
}

.cta-banner__micro {
    margin-top: 16px;
    font-size: 14px;
    color: var(--sage);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 96px 32px;
    }

    .cta-banner__title {
        font-size: 34px;
    }
}

/* ============================================
   OFFER CARD COMPONENT
   Wanted-poster style bonus card with gold
   hairline border, Rye title, neon-gold value.
   ============================================ */
.offer-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.offer-card--featured {
    border-color: var(--accent);
    box-shadow: 0 0 24px rgba(230, 185, 92, 0.15);
}

.offer-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(255, 106, 0, 0.15);
}

.offer-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--foreground);
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.offer-card__value {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(230, 185, 92, 0.3);
    margin-bottom: 20px;
    line-height: 1.1;
}

.offer-card__terms {
    margin-bottom: 24px;
    flex-grow: 1;
}

.offer-card__terms li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--muted);
    font-size: 15px;
}

.offer-card__terms li:last-child {
    border-bottom: none;
}

.offer-card__term-label {
    color: var(--sage);
}

.offer-card__term-value {
    color: var(--foreground);
    font-weight: 600;
}

.offer-card__btn {
    width: 100%;
    margin-bottom: 12px;
}

.offer-card__micro {
    font-size: 14px;
    color: var(--sage);
    text-align: center;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .offer-card {
        padding: 40px;
    }

    .offer-card__title {
        font-size: 20px;
    }

    .offer-card__value {
        font-size: 48px;
    }
}

/* ============================================
   OFFER GRID
   Responsive grid for offer cards.
   ============================================ */
.offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 600px) and (max-width: 1023px) {
    .offer-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

/* ============================================
   STAT HIGHLIGHT COMPONENT
   Row of large neon-gold numbers with labels.
   Counter animation on scroll into view.
   ============================================ */
.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px;
    background: var(--background);
    border: 1px solid var(--muted);
    border-radius: 10px;
}

.stat-block {
    text-align: center;
    padding: 16px 12px;
    position: relative;
}

.stat-block:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: repeating-linear-gradient(
        180deg,
        var(--border) 0,
        var(--border) 4px,
        transparent 4px,
        transparent 8px
    );
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--accent);
    text-shadow: 0 0 16px rgba(230, 185, 92, 0.25);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--sage);
    letter-spacing: 0.5px;
}

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

    .stat-number {
        font-size: 56px;
    }

    .stat-label {
        font-size: 15px;
    }
}

/* ============================================
   FAQ ACCORDION COMPONENT
   Dark saddle-brown panels with gold hairline
   borders. Gold chevron rotates on toggle.
   Smooth grid-rows height transition.
   ============================================ */
.faq-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: var(--foreground);
    min-height: 48px;
    transition: background var(--transition-fast);
}

.faq-item__question:hover {
    background: var(--secondary);
}

.faq-item__chevron {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-left: 16px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    transition: transform var(--transition-slow);
    margin-top: -4px;
}

.faq-item__question[aria-expanded="true"] .faq-item__chevron {
    transform: rotate(225deg);
    margin-top: 4px;
}

.faq-item__answer-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-slow);
}

.faq-item__question[aria-expanded="true"] + .faq-item__answer-wrap {
    grid-template-rows: 1fr;
}

.faq-item__answer-inner {
    overflow: hidden;
    padding: 0 20px;
}

.faq-item__question[aria-expanded="true"] + .faq-item__answer-wrap .faq-item__answer-inner {
    padding: 0 20px 20px;
}

.faq-item__answer-inner p {
    color: var(--sage);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   GAME / CONTENT GRID
   Reusable grid for game tiles, category cards, etc.
   ============================================ */
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (min-width: 768px) {
    .content-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
    }
}

/* Game tile / category card */
.game-tile {
    background: var(--card);
    border: 1px solid var(--muted);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    min-width: 0;
}

.game-tile:hover {
    transform: scale(1.04);
    border-color: var(--accent);
    box-shadow: 0 0 24px rgba(255, 106, 0, 0.15);
}

.game-tile__img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.game-tile__body {
    padding: 12px 16px;
}

.game-tile__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    color: var(--foreground);
    margin-bottom: 4px;
}

.game-tile__meta {
    font-size: 13px;
    color: var(--sage);
}

/* ============================================
   TRUST BADGES ROW
   Horizontal arrangement of compliance seals.
   ============================================ */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--card);
    border: 1px solid var(--muted);
    border-radius: 8px;
    font-size: 14px;
    color: var(--muted-foreground);
}

.trust-badge__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ============================================
   PAYMENT METHODS STRIP
   ============================================ */
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.payment-strip__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--card);
    border: 1px solid var(--muted);
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--muted-foreground);
    min-height: 48px;
}

/* ============================================
   TL;DR / SUMMARY BOX
   Bordered container for key takeaways near page top.
   ============================================ */
.tldr-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 40px;
}

.tldr-box__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: var(--accent);
    margin-bottom: 12px;
}

.tldr-box p {
    color: var(--muted-foreground);
    margin-bottom: 0;
}

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

.callout--tip {
    border-left: 4px solid var(--green);
}

.callout--warning {
    border-left: 4px solid var(--primary);
}

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

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

/* ============================================
   COMPARISON TABLE
   Styled table with highlighted recommended column.
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: 32px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--muted);
    font-size: 15px;
}

.comparison-table th {
    background: var(--card);
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table td {
    color: var(--foreground);
}

.comparison-table tr:hover td {
    background: var(--secondary);
}

.comparison-table .col-highlight {
    background: rgba(230, 185, 92, 0.08);
}

.comparison-table .col-highlight th {
    color: var(--primary);
}

/* ============================================
   PULL QUOTE
   Oversized quote text breaking content flow.
   ============================================ */
.pull-quote {
    margin: 40px 0;
    padding: 24px 32px;
    border-left: 4px solid var(--accent);
    background: var(--card);
    border-radius: 0 8px 8px 0;
}

.pull-quote__text {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--foreground);
    line-height: 1.5;
    margin-bottom: 12px;
}

.pull-quote__cite {
    font-size: 14px;
    color: var(--sage);
    font-style: normal;
}

/* ============================================
   DETAILS / SUMMARY
   Styled expandable accordion (native HTML).
   ============================================ */
details {
    background: var(--card);
    border: 1px solid var(--muted);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

details summary {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--foreground);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: '+';
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
    margin-left: 16px;
}

details[open] summary::after {
    content: '−';
}

details[open] summary {
    border-bottom: 1px solid var(--muted);
}

details > *:not(summary) {
    padding: 0 20px 16px;
    color: var(--muted-foreground);
}

/* ============================================
   BONUS CHECKLIST
   List with checkmark icons for bonus terms.
   ============================================ */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: var(--card);
    border: 1px solid var(--muted);
    border-radius: 6px;
    font-size: 15px;
    color: var(--foreground);
}

.checklist li::before {
    content: '✓';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: var(--background);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

/* ============================================
   VIP LADDER / TIER DISPLAY
   Visual ladder showing VIP program tiers.
   ============================================ */
.vip-ladder {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.vip-tier:hover {
    border-color: var(--accent);
}

.vip-tier__level {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--accent);
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 50%;
}

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

.vip-tier__desc {
    font-size: 14px;
    color: var(--sage);
}

.vip-tier--top .vip-tier__level {
    background: var(--accent);
    color: var(--accent-foreground);
    box-shadow: 0 0 20px rgba(230, 185, 92, 0.3);
}

/* ============================================
   SPORT MARKET GRID
   Grid of sport category icons.
   ============================================ */
.sport-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (min-width: 768px) {
    .sport-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

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

.sport-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--card);
    border: 1px solid var(--muted);
    border-radius: 10px;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition);
    min-width: 0;
}

.sport-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.sport-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.sport-card__name {
    font-weight: 700;
    font-size: 15px;
    color: var(--foreground);
}

/* Live indicator dot (live casino teaser) */
.live-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 14px rgba(93, 217, 127, 0.6);
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(93, 217, 127, 0.4); }
    50% { box-shadow: 0 0 18px rgba(93, 217, 127, 0.8); }
}

/* ============================================
   STEP-BY-STEP PROCESS
   Numbered steps for KYC, withdrawal, etc.
   ============================================ */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    counter-reset: step;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.process-step__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--accent);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50%;
}

.process-step__content h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 17px;
    color: var(--foreground);
    margin-bottom: 8px;
}

.process-step__content p {
    color: var(--muted-foreground);
    font-size: 15px;
    margin-bottom: 0;
}

/* ============================================
   PROVIDER LOGOS
   Inline display of game provider names.
   ============================================ */
.provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--card);
    border: 1px solid var(--muted);
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    color: var(--muted-foreground);
    min-height: 48px;
    transition: border-color var(--transition), color var(--transition);
}

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

/* ============================================
   JACKPOT COUNTER
   Display of jackpot amounts with gold styling.
   ============================================ */
.jackpot-display {
    text-align: center;
    padding: 32px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.jackpot-display__label {
    font-size: 14px;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.jackpot-display__amount {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--accent);
    text-shadow: 0 0 24px rgba(230, 185, 92, 0.3);
}

@media (min-width: 768px) {
    .jackpot-display__amount {
        font-size: 56px;
    }
}

/* ============================================
   SITEMAP PAGE
   Clean text-based list layout.
   ============================================ */
.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.sitemap-item__link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 17px;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
}

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

/* ============================================
   FOOTER
   Four-column layout with internal links,
   Seitenübersicht, payment icons, compliance row.
   ============================================ */
.site-footer {
    background: #120c08;
    border-top: 1px solid var(--border);
    padding: 56px 20px 24px;
}

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

.footer-col__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    background: var(--card);
    border: 1px solid var(--muted);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: var(--sage);
    margin: 0 auto;
}

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

/* ============================================
   SCROLL ANIMATIONS
   Elements with .animate-on-scroll start hidden
   and fade/slide in when .is-visible is added.
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered children */
.offer-grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.offer-grid .animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.offer-grid .animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.offer-grid .animate-on-scroll:nth-child(4) { transition-delay: 240ms; }

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

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-sage { color: var(--sage); }
.text-muted { color: var(--muted-foreground); }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-8 { margin-top: 8px; }
.mb-8 { margin-bottom: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

.hidden { display: none; }

/* ============================================
   RESPONSIVE TYPOGRAPHY ADJUSTMENTS
   ============================================ */
@media (min-width: 768px) {
    h1 { font-size: 44px; }
    h2 { font-size: 34px; }
    h3 { font-size: 24px; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================
   PROVIDER LOGO WITH EMBLEM IMAGE (spiele.html)
   Extends .provider-logo with a generated
   emblem image next to the provider name.
   ============================================ */
.provider-logo {
    gap: 10px;
}

.provider-logo__img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ============================================
   RTP VALUE HIGHLIGHT (spiele.html)
   Neon-gold Rye numerals inside tables.
   ============================================ */
.rtp-value {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--accent);
    letter-spacing: 0.3px;
    text-shadow: 0 0 12px rgba(230, 185, 92, 0.2);
}

/* ============================================
   PAYMENT METHOD CARDS (zahlungen.html)
   Grid of deposit-method cards with generated
   brand logos and limit descriptions.
   ============================================ */
.pay-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .pay-methods {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

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

.pay-method {
    background: var(--card);
    border: 1px solid var(--muted);
    border-radius: 10px;
    padding: 24px;
    min-width: 0;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.pay-method:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(255, 106, 0, 0.15);
}

.pay-method__logo {
    height: 44px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    margin-bottom: 16px;
}

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

.pay-method__desc {
    font-size: 15px;
    color: var(--sage);
    margin-bottom: 0;
    line-height: 1.6;
}

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
