/* ============================================
   YEP CASINO - Design System
   Art Deco / Gangster Club / Vintage Casino
   Mobile-first | Dark theme default
   ============================================ */

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

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

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

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

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

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

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

section {
    overflow: clip;
}


/* ============================================
   RESET & BASE
   ============================================ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Raleway", "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
    color: var(--ring);
    text-decoration: underline;
}

ul, ol {
    padding-left: 1.5em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    color: var(--primary);
    line-height: 1.2;
    margin-top: 0;
}

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


/* ============================================
   TYPOGRAPHY SYSTEM
   Playfair Display for headings,
   Raleway for body/UI text
   ============================================ */
h1 {
    font-size: clamp(1.875rem, 4vw + 0.5rem, 3rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.5rem, 3vw + 0.25rem, 2.25rem);
    font-weight: 600;
    margin-bottom: 0.875rem;
}

h3 {
    font-size: clamp(1.25rem, 2vw + 0.2rem, 1.625rem);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: clamp(1.125rem, 1.5vw + 0.2rem, 1.375rem);
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1.5rem;
    max-width: 72ch;
}

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

/* Gold gradient text effect for key numbers */
.gold-text {
    background: linear-gradient(135deg, #d4a843 0%, #f5deb3 40%, #d4a843 60%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.text-muted {
    color: var(--muted-foreground);
}


/* ============================================
   LAYOUT CONTAINERS
   Max-width 1140px for content,
   full-bleed for heroes/CTAs
   ============================================ */
.container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 768px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.section-padding {
    padding-top: 48px;
    padding-bottom: 48px;
}

@media (min-width: 1024px) {
    .section-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}


/* ============================================
   ART DECO DECORATIVE ELEMENTS
   Chevron dividers, sunburst ornaments,
   geometric borders
   ============================================ */

/* Chevron divider line */
.deco-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 20%, var(--primary) 50%, var(--primary) 80%, transparent 100%);
    opacity: 0.4;
    margin: 0 auto;
    max-width: 90%;
    position: relative;
}

.deco-divider::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    font-size: 10px;
    background: var(--background);
    padding: 0 12px;
    line-height: 1;
}

/* Art Deco frame border for sections */
.deco-frame {
    border: 1px solid rgba(212, 168, 67, 0.25);
    position: relative;
    padding: 24px;
}

.deco-frame::before,
.deco-frame::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--primary);
    opacity: 0.5;
}

.deco-frame::before {
    top: -1px;
    left: -1px;
    border-top: 2px solid;
    border-left: 2px solid;
}

.deco-frame::after {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

/* Sunburst background ornament */
.sunburst-bg {
    position: relative;
}

.sunburst-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}


/* ============================================
   BUTTONS
   Primary gold solid, secondary outlined,
   CTA with shimmer animation
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.2s ease-out;
    min-height: 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 1.3;
}

.btn-primary {
    background: linear-gradient(135deg, #d4a843 0%, #b8860b 100%);
    color: #121212;
    border-color: #d4a843;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: linear-gradient(135deg, #e6be5a 0%, #d4a843 100%);
    color: #121212;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.35);
}

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

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: rgba(212, 168, 67, 0.1);
    color: var(--primary);
    text-decoration: none;
}

/* CTA shimmer sweep */
.btn-cta {
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    transition: left 0.5s ease;
}

.btn-cta:hover::after {
    left: 100%;
}

@media (min-width: 1024px) {
    .btn {
        padding: 14px 36px;
    }
    .btn-cta {
        padding: 16px 48px;
        font-size: 18px;
    }
}


/* ============================================
   HEADER - Fixed sticky navigation
   Dark leather texture, gold accents
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    padding: 12px 16px;
    gap: 16px;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 1001;
}

.header-logo .logo {
    width: 40px;
    height: 40px;
    border-radius: 6px;
}

.logo-text {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
}

/* Desktop Navigation */
.main-nav {
    display: none;
}

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

.nav-link {
    display: flex;
    align-items: center;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    position: relative;
    min-height: 48px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--primary);
    text-decoration: none;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    transform: scaleX(1);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    z-index: 1001;
}

.btn-header-register {
    padding: 10px 20px;
    font-size: 14px;
    min-height: 44px;
}

