/* === ACCESSIBILITY FIXES === */
p a[style*="color:var(--primary)"],
.trust-section p a,
.seo-content p a {
  color: #9b9488;
  text-underline-offset: 3px;
  text-decoration-color: rgba(212, 149, 14, 0.5);
}

@media (max-width: 767px) {
  .popular-games-grid > *:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
    justify-self: center;
  }
}

/* Fix: color-contrast on table scroll indicator (4.5:1 minimum) */
.table-scroll-indicator span {
  color: #9b9488 !important;
}

/* Fix: link-in-text-block - links must be distinguishable without relying on color */
p a[style*="color"],
.text-center a,
.trust-section p a,
section p a {
  color: #9b9488;
  text-underline-offset: 3px;
}

/* Fix: grid orphan row - center last odd item on 2-col mobile grid */
@media (max-width: 767px) {
  .popular-games-grid > *:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }
}

/* ============================================
   DRAGONIA CASINO - Design System
   Dark fantasy maximalist aesthetic
   Mobile-first responsive design
   ============================================ */

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

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: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 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-out;
}

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

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 16px 0;
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
}

p {
    margin: 0 0 24px 0;
}

img {
    display: block;
}

/* Screen reader only */
.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;
}

/* ============================================
   TYPOGRAPHY - Cinzel Decorative headings + DM Sans body
   Mobile-first sizes, scaled up at breakpoints.
   ============================================ */
h1 {
    font-size: clamp(1.875rem, 4vw + 0.5rem, 3rem);
    font-weight: 900;
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.5rem, 3vw + 0.4rem, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.25rem, 2vw + 0.3rem, 1.625rem);
    font-weight: 700;
    line-height: 1.25;
}

h4 {
    font-size: clamp(1.125rem, 1.5vw + 0.3rem, 1.375rem);
    font-weight: 600;
    line-height: 1.3;
}

/* Golden fire gradient text utility */
.text-gold,
.golden-text {
    background: linear-gradient(135deg, #D4950E 0%, #FFD700 40%, #E8A913 60%, #D4950E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Big number display - Cinzel 42px fire gradient */
.big-number {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(2rem, 5vw + 0.5rem, 2.625rem);
    font-weight: 900;
    background: linear-gradient(135deg, #D4950E 0%, #FFD700 40%, #E8A913 60%, #D4950E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

/* Section headings with golden gradient */
.section-heading {
    font-family: "Cinzel Decorative", "Georgia", serif;
    text-align: center;
    margin-bottom: 40px;
}

.section-heading .golden-text {
    display: block;
}

/* ============================================
   LAYOUT - Container, sections, spacing
   ============================================ */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 56px 0;
}

.section--tight {
    padding: 32px 0;
}

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

    .section--tight {
        padding: 48px 0;
    }

    .container {
        padding: 0 32px;
    }
}

/* Narrow container for text-heavy pages */
.container--narrow {
    max-width: 840px;
}

/* ============================================
   HEADER - Fixed with frosted glass dark backdrop
   z-index: 1000, toggle: 1001, nav: 999
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 13, 19, 0.92);
    border-bottom: 1px solid rgba(212, 149, 14, 0.15);
    height: 64px;
}

@supports (backdrop-filter: blur(12px)) {
    @media (min-width: 1024px) {
        .site-header {
            background: rgba(15, 13, 19, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
    }
}

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

@media (min-width: 1024px) {
    .header-inner {
        padding: 0 32px;
    }
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 1.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #D4950E 0%, #FFD700 50%, #D4950E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.nav-link {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s ease-out, background 0.2s ease-out;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(212, 149, 14, 0.08);
}

/* Header Actions - login/register */
.header-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

.btn-login {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground);
    padding: 8px 16px;
    text-decoration: none;
    transition: color 0.2s ease-out;
}

.btn-login:hover {
    color: var(--primary);
}

.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-foreground);
    background: linear-gradient(135deg, #D4950E 0%, #E8A913 50%, #D4950E 100%);
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    box-shadow: 0 0 16px rgba(212, 149, 14, 0.3);
    white-space: nowrap;
}

.btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(212, 149, 14, 0.5);
    color: var(--primary-foreground);
}

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

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

