/*
 * Casina Casino - Design System
 * Single fixed dark theme: deep charcoal, crimson neon, burnished gold.
 * Fonts: Cinzel (display) + Manrope (body)
 */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --background: #121216;
    --foreground: #f7f1e6;
    --card: #1b1b22;
    --card-foreground: #f7f1e6;
    --popover: #15151b;
    --popover-foreground: #f7f1e6;
    --primary: #b11230;
    --primary-foreground: #fff7ea;
    --secondary: #7a5c18;
    --secondary-foreground: #fff7ea;
    --muted: #26262e;
    --muted-foreground: #b8ad99;
    --accent: #e54d67;
    --accent-foreground: #fff7ea;
    --destructive: #b91c1c;
    --destructive-foreground: #fff7ea;
    --border: #3a3a46;
    --input: #17171d;
    --ring: #e11d48;

    /* Gold palette */
    --gold: #c9a227;
    --gold-light: #e8c84e;
    --gold-dark: #9a7a1a;

    /* Layout */
    --header-height: 70px;
    --radius: 12px;
    --max-width: 1200px;
    --section-gap: 56px;
    --hero-pad-top: 120px;
    --cta-pad: 72px;
}

.dark {
    --background: #121216;
    --foreground: #f7f1e6;
    --card: #1b1b22;
    --card-foreground: #f7f1e6;
    --popover: #15151b;
    --popover-foreground: #f7f1e6;
    --primary: #b11230;
    --primary-foreground: #fff7ea;
    --secondary: #7a5c18;
    --secondary-foreground: #fff7ea;
    --muted: #26262e;
    --muted-foreground: #b8ad99;
    --accent: #e54d67;
    --accent-foreground: #fff7ea;
    --destructive: #b91c1c;
    --destructive-foreground: #fff7ea;
    --border: #3a3a46;
    --input: #17171d;
    --ring: #e11d48;
}

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

html {
    overflow-x: hidden;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote {
    margin: 0;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

[class*="grid"] > *,
[class*="flex"] > * {
    min-width: 0;
}

pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

pre code, .code-block code {
    display: block;
    min-width: 0;
}

.table-wrapper, [class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
}

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

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

section {
    overflow: clip;
}

ul, ol {
    padding-left: 24px;
}

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

a:hover {
    color: var(--accent-foreground);
}

img {
    display: block;
}

hr {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 32px 0;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 24px;
    z-index: 9999;
    border-radius: 0 0 var(--radius) 0;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
    color: var(--primary-foreground);
}

/* ============================================
   TYPOGRAPHY
   Cinzel for display headings, Manrope for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Cinzel", serif;
    color: var(--foreground);
    scroll-margin-top: 90px;
}

h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 16px;
}

h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 16px;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 12px;
}

h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 8px;
}

p {
    margin: 0 0 24px;
    line-height: 1.6;
}

@media (min-width: 992px) {
    h1 { font-size: 52px; }
    h2 { font-size: 38px; }
    h3 { font-size: 26px; }
}

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

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

.container--narrow {
    max-width: 800px;
}

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

@media (min-width: 992px) {
    .section { padding: 96px 0; }
}

.section--alt {
    background: var(--card);
}

.section--hero-pad {
    padding-top: var(--hero-pad-top);
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
    border: none;
    margin: 0;
}

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

/* Section header (eyebrow + title + description) */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    padding: 0 20px;
}

.section-title {
    font-family: "Cinzel", serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.2;
    margin: 0 0 16px;
}

@media (min-width: 992px) {
    .section-title { font-size: 38px; }
}

.section-desc {
    font-size: 17px;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Eyebrow label */
.eyebrow {
    display: inline-block;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 12px;
}

/* Gold gradient text */
.gold-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold);
}

/* Signature double gold border frame with 6px inner offset */
.gold-frame {
    border: 1px solid rgba(201, 162, 39, 0.5);
    box-shadow: inset 0 0 0 6px var(--card), inset 0 0 0 7px rgba(201, 162, 39, 0.3);
    border-radius: var(--radius);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
    min-height: 48px;
    white-space: nowrap;
}

.btn:hover { text-decoration: none; }

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

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(177, 18, 48, 0.4);
    color: var(--primary-foreground);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #121216;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.3);
    color: #121216;
}

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

.btn-outline:hover {
    background: rgba(201, 162, 39, 0.1);
    color: var(--foreground);
}

.btn-cta {
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 18px;
    font-weight: 800;
    padding: 18px 40px;
    min-height: 56px;
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(177, 18, 48, 0.4);
    color: var(--primary-foreground);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
    min-height: 40px;
}

@media (max-width: 639px) {
    .btn-cta {
        width: 100%;
        display: flex;
    }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(18, 18, 22, 0.95);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
}