/* Hamburger */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    z-index: 1001;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X animation */
.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

/* Mobile Navigation Drawer */
@media (max-width: 1023px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        z-index: 999;
        overflow-y: auto;
        padding: 24px 16px;
    }

    .main-nav.is-open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        font-size: 18px;
        padding: 16px 20px;
        border-bottom: 1px solid var(--border);
        min-height: 56px;
    }

    .nav-link::after {
        display: none;
    }
}

/* Desktop: show nav, hide burger */
@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .header-inner {
        padding: 12px 24px;
    }

    .header-logo .logo {
        width: 48px;
        height: 48px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .btn-header-register {
        padding: 12px 24px;
        font-size: 15px;
    }
}


/* ============================================
   MAIN CONTENT
   Offset for fixed header
   ============================================ */
#main-content {
    padding-top: 65px;
}

@media (min-width: 1024px) {
    #main-content {
        padding-top: 73px;
    }
}


/* ============================================
   HERO SECTIONS
   Full-bleed with sunburst, parallax bg
   ============================================ */
.hero {
    position: relative;
    padding: 48px 16px 56px;
    text-align: center;
    background: var(--background);
    overflow: clip;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1,
.hero .hero__title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero__bonus-amount {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 5vw + 0.5rem, 2.625rem);
    font-weight: 800;
    background: linear-gradient(135deg, #d4a843 0%, #f5deb3 40%, #d4a843 60%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 1rem;
}

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

@media (min-width: 768px) {
    .hero {
        padding: 64px 24px 72px;
    }

    .hero__actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 80px 24px 96px;
    }
}

/* Subdued hero variant for technical pages */
.hero-subdued {
    padding: 40px 16px 44px;
}

.hero-subdued::before {
    opacity: 0.5;
}

@media (min-width: 1024px) {
    .hero-subdued {
        padding: 56px 24px 64px;
    }
}


/* ============================================
   SECTION HEADINGS
   Consistent section title styling
   ============================================ */
.section-heading {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-heading::after {
    content: '◆';
    display: block;
    color: var(--primary);
    font-size: 10px;
    margin-top: 12px;
    opacity: 0.6;
}


/* ============================================
   GAME CARD GRID
   Responsive grid of game thumbnails
   ============================================ */
.game-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

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

.game-card {
    display: block;
    background: var(--card);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease-out, border-color 0.2s ease-out, box-shadow 0.2s ease-out;
    min-width: 0;
}

.game-card:hover,
.game-card:focus-visible {
    transform: scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 4px 24px rgba(212, 168, 67, 0.15);
    text-decoration: none;
}

.game-card__image-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--muted);
}

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

.game-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--card) 0%, var(--muted) 100%);
}

.game-card__placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.5;
}

.game-card__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 20px;
    line-height: 1.2;
}

.badge-rtp {
    background: var(--secondary);
    color: var(--primary);
}

.badge-category {
    background: rgba(212, 168, 67, 0.9);
    color: #121212;
}

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

.game-card__title {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
    line-height: 1.3;
}

.game-card__category {
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 4px;
    display: block;
}

@media (min-width: 768px) {
    .game-card__title {
        font-size: 15px;
    }
}


/* ============================================
   CTA BANNER
   Full-width call-to-action sections
   ============================================ */
.cta-banner {
    text-align: center;
    position: relative;
    background: var(--background);
}