/* 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 NAV DRAWER
   position: fixed, fully opaque, below header
   ============================================ */
@media (max-width: 1023px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        background: var(--background);
        overflow-y: auto;
        padding: 16px 20px 100px;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .nav-link {
        min-height: 52px;
        font-size: 18px;
        font-weight: 600;
        padding: 14px 20px;
        border-radius: 12px;
    }

    .nav-link:hover,
    .nav-link:active {
        background: rgba(212, 149, 14, 0.1);
    }

    /* Mobile nav buttons */
    .main-nav .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--border);
    }

    .header-actions {
        display: none;
    }
}

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

    .header-actions {
        display: flex;
    }

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

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Main content offset for fixed header */
#main-content {
    padding-top: 64px;
}

/* ============================================
   BUTTONS - Primary, secondary, ghost
   All CTA buttons use .btn-primary with golden gradient
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-foreground);
    background: linear-gradient(135deg, #D4950E 0%, #E8A913 50%, #D4950E 100%);
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    box-shadow: 0 0 20px rgba(212, 149, 14, 0.35);
    min-height: 48px;
    text-align: center;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 30px rgba(212, 149, 14, 0.55);
    color: var(--primary-foreground);
}

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

/* Pulse glow animation for key CTAs */
.btn-primary--pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 149, 14, 0.35);
    }
    50% {
        box-shadow: 0 0 32px rgba(212, 149, 14, 0.65);
    }
}

/* Full-width mobile button */
@media (max-width: 767px) {
    .btn-primary--full-mobile {
        width: 100%;
        max-width: calc(100% - 32px);
    }
}

/* Secondary / outline button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease-out, color 0.2s ease-out;
    min-height: 48px;
}

.btn-secondary:hover {
    background: rgba(212, 149, 14, 0.1);
    color: var(--primary);
}

/* Ghost / text link button */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
    background: none;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease-out;
}

.btn-ghost:hover {
    color: #FFD700;
}

/* ============================================
   MOBILE STICKY CTA BAR
   Appears after scrolling past hero, fixed bottom
   ============================================ */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    padding: 12px 16px;
    background: rgba(15, 13, 19, 0.95);
    border-top: 1px solid rgba(212, 149, 14, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.mobile-sticky-cta.is-visible {
    transform: translateY(0);
}

.btn-cta-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-foreground);
    background: linear-gradient(135deg, #D4950E 0%, #E8A913 50%, #D4950E 100%);
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(212, 149, 14, 0.4);
    min-height: 48px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@media (max-width: 1023px) {
    .mobile-sticky-cta {
        display: block;
    }
}

/* ============================================
   HERO SECTION - Full-viewport dark fantasy
   Dragon mascot, ember particles, bonus text
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 60px;
    background: linear-gradient(180deg, #0F0D13 0%, #15111D 50%, #0F0D13 100%);
    overflow: clip;
}

.hero--minimal {
    min-height: auto;
    padding: 48px 20px 40px;
    background: var(--background);
}

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

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

/* Hero gradient overlay */
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(15, 13, 19, 0.6) 0%,
        rgba(15, 13, 19, 0.4) 40%,
        rgba(15, 13, 19, 0.85) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    width: 100%;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 149, 14, 0.12);
    border: 1px solid rgba(212, 149, 14, 0.25);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero__title {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #D4950E 0%, #FFD700 40%, #E8A913 60%, #D4950E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.15;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw + 0.2rem, 1.25rem);
    color: var(--foreground);
    max-width: 680px;
    margin: 0 auto 28px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero__bonus {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(1.5rem, 4vw + 0.3rem, 2.625rem);
    font-weight: 900;
    background: linear-gradient(135deg, #D4950E 0%, #FFD700 40%, #E8A913 60%, #D4950E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    line-height: 1.2;
}

/* Hero trust micro-row */
.hero__trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--muted-foreground);
}

.hero__trust-item svg,
.hero__trust-item .trust-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* Benefit pills */
.hero__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(26, 23, 33, 0.8);
    border: 1px solid rgba(212, 149, 14, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground);
}

/* ============================================
   EMBER PARTICLES - Floating golden dots
   CSS keyframe animated, used in heroes and banners
   ============================================ */
.particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #FFD700 0%, rgba(212, 149, 14, 0) 70%);
    border-radius: 50%;
    animation: float-up linear infinite;
    opacity: 0;
}

.particle:nth-child(1) { left: 10%; animation-duration: 8s; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-duration: 10s; animation-delay: 1.5s; }
.particle:nth-child(3) { left: 40%; animation-duration: 7s; animation-delay: 3s; }
.particle:nth-child(4) { left: 55%; animation-duration: 9s; animation-delay: 0.5s; }
.particle:nth-child(5) { left: 70%; animation-duration: 11s; animation-delay: 2s; }
.particle:nth-child(6) { left: 85%; animation-duration: 8s; animation-delay: 4s; }
.particle:nth-child(7) { left: 15%; animation-duration: 12s; animation-delay: 1s; width: 3px; height: 3px; }
.particle:nth-child(8) { left: 50%; animation-duration: 9s; animation-delay: 3.5s; width: 5px; height: 5px; }
.particle:nth-child(9) { left: 35%; animation-duration: 10s; animation-delay: 5s; }
.particle:nth-child(10) { left: 78%; animation-duration: 7s; animation-delay: 2.5s; }

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-20vh) scale(1);
        opacity: 0;
    }
}

/* ============================================
   GAME CARD GRID - Responsive card layout
   2 cols mobile → 3 tablet → 4 desktop
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0 20px;
    max-width: 1140px;
    margin: 0 auto;
}

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

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

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

    .card-grid--cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 24px;
        padding: 0;
    }
}

/* Individual game card */
.game-card {
    position: relative;
    background: var(--card);
    border: 1px solid rgba(212, 149, 14, 0.2);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    min-width: 0;
}

.game-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(212, 149, 14, 0.3);
}

.game-card__img-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.game-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-out;
}

.game-card:hover .game-card__img-wrap img {
    transform: scale(1.08);
}

.game-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 20px auto 0;
    font-size: 32px;
    background: rgba(212, 149, 14, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(212, 149, 14, 0.15);
}

.game-card__body {
    padding: 16px 20px 20px;
}

.game-card__title {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(0.875rem, 1.5vw + 0.2rem, 1.1rem);
    font-weight: 700;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #D4950E 0%, #FFD700 50%, #D4950E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}

.game-card__desc {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 10px;
    line-height: 1.5;
}

.game-card__badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary-foreground);
    background: var(--secondary);
    border-radius: 100px;
}

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

.game-card__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-top: 1px solid rgba(212, 149, 14, 0.1);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: background 0.2s ease-out;
}

.game-card__link:hover {
    background: rgba(212, 149, 14, 0.05);
    color: #FFD700;
}

.game-card__cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-top: 1px solid rgba(212, 149, 14, 0.1);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: background 0.2s ease-out, color 0.2s ease-out;
    min-height: 48px;
}

.game-card__cta-link:hover {
    background: rgba(212, 149, 14, 0.08);
    color: #FFD700;
}

/* ============================================
   CTA BANNER - Full-width conversion section
   Dark gradient, ember particles, pulsing button
   ============================================ */