@media (min-width: 992px) {
    .site-header {
        background: rgba(18, 18, 22, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

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

.site-brand {
    font-family: "Cinzel", serif;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.site-brand__text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold);
}

/* Primary nav - mobile drawer by default, inline on desktop */
.primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: var(--background);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 300ms ease, visibility 300ms ease;
    overflow-y: auto;
    z-index: 999;
    padding: 24px;
}

.primary-nav.is-open {
    transform: translateX(0);
    visibility: visible;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-list > li { margin: 0; }

.nav-list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 17px;
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 200ms ease;
}

.nav-list a:hover { color: var(--accent); }

.nav-cta-item { margin-top: 16px; }

.nav-cta-item .btn {
    width: 100%;
    display: flex;
    justify-content: center;
    border-bottom: none;
    border-radius: var(--radius);
    padding: 14px 24px;
    min-height: 48px;
}

.nav-cta-item:first-of-type { margin-bottom: 12px; }

.nav-cta-item .btn-outline { border: 1px solid var(--gold); }

/* Desktop navigation */
@media (min-width: 992px) {
    .primary-nav {
        position: static;
        transform: none;
        visibility: visible;
        width: auto;
        max-width: none;
        background: transparent;
        overflow: visible;
        padding: 0;
        transition: none;
    }

    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 28px;
    }

    .nav-list a {
        min-height: auto;
        padding: 8px 0;
        border-bottom: none;
        font-size: 15px;
    }

    .nav-cta-item { margin-top: 0; margin-bottom: 0; }
    .nav-cta-item:first-of-type { margin-bottom: 0; }

    .nav-cta-item .btn {
        width: auto;
        padding: 10px 20px;
        font-size: 14px;
        min-height: 40px;
    }
}

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

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

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

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

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

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

/* Nav overlay (mobile only) */
.nav-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease, visibility 300ms ease;
}

.nav-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 992px) {
    .nav-overlay { display: none; }
}

/* ============================================
   HERO SECTIONS
   Full-bleed with radial spotlight glow,
   layered model image and gold bonus figures
   ============================================ */
.hero {
    position: relative;
    overflow: clip;
    padding: var(--hero-pad-top) 0 var(--section-gap);
    background: var(--background);
}

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

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero__spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(800px, 100%);
    height: min(800px, 100%);
    background: radial-gradient(circle, rgba(177, 18, 48, 0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero__content {
        grid-template-columns: 1.2fr 0.8fr;
        padding: 0 32px;
    }
}

.hero__text { text-align: center; }

@media (min-width: 992px) {
    .hero__text { text-align: left; }
}

.hero__title {
    font-family: "Cinzel", serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--foreground);
    margin: 0 0 16px;
}

@media (min-width: 992px) {
    .hero__title { font-size: 52px; }
}

.hero__subtitle {
    font-size: 18px;
    color: var(--muted-foreground);
    margin: 0 0 24px;
    max-width: 500px;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .hero__subtitle { font-size: 20px; }
    .hero__text .hero__subtitle { max-width: 100%; }
}

.hero__bonus {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 20px 0 28px;
}

.hero__bonus-number {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 42px;
    line-height: 1;
}

@media (min-width: 992px) {
    .hero__bonus-number { font-size: 56px; }
}

.hero__bonus-label {
    font-size: 18px;
    color: var(--muted-foreground);
    font-weight: 500;
}

.hero__model {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero__model img {
    max-height: 400px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 992px) {
    .hero__model img { max-height: 500px; }
}

/* Split hero variant (bonussen, zahlungen) */
.hero-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-split { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   CARD GRID - info_card_grid component
   Responsive: 1 col mobile → 2 col @640 → 3 col @992
   ============================================ */
.card-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 992px) {
    .card-grid { padding: 0 32px; }
}

.card-grid--2 { grid-template-columns: 1fr; }
.card-grid--3 { grid-template-columns: 1fr; }

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

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

.info-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 200ms ease, box-shadow 200ms ease;
    border: 1px solid rgba(201, 162, 39, 0.5);
    box-shadow: inset 0 0 0 6px var(--card), inset 0 0 0 7px rgba(201, 162, 39, 0.3);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(177, 18, 48, 0.15), 0 0 16px rgba(216, 31, 63, 0.15),
                inset 0 0 0 6px var(--card), inset 0 0 0 7px rgba(201, 162, 39, 0.3);
}

.info-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.info-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.info-card:hover .info-card__media img {
    transform: scale(1.05);
}

.info-card__body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 639px) {
    .info-card__body { padding: 20px; }
}

.info-card__title {
    font-family: "Cinzel", serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
    line-height: 1.25;
}