.cta-banner__inner {
    position: relative;
    padding: 48px 16px;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.cta-banner__sunburst {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.cta-banner__heading {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 3vw + 0.25rem, 2.25rem);
    font-weight: 700;
    background: linear-gradient(135deg, #d4a843 0%, #f5deb3 40%, #d4a843 60%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.cta-banner__subtext {
    color: var(--foreground);
    font-size: 17px;
    margin-bottom: 1.5rem;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner__micro {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 12px;
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .cta-banner__inner {
        padding: 80px 24px;
    }
}


/* ============================================
   FAQ ACCORDION
   Expandable Q&A with Art Deco frame
   Uses native <details>/<summary> - no JS needed
   ============================================ */
.faq-section {
    padding: 48px 16px;
}

.faq-section__frame {
    max-width: 860px;
    margin: 0 auto;
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 4px;
    padding: 24px 16px;
    position: relative;
}

.faq-section__frame::before,
.faq-section__frame::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--primary);
    opacity: 0.5;
}

.faq-section__frame::before {
    top: -1px;
    left: -1px;
    border-top: 2px solid;
    border-left: 2px solid;
}

.faq-section__frame::after {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

.faq-section__heading {
    text-align: center;
    margin-bottom: 1.5rem;
}

.faq-accordion {
    border-top: 1px solid rgba(212, 168, 67, 0.2);
}

.faq-item {
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 4px;
    cursor: pointer;
    list-style: none;
    font-family: "Raleway", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
    min-height: 48px;
    transition: color 0.2s ease;
}

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

.faq-item summary::marker {
    display: none;
    content: '';
}

.faq-item summary:hover {
    color: var(--primary);
}

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

.faq-item__chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-item__answer {
    padding: 0 4px 20px;
    font-size: 16px;
    color: var(--foreground);
    line-height: 1.6;
}

.faq-item__answer a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-item__answer a:hover {
    text-decoration-thickness: 2px;
}

.faq-item__answer ul,
.faq-item__answer ol {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 64px 24px;
    }

    .faq-section__frame {
        padding: 32px 32px;
    }

    .faq-item summary {
        padding: 28px 8px;
        font-size: 18px;
    }

    .faq-item__answer {
        padding: 0 8px 28px;
        font-size: 17px;
    }
}


/* ============================================
   COMPARISON TABLE
   Desktop table + mobile stacked cards
   ============================================ */
.comparison-table-wrap {
    padding: 0 16px;
}

.comparison-table__frame {
    max-width: 1140px;
    margin: 0 auto;
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.comparison-table__frame::before,
.comparison-table__frame::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: var(--primary);
    opacity: 0.5;
    z-index: 2;
}

.comparison-table__frame::before {
    top: 0;
    left: 0;
    border-top: 2px solid;
    border-left: 2px solid;
}

.comparison-table__frame::after {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

/* Desktop table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.comparison-table thead th {
    background: var(--secondary);
    color: var(--primary);
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 12px;
    text-align: left;
    white-space: nowrap;
    position: relative;
}

.comparison-table tbody td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(212, 168, 67, 0.1);
    vertical-align: middle;
    color: var(--foreground);
}

.comparison-table tbody tr:nth-child(even) td {
    background: rgba(212, 168, 67, 0.03);
}

.comparison-table .highlight-col {
    border-left: 2px solid rgba(212, 168, 67, 0.4);
    border-right: 2px solid rgba(212, 168, 67, 0.4);
}

.highlight-badge {
    display: block;
    font-size: 11px;
    color: #d4a843;
    margin-bottom: 4px;
}

.icon-check {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.icon-cross {
    color: var(--destructive);
    font-weight: 700;
    font-size: 18px;
}

/* Currency/number styling in tables */
.comparison-table td .table-num {
    font-family: "Playfair Display", serif;
    color: var(--primary);
    font-weight: 600;
}

@media (min-width: 768px) {
    .comparison-table thead th {
        padding: 16px;
        font-size: 15px;
    }

    .comparison-table tbody td {
        padding: 16px;
        font-size: 16px;
    }
}

/* Mobile stacked card layout */
.comparison-cards-mobile {
    display: none;
}

@media (max-width: 599px) {
    .table-wrapper {
        display: none;
    }

    .comparison-cards-mobile {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }

    .comparison-card-mobile {
        border: 1px solid rgba(212, 168, 67, 0.2);
        border-radius: 4px;
        overflow: hidden;
    }

    .comparison-card-mobile__row {
        display: flex;
        justify-content: space-between;
        padding: 12px 14px;
        border-bottom: 1px solid rgba(212, 168, 67, 0.08);
        gap: 8px;
    }

    .comparison-card-mobile__row:last-child {
        border-bottom: none;
    }

    .comparison-card-mobile__row:first-child {
        background: var(--secondary);
    }

    .comparison-card-mobile__row:first-child .comparison-card-mobile__label,
    .comparison-card-mobile__row:first-child .comparison-card-mobile__value {
        color: var(--primary);
        font-weight: 600;
    }

    .comparison-card-mobile__row.highlight-col {
        background: rgba(212, 168, 67, 0.05);
    }

    .comparison-card-mobile__label {
        font-size: 13px;
        color: var(--muted-foreground);
        font-weight: 500;
    }

    .comparison-card-mobile__value {
        font-size: 14px;
        color: var(--foreground);
        font-weight: 600;
        text-align: right;
    }
}


/* ============================================
   TRUST BADGES ROW
   Horizontal trust indicators
   ============================================ */
.trust-badges {
    padding: 32px 16px;
    background: var(--background);
}

.trust-badges__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 0;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 8px;
}

.trust-badge__icon {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.trust-badge__value {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4a843 0%, #f5deb3 40%, #d4a843 60%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 6px;
}

.trust-badge__label {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    color: var(--foreground);
    font-weight: 500;
}

@media (min-width: 768px) {
    .trust-badges {
        padding: 48px 24px;
    }

    .trust-badges__inner {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .trust-badge__value {
        font-size: 2.625rem;
    }

    .trust-badge__label {
        font-size: 14px;
    }
}


/* ============================================
   INFO CARDS
   Versatile Art Deco content cards
   ============================================ */
.info-card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
}

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

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

/* 2-column variant */
.info-card-grid--2col {
    grid-template-columns: minmax(0, 1fr);
}

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

/* 6-column variant: 2 on mobile, 3 on tablet, 6 on desktop */
.info-card-grid--6col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.info-card {
    position: relative;
    background: var(--card);
    border: 2px solid rgba(212, 168, 67, 0.15);
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
    min-width: 0;
}

.info-card:hover {
    border-color: rgba(212, 168, 67, 0.45);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* Corner accents */
.info-card::before,
.info-card::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: var(--primary);
    opacity: 0.3;
    transition: opacity 0.2s ease;
}

.info-card::before {
    top: -1px;
    left: -1px;
    border-top: 2px solid;
    border-left: 2px solid;
}

.info-card::after {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

.info-card:hover::before,
.info-card:hover::after {
    opacity: 0.7;
}

.info-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--secondary);
    color: var(--primary);
}

.info-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
    line-height: 1;
}