.cta-banner {
    position: relative;
    padding: 56px 20px;
    background: linear-gradient(180deg, #12101A 0%, #1A1525 50%, #12101A 100%);
    text-align: center;
    overflow: clip;
}

.cta-banner__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ember {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #FFD700 0%, rgba(212, 149, 14, 0) 70%);
    border-radius: 50%;
    animation: float-up linear infinite;
    opacity: 0;
}

.ember--1 { left: 12%; animation-duration: 8s; animation-delay: 0s; }
.ember--2 { left: 30%; animation-duration: 10s; animation-delay: 1.5s; }
.ember--3 { left: 50%; animation-duration: 7s; animation-delay: 3s; }
.ember--4 { left: 68%; animation-duration: 9s; animation-delay: 0.5s; }
.ember--5 { left: 82%; animation-duration: 11s; animation-delay: 2s; }
.ember--6 { left: 45%; animation-duration: 8s; animation-delay: 4s; width: 3px; height: 3px; }

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

.cta-banner__headline {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(1.5rem, 3vw + 0.3rem, 2.25rem);
    font-weight: 700;
    background: linear-gradient(135deg, #D4950E 0%, #FFD700 40%, #E8A913 60%, #D4950E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-banner__text {
    font-size: 17px;
    color: var(--foreground);
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

/* ============================================
   COMPARISON TABLE - Structured data table
   Responsive with horizontal scroll on mobile
   ============================================ */
.table-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Accessibility: make scrollable table-wrappers keyboard-focusable */
.table-wrapper[tabindex] {
    outline: none;
}

.table-wrapper[tabindex]:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 8px;
}

.table-scroll-indicator {
    display: block;
    text-align: center;
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 12px;
}

/* Fix: table scroll indicator contrast - ensure 4.5:1 ratio against dark backgrounds */
.table-scroll-indicator span {
    color: #A8A29E;
}

@media (min-width: 768px) {
    .table-scroll-indicator {
        display: none;
    }

    .table-wrapper {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .table-wrapper {
        padding: 0;
    }
}

.comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid rgba(212, 149, 14, 0.1);
    border-radius: 16px;
    overflow: hidden;
    font-size: 15px;
}

.comparison-table thead {
    background: var(--card);
}

.comparison-table th {
    padding: 16px;
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-align: left;
    border-bottom: 1px solid rgba(212, 149, 14, 0.15);
    white-space: nowrap;
}

.comparison-table td {
    padding: 16px;
    color: var(--foreground);
    line-height: 1.5;
    border-bottom: 1px solid rgba(212, 149, 14, 0.06);
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(26, 23, 33, 0.5);
}

.comparison-table tbody tr:nth-child(odd) {
    background: var(--background);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Featured column / row highlight */
.comparison-table .featured-col {
    background: rgba(212, 149, 14, 0.05);
    border-left: 1px solid rgba(212, 149, 14, 0.1);
    border-right: 1px solid rgba(212, 149, 14, 0.1);
}

.comparison-table thead .featured-col {
    border-top: 3px solid var(--primary);
    background: rgba(212, 149, 14, 0.1);
}

.comparison-table .featured-row {
    background: rgba(212, 149, 14, 0.08) !important;
}

/* Check / cross icons for yes/no */
.table-check {
    color: var(--accent);
    font-weight: 700;
}

.table-cross {
    color: var(--destructive);
    font-weight: 700;
}

/* ============================================
   TRUST BADGES ROW - Horizontal badge display
   Scrollable mobile, flex-wrap desktop
   ============================================ */
.trust-badges {
    max-width: 1140px;
    margin: 0 auto;
    padding: 24px 20px;
}

.trust-badges__label {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    text-align: center;
    margin-bottom: 16px;
}

.trust-badges__row {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.trust-badges__row::-webkit-scrollbar {
    display: none;
}

/* Accessibility: make scrollable trust badge rows keyboard-focusable */
.trust-badges__row[tabindex] {
    outline: none;
}

.trust-badges__row[tabindex]:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .trust-badges__row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
        overflow-x: visible;
        padding-bottom: 0;
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 8px 14px;
    background: rgba(26, 23, 33, 0.6);
    border: 1px solid rgba(212, 149, 14, 0.1);
    border-radius: 10px;
    opacity: 0.7;
    transition: opacity 0.2s ease-out, border-color 0.2s ease-out;
    cursor: default;
}

.trust-badge:hover {
    opacity: 1;
    border-color: rgba(212, 149, 14, 0.3);
}

.trust-badge--highlight {
    opacity: 1;
    border-color: rgba(212, 149, 14, 0.3);
    box-shadow: 0 0 12px rgba(212, 149, 14, 0.1);
}

.trust-badge__icon {
    font-size: 20px;
    line-height: 1;
}

.trust-badge__text {
    font-size: 13px;
    font-weight: 600;
    color: var(--foreground);
    white-space: nowrap;
}

.trust-badge img {
    height: 28px;
    width: auto;
    opacity: 0.7;
    filter: sepia(100%) saturate(200%) brightness(80%) hue-rotate(5deg);
    transition: opacity 0.2s ease-out, filter 0.2s ease-out;
}

.trust-badge:hover img {
    opacity: 1;
    filter: sepia(100%) saturate(300%) brightness(90%) hue-rotate(5deg);
}

@media (min-width: 768px) {
    .trust-badge img {
        height: 36px;
    }
}

/* ============================================
   FAQ ACCORDION - Expandable Q&A pairs
   Uses <details>/<summary> for zero-JS operation
   ============================================ */
.faq-accordion {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: var(--card);
    border: 1px solid rgba(212, 149, 14, 0.15);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.2s ease-out;
}

.faq-item:hover,
.faq-item[open] {
    border-color: rgba(212, 149, 14, 0.35);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
    cursor: pointer;
    list-style: none;
    min-height: 52px;
    transition: background 0.2s ease-out;
}

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

.faq-question::marker {
    content: "";
}

.faq-question:hover {
    background: rgba(212, 149, 14, 0.04);
}

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

.faq-chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform 0.2s ease-out;
}

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

.faq-answer {
    overflow: hidden;
}

.faq-answer-inner {
    padding: 0 20px 20px;
    border-top: 1px solid rgba(212, 149, 14, 0.1);
    padding-top: 16px;
    font-size: 16px;
    color: var(--foreground);
    line-height: 1.6;
}

.faq-answer-inner p {
    margin-bottom: 12px;
}

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

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

@media (min-width: 768px) {
    .faq-question {
        font-size: 18px;
        padding: 20px 24px;
    }

    .faq-answer-inner {
        padding: 0 24px 24px;
        padding-top: 18px;
        font-size: 17px;
    }
}

/* ============================================
   SEO TEXT BLOCK - Long-form content area
   ============================================ */
.seo-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.seo-content h2 {
    font-family: "Cinzel Decorative", "Georgia", serif;
    margin-top: 40px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #D4950E 0%, #FFD700 50%, #D4950E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.seo-content h3 {
    font-family: "Cinzel Decorative", "Georgia", serif;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--foreground);
}

.seo-content p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--foreground);
    margin-bottom: 24px;
    max-width: 80ch;
}