@media (min-width: 992px) {
    .info-card__title { font-size: 26px; }
}

.info-card__number {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 1;
    margin: 4px 0;
}

@media (min-width: 992px) {
    .info-card__number { font-size: 48px; }
}

.info-card__desc {
    font-size: 16px;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.6;
}

.info-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color 200ms ease;
}

.info-card__link:hover {
    color: var(--accent-foreground);
    text-decoration: underline;
}

.info-card__link::after {
    content: '\2192';
    font-size: 18px;
    line-height: 1;
}

/* ============================================
   FAQ ACCORDION - faq_accordion component
   Native details/summary with CSS animation
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 200ms ease;
}

.faq-item[open] {
    border-color: rgba(201, 162, 39, 0.4);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--foreground);
    list-style: none;
    min-height: 48px;
    gap: 16px;
}

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

.faq-question > span:first-child { flex: 1; }

.faq-chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    transition: transform 300ms ease;
    flex-shrink: 0;
}

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

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 300ms ease;
}

.faq-item[open] .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer__inner {
    overflow: hidden;
}

.faq-answer__inner p {
    margin: 0 24px 20px 24px;
    padding: 12px 0 0 20px;
    border-left: 3px solid var(--accent);
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ============================================
   CTA BANNER - cta_banner component
   Full-bleed with spotlight glow and gold frame
   ============================================ */
.cta-banner {
    padding: var(--cta-pad) 20px;
    background: var(--background);
    position: relative;
    overflow: clip;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    max-width: 100%;
    max-height: 100%;
    background: radial-gradient(circle, rgba(177, 18, 48, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner__frame {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    background: var(--card);
    border-radius: var(--radius);
    text-align: center;
}

@media (max-width: 639px) {
    .cta-banner__frame { padding: 32px 20px; }
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
}

.cta-banner__title {
    font-family: "Cinzel", serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--foreground);
    margin: 0 0 12px;
    line-height: 1.2;
}

@media (min-width: 992px) {
    .cta-banner__title { font-size: 38px; }
}

.cta-banner__subtext {
    font-size: 17px;
    color: var(--muted-foreground);
    margin: 0 0 28px;
    line-height: 1.6;
}

.cta-banner__micro {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
    margin: 16px 0 0;
    line-height: 1.5;
}

/* ============================================
   FOOTER
   Four columns on desktop, stacked on mobile
   ============================================ */
.site-footer {
    background: var(--popover);
    border-top: 1px solid var(--border);
    padding: 56px 0 24px;
}

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

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

@media (min-width: 992px) {
    .footer-inner {
        grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
        padding: 0 32px;
    }
}

.footer-col h2 {
    font-family: "Cinzel", serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-brand .footer-logo {
    font-family: "Cinzel", serif;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--muted-foreground);
    font-size: 14px;
    text-decoration: none;
    transition: color 200ms ease;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
}

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

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

.payment-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-foreground);
    white-space: nowrap;
}

.footer-legal p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0 0 12px;
    line-height: 1.5;
}

.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    margin-right: 8px;
    flex-shrink: 0;
}

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

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

@media (min-width: 992px) {
    .footer-bottom { padding: 24px 32px 0; }
}

/* ============================================
   ENGAGEMENT PATTERNS
   - Summary/TL;DR box
   - Callout/highlight box
   - Stat highlight
   - Pull quote
   - Trust badges row
   - Comparison table
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background: var(--card);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 24px;
    margin: 32px 0;
}

.summary-box__title {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin: 0 0 12px;
}

.summary-box p {
    font-size: 16px;
    color: var(--foreground);
    margin: 0;
    line-height: 1.6;
}

/* Callout / highlight box */
.callout {
    background: rgba(177, 18, 48, 0.08);
    border: 1px solid rgba(177, 18, 48, 0.3);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 32px 0;
}

.callout p {
    margin: 0;
    font-size: 16px;
    color: var(--foreground);
    line-height: 1.6;
}

.callout strong {
    color: var(--accent);
}

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: 24px;
}

.stat-highlight__number {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1;
    margin: 0 0 8px;
}

@media (min-width: 992px) {
    .stat-highlight__number { font-size: 56px; }
}

.stat-highlight__label {
    font-size: 16px;
    color: var(--muted-foreground);
    font-weight: 500;
    margin: 0;
}

/* Pull quote */
.pull-quote {
    border-left: 4px solid var(--gold);
    padding: 24px 0 24px 32px;
    margin: 40px 0;
    max-width: 700px;
}

.pull-quote blockquote {
    font-family: "Cinzel", serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--foreground);
    margin: 0 0 12px;
    font-style: italic;
}