.info-card__image {
    margin: -20px -20px 16px;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
}

.info-card__image img {
    width: 100%;
    height: auto;
    display: block;
}

.info-card__title {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.info-card__text {
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.info-card__text p:last-child {
    margin-bottom: 0;
}

.info-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
}

.info-card__list li {
    position: relative;
    padding-left: 1.25em;
    margin-bottom: 0.35rem;
    font-size: 14px;
    line-height: 1.5;
    color: var(--foreground);
}

.info-card__list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 8px;
    top: 5px;
}

.info-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
    min-height: 48px;
}

.info-card__link:hover {
    border-bottom-color: var(--primary);
    text-decoration: none;
}

@media (min-width: 1024px) {
    .info-card {
        padding: 24px;
    }

    .info-card__image {
        margin: -24px -24px 20px;
    }

    .info-card__title {
        font-size: 1.375rem;
    }
}


/* ============================================
   PROVIDER LOGOS CAROUSEL
   Horizontal row of provider badges
   ============================================ */
.provider-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 16px 0;
}

.provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: var(--card);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 6px;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.provider-logo:hover {
    color: var(--primary);
    border-color: rgba(212, 168, 67, 0.4);
}


/* ============================================
   SEO CONTENT SECTION
   Long-form text blocks with proper hierarchy
   ============================================ */
.seo-content {
    padding: 48px 16px;
    max-width: 860px;
    margin: 0 auto;
}

.seo-content h2 {
    margin-top: 2.5rem;
}

.seo-content h2:first-child {
    margin-top: 0;
}

.seo-content h3 {
    margin-top: 2rem;
}

.seo-content ul,
.seo-content ol {
    margin-bottom: 1.5rem;
}

.seo-content li {
    margin-bottom: 0.5rem;
}

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 15px;
}

.seo-content table th {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 600;
    padding: 12px;
    text-align: left;
}

.seo-content table td {
    padding: 12px;
    border-bottom: 1px solid rgba(212, 168, 67, 0.1);
    color: var(--foreground);
}