.seo-content ul,
.seo-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.seo-content ul {
    list-style: disc;
}

.seo-content ol {
    list-style: decimal;
}

.seo-content li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    margin-bottom: 8px;
    padding-left: 4px;
}

.seo-content li::marker {
    color: var(--primary);
}

.seo-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.seo-content a:hover {
    color: #FFD700;
}

.seo-content strong {
    font-weight: 600;
    color: var(--foreground);
}

/* Tables inside SEO content */
.seo-content .table-wrapper {
    padding: 0;
    margin-bottom: 28px;
}

.seo-content table {
    width: 100%;
    min-width: 500px;
}

/* Blockquotes in SEO content */
.seo-content blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    background: rgba(212, 149, 14, 0.06);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--foreground);
}

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

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

/* ============================================
   ENGAGEMENT PATTERNS - TL;DR, callouts, stats, etc.
   ============================================ */

/* TL;DR / Summary box */
.summary-box {
    padding: 24px;
    background: rgba(212, 149, 14, 0.06);
    border: 1px solid rgba(212, 149, 14, 0.2);
    border-radius: 16px;
    margin-bottom: 32px;
}

.summary-box__title {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 12px;
}

.summary-box p {
    margin-bottom: 8px;
}

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

/* Callout / highlight box */
.callout {
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 28px;
    border-left: 4px solid;
}

.callout--tip {
    background: rgba(34, 192, 110, 0.06);
    border-color: var(--accent);
}

.callout--warning {
    background: rgba(212, 149, 14, 0.06);
    border-color: var(--primary);
}

.callout--info {
    background: rgba(59, 130, 246, 0.06);
    border-color: #3B82F6;
}