.pull-quote cite {
    font-size: 14px;
    color: var(--muted-foreground);
    font-style: normal;
}

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted-foreground);
    font-weight: 500;
}

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

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 15px;
}

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

.comparison-table th {
    font-family: "Cinzel", serif;
    font-weight: 600;
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

/* Content prose block */
.prose {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.prose p {
    font-size: 17px;
    color: var(--foreground);
    line-height: 1.7;
    margin: 0 0 24px;
}

.prose a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(216, 31, 63, 0.4);
    text-underline-offset: 3px;
    transition: text-decoration-color 200ms ease;
}

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

.prose strong {
    color: var(--gold);
    font-weight: 700;
}

/* ============================================
   SCROLL ANIMATIONS
   Fade in and slide up on viewport entry
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
    transition-delay: var(--card-delay, 0ms);
}

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

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

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

/* ============================================
   SITEMAP PAGE
   Simple card list layout
   ============================================ */
.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.sitemap-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color 200ms ease, transform 200ms ease;
}

.sitemap-item:hover {
    border-color: rgba(201, 162, 39, 0.5);
    transform: translateX(4px);
}

.sitemap-item a {
    font-family: "Cinzel", serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.sitemap-item a:hover {
    color: var(--gold-light);
}

.sitemap-item p {
    font-size: 15px;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   BONUSSEN PAGE: Matador Wheel idle rotation
   First card of the promotions grid shows a
   slowly spinning circular prize wheel
   ============================================ */
.wheel-grid .info-card:first-child .info-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 45%, rgba(177, 18, 48, 0.22), transparent 72%), var(--background);
    padding: 24px;
}

.wheel-grid .info-card:first-child .info-card__media img {
    width: 82%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(201, 162, 39, 0.6);
    box-shadow: 0 0 28px rgba(177, 18, 48, 0.35);
    animation: wheel-idle-spin 24s linear infinite;
}

.wheel-grid .info-card:first-child:hover .info-card__media img {
    transform: none;
}

@keyframes wheel-idle-spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   SPIELE PAGE: Neon LIVE badge on live casino cards
   ============================================ */
.live-grid .info-card__media {
    position: relative;
}

.live-grid .info-card__media::after {
    content: 'LIVE';
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 5px 10px;
    border-radius: 6px;
    box-shadow: 0 0 14px rgba(229, 77, 103, 0.6);
    z-index: 2;
    pointer-events: none;
}

/* ============================================
   STICKY MOBILE CTA
   Keeps Jetzt spielen reachable on mobile
   ============================================ */
.mobile-sticky-cta {
    display: none;
}

@media (max-width: 991px) {
    .mobile-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 900;
        background: rgba(18, 18, 22, 0.98);
        border-top: 1px solid var(--border);
        padding: 12px 20px;
        justify-content: center;
    }

    .mobile-sticky-cta .btn {
        width: 100%;
    }
}

/* ============================================
   ZAHLUNGEN PAGE: KYC step flow
   Three steps with gold numbers and thin
   connecting lines on desktop
   ============================================ */
.kyc-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: var(--max-width);
    margin: 40px auto 0;
    padding: 0 20px;
    position: relative;
}

@media (min-width: 992px) {
    .kyc-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 0 32px;
    }

    .kyc-steps::before {
        content: '';
        position: absolute;
        top: 32px;
        left: 12%;
        right: 12%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.5), rgba(201, 162, 39, 0.5), transparent);
        z-index: 0;
    }
}

.kyc-step {
    background: var(--card);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 639px) {
    .kyc-step { padding: 20px; }
}

.kyc-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 26px;
    line-height: 1;
    margin-bottom: 16px;
    background: var(--card);
}

.kyc-step__title {
    font-family: "Cinzel", serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--foreground);
    margin: 0 0 8px;
}

.kyc-step p {
    font-size: 15px;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   MISC UTILITIES
   ============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}

/* ============================================
   HOMEPAGE: Stats row, trust logos, hero polish
   ============================================ */
.stats-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 640px) {
    .stats-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 992px) {
    .stats-row { padding: 0 32px; }
}

.stats-row .stat-highlight {
    background: var(--background);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--radius);
}

.trust-logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.trust-logo-row img {
    height: 72px;
    width: auto;
    object-fit: contain;
    transition: transform 200ms ease;
}

.trust-logo-row img:hover {
    transform: translateY(-4px);
}

@media (min-width: 992px) {
    .trust-logo-row img { height: 88px; }
}

.hero .cta-banner__micro {
    text-align: center;
}

@media (min-width: 992px) {
    .hero .cta-banner__micro { text-align: left; }
}

/* Offset for sticky mobile CTA so footer content stays reachable */
@media (max-width: 991px) {
    body { padding-bottom: 72px; }
}