.seo-content table tr:nth-child(even) td {
    background: rgba(212, 168, 67, 0.03);
}

.seo-content blockquote {
    border-left: 3px solid var(--primary);
    margin: 1.5rem 0;
    padding: 16px 20px;
    background: rgba(212, 168, 67, 0.05);
    border-radius: 0 6px 6px 0;
    font-style: italic;
}

.seo-content blockquote cite {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 13px;
    color: var(--muted-foreground);
}

/* Ensure links in SEO text blocks are distinguishable (a11y: link-in-text-block) */
.seo-content p a,
.seo-content li a,
.responsible-content p a,
.responsible-content li a,
.text-muted a {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.seo-content p a:hover,
.seo-content li a:hover,
.responsible-content p a:hover,
.responsible-content li a:hover,
.text-muted a:hover {
    text-decoration-thickness: 2px;
}

@media (min-width: 768px) {
    .seo-content {
        padding: 64px 24px;
    }
}

@media (min-width: 1024px) {
    .seo-content {
        padding: 80px 24px;
    }
}


/* ============================================
   ENGAGEMENT PATTERNS
   Summary boxes, callouts, stat highlights, etc.
   ============================================ */

/* TL;DR / Summary Box */
.summary-box {
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.25);
    border-radius: 6px;
    padding: 20px;
    margin: 1.5rem 0;
    position: relative;
}

.summary-box::before {
    content: 'Zusammenfassung';
    display: block;
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Callout / Highlight Box */
.callout-box {
    border-left: 3px solid var(--primary);
    background: rgba(212, 168, 67, 0.05);
    padding: 16px 20px;
    margin: 1.5rem 0;
    border-radius: 0 6px 6px 0;
}

.callout-box p:last-child {
    margin-bottom: 0;
}

/* Stat Highlight */
.stat-highlight {
    text-align: center;
    padding: 24px 16px;
    margin: 1.5rem 0;
}

.stat-highlight__number {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #d4a843 0%, #f5deb3 40%, #d4a843 60%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1.1;
}

.stat-highlight__label {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: var(--foreground);
    margin-top: 8px;
    display: block;
}

.stat-highlight__source {
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 4px;
    display: block;
}

/* Pull Quote */
.pull-quote {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-style: italic;
    color: var(--primary);
    text-align: center;
    padding: 24px 20px;
    margin: 2rem 0;
    border-top: 1px solid rgba(212, 168, 67, 0.2);
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
    position: relative;
}

.pull-quote::before {
    content: '❝';
    display: block;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 8px;
    opacity: 0.5;
}

.pull-quote cite {
    display: block;
    font-family: "Raleway", sans-serif;
    font-style: normal;
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 12px;
}


/* ============================================
   FOOTER
   4-column layout, payment logos, trust badges
   ============================================ */
.site-footer {
    background: var(--background);
    border-top: 2px solid var(--border);
    padding-top: 48px;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding-bottom: 32px;
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 40px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

.footer-logo span {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}

.footer-tagline {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
    max-width: 30ch;
}

.footer-heading {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Trust badges */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted-foreground);
    text-align: center;
    line-height: 1.3;
}

.badge-18 {
    font-size: 16px;
    font-weight: 800;
    color: var(--destructive);
    border-color: var(--destructive);
    min-width: 44px;
}

/* Payment Methods */
.footer-payments {
    padding: 24px 0;
    border-top: 1px solid var(--border);
}

.footer-payment-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted-foreground);
    margin-bottom: 12px;
}

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

.payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    color: var(--muted-foreground);
}

/* Footer Bottom */
.footer-bottom {
    padding: 24px 0;
}

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

.footer-disclaimer {
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.5;
    opacity: 0.8;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .footer-inner {
        padding: 0 24px;
    }
}


/* ============================================
   SCROLL ANIMATIONS
   Elements start invisible, reveal on scroll
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

/* Staggered delays for sibling items */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* Disable animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ============================================
   RESPONSIVE GRIDS UTILITY
   Used by pages for various content layouts
   ============================================ */
.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
}

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

.grid-3 {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
}

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

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

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