.callout__title {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.callout--tip .callout__title { color: var(--accent); }
.callout--warning .callout__title { color: var(--primary); }
.callout--info .callout__title { color: #3B82F6; }

/* Stat highlight */
.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: var(--card);
    border: 1px solid rgba(212, 149, 14, 0.15);
    border-radius: 16px;
}

.stat-highlight__number {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, #D4950E 0%, #FFD700 50%, #D4950E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-highlight__label {
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.stat-highlight__source {
    font-size: 13px;
    color: var(--muted-foreground);
}

/* Pull quote */
.pull-quote {
    position: relative;
    padding: 32px 28px;
    margin: 32px 0;
    text-align: center;
}

.pull-quote__text {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(1.25rem, 2vw + 0.3rem, 1.75rem);
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.3;
    margin-bottom: 16px;
}

.pull-quote__attribution {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Testimonial cards */
.testimonials-slider {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.testimonial-card {
    background: var(--card);
    border: 1px solid rgba(212, 149, 14, 0.15);
    border-radius: 16px;
    padding: 24px;
}

.testimonial-card__stars {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-card__text {
    font-size: 15px;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-card__author {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* ============================================
   SCROLL ANIMATIONS - Fade in on viewport entry
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered delay for grid children */
.card-grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.card-grid .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.card-grid .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.card-grid .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.card-grid .animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.card-grid .animate-on-scroll:nth-child(6) { transition-delay: 500ms; }
.card-grid .animate-on-scroll:nth-child(7) { transition-delay: 600ms; }
.card-grid .animate-on-scroll:nth-child(8) { transition-delay: 700ms; }

/* ============================================
   FOOTER - 4-column layout
   ============================================ */
.site-footer {
    background: #0A0812;
    border-top: 1px solid rgba(212, 149, 14, 0.1);
    padding-top: 48px;
}

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

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

@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 40px;
        padding: 0 32px 48px;
    }
}

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

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

.footer-logo-text {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 1.1rem;
    font-weight: 900;
    background: linear-gradient(135deg, #D4950E 0%, #FFD700 50%, #D4950E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 300px;
}

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

.footer-heading--mt {
    margin-top: 24px;
}

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

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

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

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

.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted-foreground);
    background: rgba(26, 23, 33, 0.8);
    border: 1px solid rgba(212, 149, 14, 0.1);
    border-radius: 6px;
    white-space: nowrap;
}

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

.license-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted-foreground);
    background: rgba(26, 23, 33, 0.8);
    border: 1px solid rgba(212, 149, 14, 0.15);
    border-radius: 6px;
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 149, 14, 0.08);
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* ============================================
   TECHNICAL / LEGAL PAGES - Clean text layout
   Datenschutz, Verantwortungsvolles Spielen
   ============================================ */
.legal-content {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content h2 {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(1.25rem, 2vw + 0.3rem, 1.625rem);
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--foreground);
}

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

.legal-content h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--foreground);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 4px;
}

.legal-content li::marker {
    color: var(--primary);
}

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

/* ============================================
   TOOL / FEATURE ICON LIST
   Used on responsible gaming, etc.
   ============================================ */
.feature-icon-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

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

.feature-icon-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--card);
    border: 1px solid rgba(212, 149, 14, 0.12);
    border-radius: 12px;
}

.feature-icon-item__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 149, 14, 0.1);
    border-radius: 10px;
    font-size: 22px;
}

.feature-icon-item__text h4,
.feature-icon-item__text h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--foreground);
}

.feature-icon-item__text p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Checklist (responsible gaming signs) */
.checklist {
    background: var(--card);
    border: 1px solid rgba(212, 149, 14, 0.12);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.checklist__item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 149, 14, 0.06);
    font-size: 15px;
    line-height: 1.5;
    color: var(--foreground);
}

.checklist__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.checklist__icon {
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1.4;
}

/* Help organizations */
.help-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: var(--card);
    border: 1px solid rgba(34, 192, 110, 0.2);
    border-radius: 12px;
    margin-bottom: 16px;
}

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

.help-card__desc {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

.help-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================
   VIP TIER PROGRESSION - Horizontal card scroll
   ============================================ */
.vip-tiers {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    max-width: 1200px;
    margin: 0 auto;
}

.vip-tiers::-webkit-scrollbar {
    display: none;
}

/* Accessibility: make scrollable VIP tiers keyboard-focusable */
.vip-tiers[tabindex] {
    outline: none;
}

.vip-tiers[tabindex]:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 8px;
}

.vip-tier-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    background: var(--card);
    border: 1px solid rgba(212, 149, 14, 0.15);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.vip-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 24px rgba(212, 149, 14, 0.2);
}