/* ============================================
   HOMEPAGE SPECIFIC
   Hero decorative elements, navigation cards
   ============================================ */
.hero__title {
    max-width: 20ch;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero__title {
        max-width: 28ch;
    }
}


/* ============================================
   VIP / REDIRECT PAGE
   Minimal centered interstitial
   ============================================ */
.vip-redirect {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    background: var(--background);
    position: relative;
}

.vip-redirect__inner {
    max-width: 400px;
}

.vip-redirect__logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 12px;
}

.vip-redirect__heading {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.vip-redirect__text {
    font-size: 16px;
    color: var(--foreground);
    margin-bottom: 24px;
}

.vip-redirect__fallback {
    font-size: 14px;
    color: var(--primary);
}

/* Pulsing loading animation */
.vip-redirect__spinner {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.vip-redirect__spinner span {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: vip-pulse 1.2s ease-in-out infinite;
}

.vip-redirect__spinner span:nth-child(2) { animation-delay: 0.15s; }
.vip-redirect__spinner span:nth-child(3) { animation-delay: 0.3s; }

@keyframes vip-pulse {
    0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
    40% { opacity: 1; transform: scale(1.2); }
}

/* VIP redirect page - hide header/footer for standalone interstitial */
.vip-redirect ~ .site-footer,
body:has(.vip-redirect) .site-header,
body:has(.vip-redirect) .site-footer {
    display: none;
}

body:has(.vip-redirect) #main-content {
    padding-top: 0;
}

/* Art Deco decorative border for VIP redirect */
.vip-redirect__deco-border {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 168, 67, 0.3) 20%, rgba(212, 168, 67, 0.5) 50%, rgba(212, 168, 67, 0.3) 80%, transparent 100%);
}

.vip-redirect__deco-border::before,
.vip-redirect__deco-border::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--primary);
    opacity: 0.4;
}

.vip-redirect__deco-border::before {
    top: -1px;
    left: 0;
    border-top: 2px solid;
    border-left: 2px solid;
}

.vip-redirect__deco-border::after {
    top: -1px;
    right: 0;
    border-top: 2px solid;
    border-right: 2px solid;
}

.vip-redirect__deco-border--bottom {
    top: auto;
    bottom: 24px;
}

.vip-redirect__deco-border--bottom::before {
    top: auto;
    bottom: -1px;
    border-top: none;
    border-bottom: 2px solid;
}

.vip-redirect__deco-border--bottom::after {
    top: auto;
    bottom: -1px;
    border-top: none;
    border-bottom: 2px solid;
}

/* Diamond ornament on top deco line */
.vip-redirect__deco-border:not(.vip-redirect__deco-border--bottom)::after {
    /* keep corner */
}

.vip-redirect .vip-redirect__heading {
    font-size: clamp(1.375rem, 3vw + 0.5rem, 1.75rem);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.vip-redirect .vip-redirect__text strong {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}


/* ============================================
   RESPONSIBLE GAMBLING PAGE
   Subdued, serious tone
   ============================================ */
.responsible-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 16px 48px;
}

.responsible-content h2 {
    margin-top: 2rem;
}

.responsible-content h2:first-child {
    margin-top: 0;
}

.responsible-content ul {
    margin-bottom: 1.5rem;
}

.responsible-content li {
    margin-bottom: 0.5rem;
}

.warning-signs-list {
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 6px;
    padding: 20px 20px 20px 24px;
    margin: 1.5rem 0;
    background: rgba(212, 168, 67, 0.03);
}

.warning-signs-list li::marker {
    color: var(--destructive);
}

/* Age commitment box */
.age-commitment {
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.25);
    border-radius: 6px;
    padding: 20px;
    margin: 1.5rem 0;
}

.age-commitment p {
    margin-bottom: 0;
}

/* Responsible gambling hero adjustments */
.responsible-hero .hero__title {
    max-width: 24ch;
}

@media (min-width: 768px) {
    .responsible-hero .hero__title {
        max-width: 32ch;
    }
}

/* Responsible tools grid - 2 cols on mobile, 3 on desktop */
.responsible-tools-grid .info-card {
    border-color: rgba(212, 168, 67, 0.12);
}

.responsible-tools-grid .info-card:hover {
    border-color: rgba(212, 168, 67, 0.3);
}

.responsible-tools-grid .info-card__icon {
    font-size: 1.75rem;
}

/* Soft CTA for responsible gambling page */
.responsible-cta {
    padding-top: 32px;
    padding-bottom: 48px;
}

@media (min-width: 768px) {
    .responsible-content {
        padding: 48px 24px 64px;
    }
}


/* ============================================
   ZAHLUNGSMETHODEN HERO
   ============================================ */
.zahlungen-hero {
    position: relative;
    overflow: clip;
}

.zahlungen-hero::after {
    content: '💳';
    position: absolute;
    top: 15%;
    right: 8%;
    font-size: 3rem;
    opacity: 0.08;
    pointer-events: none;
}

@media (min-width: 768px) {
    .zahlungen-hero::after {
        font-size: 5rem;
        opacity: 0.06;
    }
}


/* ============================================
   SPIELAUTOMATEN HERO
   ============================================ */
.spielautomaten-hero {
    position: relative;
    overflow: clip;
}

.spielautomaten-hero::after {
    content: '🎰';
    position: absolute;
    top: 15%;
    right: 8%;
    font-size: 3rem;
    opacity: 0.08;
    pointer-events: none;
}

@media (min-width: 768px) {
    .spielautomaten-hero::after {
        font-size: 5rem;
        opacity: 0.06;
    }
}


/* ============================================
   FREISPIELE HERO - Animated Gold Coin Motifs
   ============================================ */
.freispiele-hero {
    position: relative;
    overflow: clip;
}

.freispiele-hero__coins {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.coin {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.15;
    animation: coin-float 6s ease-in-out infinite;
}

.coin--1 {
    top: 12%;
    left: 8%;
    animation-delay: 0s;
    font-size: 1.25rem;
}

.coin--2 {
    top: 25%;
    right: 10%;
    animation-delay: 1.2s;
    font-size: 1.75rem;
}

.coin--3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2.4s;
    font-size: 1rem;
}

.coin--4 {
    bottom: 30%;
    right: 18%;
    animation-delay: 0.8s;
    font-size: 1.5rem;
}

.coin--5 {
    top: 50%;
    left: 50%;
    animation-delay: 3.5s;
    font-size: 1.125rem;
    opacity: 0.1;
}

@keyframes coin-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.12;
    }
    50% {
        transform: translateY(-18px) rotate(15deg);
        opacity: 0.22;
    }
}

@media (prefers-reduced-motion: reduce) {
    .coin {
        animation: none;
        opacity: 0.1;
    }
}

@media (min-width: 768px) {
    .coin {
        font-size: 2rem;
    }

    .coin--1 {
        font-size: 1.75rem;
    }

    .coin--2 {
        font-size: 2.25rem;
    }

    .coin--3 {
        font-size: 1.5rem;
    }

    .coin--4 {
        font-size: 2rem;
    }

    .coin--5 {
        font-size: 1.5rem;
    }
}


/* ============================================
   BONUS STEP CARDS
   Visual progression with numbered steps
   ============================================ */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a843 0%, #b8860b 100%);
    color: #121212;
    font-family: "Playfair Display", serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    flex-shrink: 0;
}


/* ============================================
   BONUS CLAIMING STEPS
   3-step process with visual flow
   ============================================ */
.bonus-claiming-steps .info-card {
    text-align: center;
}

.bonus-claiming-steps .info-card__icon {
    margin-bottom: 0;
}


/* ============================================
   PAYMENT METHODS GRID
   Dense grid for payment cards
   ============================================ */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

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


/* ============================================
   COUNTDOWN TIMER (visual element)
   ============================================ */
.countdown-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.countdown-badge::before {
    content: '⏱';
}


/* ============================================
   INLINE SEO TABLE (used inside seo-content)
   ============================================ */
.seo-content .table-wrapper {
    margin: 1.5rem 0;
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.seo-content .table-wrapper table {
    margin: 0;
}


/* ============================================
   FOCUS STYLES - Accessibility
   ============================================ */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 2px;
}


/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .site-header,
    .site-footer,
    .cta-banner,
    .mobile-menu-toggle {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    #main-content {
        padding-top: 0;
    }
}