.vip-tier-card--top {
    border-color: rgba(212, 149, 14, 0.4);
    box-shadow: 0 0 20px rgba(212, 149, 14, 0.15);
    background: linear-gradient(180deg, rgba(212, 149, 14, 0.1) 0%, var(--card) 100%);
}

.vip-tier-card__rank {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.vip-tier-card__name {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #D4950E 0%, #FFD700 50%, #D4950E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.vip-tier-card__cashback {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #D4950E 0%, #FFD700 50%, #D4950E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.vip-tier-card__label {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 16px;
}

.vip-tier-card__perk {
    font-size: 13px;
    color: var(--foreground);
    line-height: 1.5;
    padding: 8px 0;
    border-top: 1px solid rgba(212, 149, 14, 0.08);
}

@media (min-width: 1024px) {
    .vip-tiers {
        justify-content: center;
        overflow-x: visible;
        flex-wrap: wrap;
        padding: 0;
    }

    .vip-tier-card {
        flex: 0 0 200px;
    }
}

/* ============================================
   PROMOTION CARDS - Special treatment for bonuses
   ============================================ */
.promo-card {
    position: relative;
    background: var(--card);
    border: 1px solid rgba(212, 149, 14, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    overflow: hidden;
}

.promo-card__value {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(1.5rem, 3vw + 0.3rem, 2rem);
    font-weight: 900;
    background: linear-gradient(135deg, #D4950E 0%, #FFD700 50%, #D4950E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.promo-card__title {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 8px;
}

.promo-card__desc {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 16px;
    line-height: 1.5;
}

.promo-card__freq {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary-foreground);
    background: var(--secondary);
    border-radius: 100px;
}

/* ============================================
   LIVE CASINO - Pulsing live indicator
   ============================================ */
.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
    vertical-align: middle;
    margin-right: 6px;
}

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

/* ============================================
   EMERALD BADGES - Success / no-wagering
   ============================================ */
.badge-emerald {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-foreground);
    background: var(--accent);
    border-radius: 100px;
}

/* ============================================
   FEATURE SECTION - Two-column layout
   Image/visual left, text right (stacked mobile)
   ============================================ */
.feature-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.feature-section__visual {
    border-radius: 16px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid rgba(212, 149, 14, 0.15);
}

.feature-section__visual img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-section__text h3 {
    font-family: "Cinzel Decorative", "Georgia", serif;
    margin-bottom: 16px;
}

.feature-section__text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
}

.feature-section__steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.feature-section__steps li {
    counter-increment: step;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.5;
}

.feature-section__steps li::before {
    content: counter(step);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-foreground);
    background: linear-gradient(135deg, #D4950E, #E8A913);
    border-radius: 8px;
}

/* ============================================
   STATS ROW - Inline stat display
   ============================================ */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--card);
    border: 1px solid rgba(212, 149, 14, 0.12);
    border-radius: 16px;
    flex: 1 1 140px;
    min-width: 140px;
}

.stat-item__number {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    background: linear-gradient(135deg, #D4950E 0%, #FFD700 50%, #D4950E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item__label {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 4px;
}

/* ============================================
   PAYMENT METHOD CARDS - Special grid
   ============================================ */
.payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: var(--card);
    border: 1px solid rgba(212, 149, 14, 0.12);
    border-radius: 12px;
    text-align: center;
}

.payment-card__icon {
    font-size: 28px;
}

.payment-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
}

.payment-card__info {
    font-size: 12px;
    color: var(--muted-foreground);
}

.payment-card__speed {
    display: inline-block;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
}

.payment-card__speed--instant {
    color: var(--accent-foreground);
    background: var(--accent);
}

.payment-card__speed--slow {
    color: var(--foreground);
    background: var(--muted);
}

/* ============================================
   GOLDEN DIVIDER - Section separator
   ============================================ */
.golden-divider {
    width: 100%;
    max-width: 200px;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ============================================
   HOMEPAGE - Promo cards row, payment info pills
   ============================================ */
.promo-cards-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
}

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

.payment-info-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

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

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

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

/* Ensure inline links are distinguishable from surrounding text */
p a[style*="color"],
.text-center a[style*="color"] {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

/* ============================================
   BONUSES PAGE - Step Cards & Reward Cards
   ============================================ */
.bonus-steps-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
}

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

.bonus-step-card {
    background: var(--card);
    border: 1px solid rgba(212, 149, 14, 0.15);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.bonus-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(212, 149, 14, 0.2);
}

.bonus-step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary-foreground);
    background: linear-gradient(135deg, #D4950E 0%, #E8A913 50%, #D4950E 100%);
    border-radius: 12px;
    margin-bottom: 16px;
}

.bonus-step-card__title {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #D4950E 0%, #FFD700 50%, #D4950E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.bonus-step-card__desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Ancient Market Reward Cards */
.ancient-market-rewards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.reward-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    background: rgba(212, 149, 14, 0.06);
    border: 1px solid rgba(212, 149, 14, 0.15);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease-out, border-color 0.3s ease-out;
}

.reward-card:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 149, 14, 0.35);
}

.reward-card__icon {
    font-size: 28px;
    line-height: 1;
}

.reward-card__title {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--foreground);
}

.reward-card__desc {
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

/* Fix RTL direction for feature section reverse layout */
.feature-section[style*="direction:rtl"] {
    direction: rtl;
}

.feature-section[style*="direction:rtl"] > * {
    direction: ltr;
}

/* ============================================
   LIVE CASINO PAGE - Cashback Card & Provider Highlights
   ============================================ */
.live-cashback-card {
    background: linear-gradient(135deg, rgba(26, 23, 33, 0.9) 0%, rgba(18, 16, 26, 0.95) 100%);
    border: 1px solid rgba(212, 149, 14, 0.3);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 40px rgba(212, 149, 14, 0.1);
}

.live-cashback-card__badge {
    margin-bottom: 16px;
}

.live-cashback-card__title {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(1.25rem, 2.5vw + 0.3rem, 1.75rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 12px;
}

.live-cashback-card__value {
    margin-bottom: 16px;
}

.live-cashback-card__desc {
    font-size: 16px;
    color: var(--foreground);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 24px;
    opacity: 0.9;
}

.live-cashback-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .live-cashback-details {
        grid-template-columns: minmax(0, 1fr);
    }

    .live-cashback-card {
        padding: 28px 20px;
    }
}

.live-cashback-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(212, 149, 14, 0.06);
    border: 1px solid rgba(212, 149, 14, 0.12);
    border-radius: 10px;
    font-size: 14px;
}

.live-cashback-detail__icon {
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1;
}

.live-cashback-detail__text {
    color: var(--foreground);
    font-weight: 500;
    font-size: 13px;
    line-height: 1.4;
}

/* Live Provider Highlights */
.live-provider-highlights {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
}

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

.live-provider-highlight {
    background: var(--card);
    border: 1px solid rgba(212, 149, 14, 0.12);
    border-radius: 16px;
    padding: 24px;
}

.live-provider-highlight h3 {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #D4950E 0%, #FFD700 50%, #D4950E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    margin-top: 0;
}

.live-provider-highlight p {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Live Cashback Section Background */
.live-cashback-section {
    background: linear-gradient(180deg, var(--background) 0%, #12101A 50%, var(--background) 100%);
}

/* ============================================
   ZAHLUNGEN PAGE - Payment Methods Grid
   ============================================ */
.payment-methods-grid .game-card__icon {
    margin-bottom: 0;
}

.payment-methods-grid .game-card__body {
    padding-top: 12px;
}

.payment-methods-grid .badge-emerald {
    margin-top: 4px;
}

.payment-methods-grid .game-card__meta {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

/* Crypto grid 5-col on desktop */
#crypto-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

@media (min-width: 1024px) {
    #crypto-methods {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 20px;
    }
}

/* Fix orphan last item on 2-col grid for crypto methods */
@media (max-width: 767px) {
    #crypto-methods > *:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: calc(50% - 8px);
        justify-self: center;
    }
}

/* ============================================
   SPIELE PAGE - Popular Games 5-Col Grid
   ============================================ */
.popular-games-grid.card-grid--cols-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

@media (min-width: 1024px) {
    .popular-games-grid.card-grid--cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 20px;
    }
}

/* Fix orphan last item on 2-col grid for popular games */
@media (max-width: 767px) {
    .popular-games-grid.card-grid--cols-5 > *:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: calc(50% - 8px);
        justify-self: center;
    }
}