/* ============================================
   DRAGONIA CASINO - Design System
   Medieval fantasy dark theme with dragon motifs
   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;
    -webkit-overflow-scrolling: touch;
}

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

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

section {
    overflow: clip;
}

/* ============================================
   BASE RESET & TYPOGRAPHY
   Cinzel Decorative: headings (medieval stone carvings)
   Raleway: body text (clean, modern readability)
   ============================================ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
    font-size: 17px;
    font-weight: 500;
    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 {
    color: var(--accent);
}

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

/* Mobile-first heading scale */
h1 { font-size: 28px; line-height: 1.15; }
h2 { font-size: 24px; line-height: 1.2; }
h3 { font-size: 20px; line-height: 1.25; }
h4 { font-size: 18px; line-height: 1.3; }

/* Desktop heading scale */
@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 26px; }
    h4 { font-size: 22px; }
}

p {
    margin: 0 0 24px 0;
}

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

li {
    margin-bottom: 8px;
}

/* ============================================
   GOLD GRADIENT TEXT - Jewel-like metallic text
   Used for headings and key statistics
   ============================================ */
.gold-text {
    background: linear-gradient(135deg, #d4a017 0%, #f0d060 40%, #d4a017 60%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Jewel-numeral display for bonus amounts */
.jewel-number {
    font-family: "Cinzel Decorative", serif;
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, #f0d060 0%, #d4a017 50%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .jewel-number {
        font-size: 64px;
    }
}

/* ============================================
   LAYOUT UTILITIES
   Max-width containers, spacing, grids
   ============================================ */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

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

/* Section vertical spacing */
.section-spacing {
    padding-top: 56px;
    padding-bottom: 56px;
}

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

/* Section heading styling */
.section-heading {
    text-align: center;
    margin-bottom: 16px;
}

.section-subtext {
    text-align: center;
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 17px;
}

/* ============================================
   DRAGON-SCALE BORDER - Signature visual motif
   Golden gradient border simulating dragon armor
   ============================================ */
.dragon-border {
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.dragon-border::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, #b8860b 0%, #d4a017 25%, #f0d060 50%, #d4a017 75%, #b8860b 100%);
    z-index: -1;
    border-radius: 12px;
}

/* ============================================
   BUTTONS - CTA and ghost button styles
   ============================================ */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 32px;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-foreground);
    background: linear-gradient(135deg, #d4a017 0%, #b8860b 50%, #d4a017 100%);
    background-size: 200% auto;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.3);
    white-space: nowrap;
}

.btn-cta:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 160, 23, 0.5);
    color: var(--primary-foreground);
}

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

/* Pulsing ember-glow for idle CTAs */
.btn-cta-pulse {
    animation: ember-pulse 2.5s ease-in-out infinite;
}

@keyframes ember-pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(212, 160, 23, 0.3);
    }
    50% {
        box-shadow: 0 4px 28px rgba(212, 160, 23, 0.55), 0 0 40px rgba(212, 160, 23, 0.2);
    }
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(212, 160, 23, 0.1);
    color: var(--primary);
    transform: translateY(-1px);
}

/* ============================================
   HEADER - Fixed navigation bar
   Semi-transparent, gains opacity on scroll
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 17, 14, 0.85);
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(13, 17, 14, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

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

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

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

@media (min-width: 1024px) {
    .logo-img {
        width: 48px;
        height: 48px;
    }
}

.logo-text {
    font-family: "Cinzel Decorative", serif;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #d4a017, #f0d060, #d4a017);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 1024px) {
    .logo-text {
        font-size: 24px;
    }
}

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

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(212, 160, 23, 0.08);
}

/* Header action buttons */
.header-actions {
    display: none;
}

@media (min-width: 1024px) {
    .header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }
}

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    background: transparent;
    border: 1.5px solid var(--primary);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-height: 40px;
}

.btn-login:hover {
    background: rgba(212, 160, 23, 0.1);
    color: var(--primary);
}

.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-foreground);
    background: linear-gradient(135deg, #d4a017, #b8860b);
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-height: 40px;
    box-shadow: 0 2px 12px rgba(212, 160, 23, 0.3);
}

.btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(212, 160, 23, 0.45);
    color: var(--primary-foreground);
}

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

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

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

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

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

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

/* ============================================
   MOBILE NAV DRAWER - Full-screen overlay
   Solid opaque background, 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: 24px 16px 120px;
    }

    .main-nav.is-open {
        display: flex;
        flex-direction: column;
    }

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

    .nav-link {
        min-height: 48px;
        padding: 12px 20px;
        font-size: 18px;
        border-radius: 8px;
    }

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

    /* Mobile nav CTA */
    .main-nav.is-open::after {
        content: "Jetzt Registrieren";
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        margin-top: 24px;
        padding: 12px 32px;
        font-family: "Raleway", sans-serif;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--primary-foreground);
        background: linear-gradient(135deg, #d4a017, #b8860b);
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 4px 16px rgba(212, 160, 23, 0.3);
    }
}

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

/* ============================================
   FOOTER - Stone-textured brand footer
   4-column grid, payments, license, copyright
   ============================================ */
.site-footer {
    background: #0a0d0b;
    border-top: 1px solid rgba(212, 160, 23, 0.15);
    color: var(--muted-foreground);
    padding-top: 48px;
    padding-bottom: 24px;
}

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

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

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

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

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

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

.footer-logo span {
    font-family: "Cinzel Decorative", serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

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

.footer-heading {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    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(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Footer payments row */
.footer-payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.footer-payments-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    white-space: nowrap;
}

.footer-payments-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-icon {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-foreground);
    background: var(--muted);
    border-radius: 4px;
    white-space: nowrap;
}

/* Footer license badges */
.footer-license {
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    white-space: nowrap;
}

.badge-18 {
    color: #fff;
    background: var(--secondary);
    border: 1px solid rgba(139, 26, 43, 0.6);
}

.badge-ssl {
    color: var(--accent);
    background: rgba(45, 155, 110, 0.1);
    border: 1px solid rgba(45, 155, 110, 0.3);
}

.badge-license {
    color: var(--primary);
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.3);
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
}

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

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

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

/* ============================================
   HERO SECTIONS - Full-viewport cinematic zones
   Layered backgrounds with parallax-ready structure
   ============================================ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 16px 56px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero {
        min-height: 90vh;
        padding: 120px 24px 96px;
    }
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 17, 14, 0.7) 0%,
        rgba(13, 17, 14, 0.5) 40%,
        rgba(13, 17, 14, 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 40px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 28px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(242, 234, 217, 0.85);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero bonus display - Jewel numeral showcase */
.hero-bonus-display {
    margin-bottom: 24px;
}

.hero-bonus-display .jewel-number {
    display: block;
    margin-bottom: 8px;
}

.hero-bonus-sub {
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: rgba(242, 234, 217, 0.9);
    margin: 0;
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .hero-bonus-sub {
        font-size: 22px;
    }
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

@media (min-width: 480px) {
    .hero-ctas {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }
}

/* Hero small variant (for technical pages) */
.hero-sm {
    min-height: 50vh;
}

@media (min-width: 1024px) {
    .hero-sm {
        min-height: 50vh;
    }
}

/* ============================================
   GAME CARD GRID - Responsive casino game cards
   Auto-fill grid, dragon-scale borders, hover lift
   ============================================ */
.game-grid-section {
    padding: 56px 16px;
}

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

.game-grid-container {
    max-width: 1140px;
    margin: 0 auto;
}

.game-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

@media (min-width: 768px) {
    .game-card-grid {
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .game-card-grid[data-columns="3"] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .game-card-grid[data-columns="4"] {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .game-card-grid[data-columns="6"] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.game-card {
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
    border: 1px solid rgba(212, 160, 23, 0.15);
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(212, 160, 23, 0.2), 0 4px 16px rgba(0, 0, 0, 0.3);
}

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

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-card-image img {
    transform: scale(1.05);
}

.game-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(13, 17, 14, 0.7), transparent);
    pointer-events: none;
}

.game-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary-foreground);
    background: var(--secondary);
    border-radius: 4px;
    z-index: 2;
}

.game-card-body {
    padding: 16px;
}

@media (min-width: 1024px) {
    .game-card-body {
        padding: 20px;
    }
}

.game-card-title {
    font-family: "Cinzel Decorative", serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--card-foreground);
    margin: 0 0 6px;
    line-height: 1.3;
}

@media (min-width: 1024px) {
    .game-card-title {
        font-size: 18px;
    }
}

.game-card-meta {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0 0 4px;
    line-height: 1.4;
}

.game-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    margin-top: 12px;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-foreground);
    background: linear-gradient(135deg, #d4a017, #b8860b);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    min-height: 36px;
}

.game-card-cta:hover {
    box-shadow: 0 2px 12px rgba(212, 160, 23, 0.4);
    color: var(--primary-foreground);
}

/* ============================================
   CTA BANNER - Full-width conversion section
   Stone-dungeon texture, centered content
   ============================================ */
.cta-banner {
    padding: 48px 16px;
    text-align: center;
    background: linear-gradient(135deg, rgba(13, 17, 14, 0.95), rgba(26, 40, 30, 0.95));
    position: relative;
}

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

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(212, 160, 23, 0.02) 40px,
        rgba(212, 160, 23, 0.02) 80px
    );
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cta-banner-headline {
    font-size: 24px;
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .cta-banner-headline {
        font-size: 36px;
    }
}

.cta-banner-text {
    font-size: 17px;
    color: rgba(242, 234, 217, 0.85);
    max-width: 700px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

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

/* ============================================
   BONUS HIGHLIGHT CARD - Prominent bonus display
   Jewel-numeral amount, diamond bullets, CTA
   ============================================ */
.bonus-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
}

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

.bonus-card {
    background: var(--card);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.1);
}

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

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(212, 160, 23, 0.25);
}

.bonus-card-header {
    margin-bottom: 0;
}

.bonus-card-amount {
    font-family: "Cinzel Decorative", serif;
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, #f0d060 0%, #d4a017 50%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 8px;
}

@media (min-width: 1024px) {
    .bonus-card-amount {
        font-size: 64px;
    }
}

.bonus-card-title {
    font-family: "Cinzel Decorative", serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--card-foreground);
    margin: 0 0 4px;
}

@media (min-width: 1024px) {
    .bonus-card-title {
        font-size: 22px;
    }
}

.bonus-card-subtitle {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
}

.bonus-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 16px 0;
}

.bonus-card-details {
    text-align: left;
    margin-bottom: 20px;
}

.bonus-card-detail {
    font-size: 15px;
    color: var(--card-foreground);
    margin: 0 0 8px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    line-height: 1.5;
}

.diamond-bullet {
    color: var(--primary);
    font-size: 10px;
    flex-shrink: 0;
}

.bonus-card-cta {
    width: 100%;
    max-width: 320px;
}

/* Full-width featured bonus card */
.bonus-card-featured {
    grid-column: 1 / -1;
}

/* ============================================
   TRUST SIGNALS STRIP - Horizontal trust bar
   Compact, payment logos, license, SSL, 18+
   ============================================ */
.trust-strip {
    background: #080b08;
    border-top: 1px solid rgba(212, 160, 23, 0.1);
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
    padding: 16px 0;
}

@media (min-width: 1024px) {
    .trust-strip {
        padding: 24px 0;
    }
}

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

.trust-strip-scroll {
    display: flex;
    align-items: center;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.trust-strip-scroll::-webkit-scrollbar {
    display: none;
}

.trust-strip-scroll:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

.trust-group {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

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

.trust-label {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-foreground);
    white-space: nowrap;
}

.trust-badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background: var(--secondary);
    border-radius: 50%;
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: rgba(212, 160, 23, 0.2);
    flex-shrink: 0;
}

.trust-payments {
    gap: 8px;
}

.trust-pay {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted-foreground);
    background: var(--muted);
    border-radius: 3px;
    white-space: nowrap;
}

/* ============================================
   FAQ ACCORDION - Expandable Q&A with schema
   Dragon-scale borders, ember-glow active state
   ============================================ */
.faq-section {
    padding: 56px 16px;
    background: linear-gradient(180deg, rgba(13, 17, 14, 1) 0%, rgba(10, 13, 10, 1) 100%);
}

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-heading {
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item.is-open {
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 48px;
    padding: 16px 20px;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    background: rgba(26, 30, 26, 0.6);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: rgba(26, 30, 26, 0.9);
}

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

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

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

.faq-answer[hidden] {
    display: block;
    max-height: 0;
    visibility: hidden;
}

.faq-answer.is-open {
    visibility: visible;
}

.faq-answer-inner {
    padding: 16px 20px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background: rgba(26, 30, 26, 0.3);
    border-left: 3px solid var(--primary);
}

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

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

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

/* ============================================
   SEO CONTENT BLOCKS - Structured text areas
   Contained width, tables, lists, headings
   ============================================ */
.seo-content {
    padding: 56px 16px;
    max-width: 1140px;
    margin: 0 auto;
}

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

.seo-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.seo-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.seo-content p {
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 80ch;
}

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

.seo-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Links in SEO content and demo section - ensure distinguishable from text */
.seo-content a,
.demo-section a:not(.btn-cta) {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.seo-content a:hover,
.demo-section a:not(.btn-cta):hover {
    color: var(--accent);
}

/* ============================================
   TABLES - Data tables for comparisons
   Gold header, alternating rows, mobile scroll
   ============================================ */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 0 24px;
    border-radius: 8px;
    border: 1px solid rgba(212, 160, 23, 0.15);
}

.table-responsive:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 500px;
}

.data-table thead {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.2), rgba(184, 134, 11, 0.15));
}

.data-table th {
    padding: 12px 16px;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary);
    text-align: left;
    white-space: nowrap;
    border-bottom: 2px solid rgba(212, 160, 23, 0.2);
}

.data-table td {
    padding: 12px 16px;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
}

.data-table tbody tr:nth-child(even) {
    background: rgba(26, 30, 26, 0.3);
}

.data-table tbody tr:hover {
    background: rgba(212, 160, 23, 0.05);
}

.data-table a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.data-table a:hover {
    color: var(--accent);
}

/* Highlighted/recommended row */
.data-table tr.row-highlight {
    background: rgba(212, 160, 23, 0.08);
    border-left: 3px solid var(--primary);
}

/* ============================================
   ENGAGEMENT PATTERNS - Callouts, stats, quotes
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    padding: 20px 24px;
    margin: 0 0 32px;
    background: rgba(212, 160, 23, 0.06);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.summary-box h3,
.summary-box-heading {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 8px;
}

.summary-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Callout / highlight box */
.callout-box {
    padding: 20px 24px;
    margin: 0 0 28px;
    background: rgba(45, 155, 110, 0.06);
    border: 1px solid rgba(45, 155, 110, 0.2);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.callout-box.callout-warning {
    background: rgba(212, 160, 23, 0.06);
    border-color: rgba(212, 160, 23, 0.2);
    border-left-color: var(--primary);
}

.callout-box.callout-danger {
    background: rgba(139, 26, 43, 0.06);
    border-color: rgba(139, 26, 43, 0.2);
    border-left-color: var(--secondary);
}

.callout-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

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

.stat-number {
    font-family: "Cinzel Decorative", serif;
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, #d4a017, #f0d060, #d4a017);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1.1;
    margin-bottom: 8px;
}

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

.stat-label {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

/* Pull quote */
.pull-quote {
    padding: 24px 28px;
    margin: 32px 0;
    border-left: 4px solid var(--primary);
    background: rgba(212, 160, 23, 0.04);
    border-radius: 0 8px 8px 0;
}

.pull-quote blockquote {
    font-family: "Cinzel Decorative", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--foreground);
    margin: 0 0 8px;
    font-style: normal;
}

@media (min-width: 1024px) {
    .pull-quote blockquote {
        font-size: 24px;
    }
}

.pull-quote cite {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    font-style: normal;
}

/* Details/summary accordion (CSS-only) */
details.expandable {
    margin: 0 0 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

details.expandable summary {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    cursor: pointer;
    background: rgba(26, 30, 26, 0.4);
    min-height: 48px;
    list-style: none;
}

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

details.expandable summary::after {
    content: "+";
    margin-left: auto;
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
    transition: transform 0.2s ease;
}

details.expandable[open] summary::after {
    content: "−";
}

details.expandable .expandable-content {
    padding: 16px 20px;
    font-size: 16px;
    line-height: 1.6;
    border-top: 1px solid var(--border);
}

/* ============================================
   CRO PATTERNS - Comparison tables, social proof
   ============================================ */

/* Comparison table with recommended column */
.comparison-table th.recommended,
.comparison-table td.recommended {
    background: rgba(212, 160, 23, 0.1);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.comparison-table th.recommended {
    border-top: 2px solid var(--primary);
    position: relative;
}

/* Social proof / testimonial card */
.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin: 0 0 16px;
}

.testimonial-card .stars {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 12px;
}

.testimonial-card .quote {
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    margin: 0 0 12px;
    font-style: italic;
}

.testimonial-card .author {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
}

/* ============================================
   PROVIDER TICKER - Horizontal scrolling logos
   ============================================ */
.provider-ticker {
    padding: 40px 0;
    background: rgba(10, 13, 10, 0.8);
    overflow: hidden;
}

.provider-ticker-heading {
    text-align: center;
    margin-bottom: 28px;
    padding: 0 16px;
}

.provider-ticker-track {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 0 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.provider-ticker-track::-webkit-scrollbar {
    display: none;
}

.provider-ticker-track:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

.provider-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted-foreground);
    background: var(--muted);
    border-radius: 6px;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease;
    min-height: 44px;
}

.provider-logo:hover {
    color: var(--primary);
    background: rgba(212, 160, 23, 0.1);
}

/* ============================================
   CATEGORY TABS - Horizontal filter tabs
   Gold underline active state, scrollable mobile
   ============================================ */
.category-tabs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
    margin-bottom: 28px;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    min-height: 44px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.category-tab:hover,
.category-tab.active {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(212, 160, 23, 0.08);
}

.category-tab.active {
    border-bottom: 2px solid var(--primary);
}

/* Tab content panels */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* ============================================
   NAVIGATION HUB - Internal link cards
   4-column grid for page discovery
   ============================================ */
.nav-hub {
    padding: 56px 16px;
    background: rgba(10, 13, 10, 0.6);
}

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

.nav-hub-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1140px;
    margin: 0 auto;
}

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

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

.nav-hub-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: var(--card);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-hub-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.15);
    border-color: rgba(212, 160, 23, 0.4);
}

.nav-hub-icon {
    font-size: 28px;
    line-height: 1;
}

.nav-hub-title {
    font-family: "Cinzel Decorative", serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

.nav-hub-desc {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   TOURNAMENT / PROMO CARDS - Prize pool display
   ============================================ */
.tournament-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
}

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

.tournament-card {
    background: var(--card);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.2);
}

.tournament-prize {
    font-family: "Cinzel Decorative", serif;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #f0d060, #d4a017, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

@media (min-width: 1024px) {
    .tournament-prize {
        font-size: 40px;
    }
}

.tournament-name {
    font-family: "Cinzel Decorative", serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 8px;
}

.tournament-info {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 16px;
}

/* ============================================
   JACKPOT TRACKER - Animated counter display
   ============================================ */
.jackpot-banner {
    padding: 48px 16px;
    background: linear-gradient(135deg, rgba(13, 17, 14, 0.95), rgba(10, 20, 14, 0.95));
    text-align: center;
}

@media (min-width: 1024px) {
    .jackpot-banner {
        padding: 64px 24px;
    }
}

.jackpot-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

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

.jackpot-amount {
    font-family: "Cinzel Decorative", serif;
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #f0d060, #d4a017);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ember-pulse 2.5s ease-in-out infinite;
}

@media (min-width: 1024px) {
    .jackpot-amount {
        font-size: 48px;
    }
}

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

/* ============================================
   STEP TIMELINE - Process steps display
   ============================================ */
.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

@media (min-width: 768px) {
    .steps-timeline {
        flex-direction: row;
        gap: 24px;
    }
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

@media (min-width: 768px) {
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a017, #b8860b);
    color: var(--primary-foreground);
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.5;
}

/* ============================================
   CHECKLIST - Self-assessment items
   ============================================ */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    min-height: 48px;
    font-size: 16px;
    line-height: 1.5;
}

.checklist li::before {
    content: "⚠️";
    flex-shrink: 0;
    font-size: 18px;
}

/* ============================================
   RESOURCE CARDS - External help links
   ============================================ */
.resource-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 12px;
    transition: border-color 0.2s ease;
}

.resource-card:hover {
    border-color: var(--primary);
}

.resource-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.resource-info {
    flex: 1;
    min-width: 0;
}

.resource-name {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 4px;
}

.resource-desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

/* ============================================
   PROTECTION TOOLS GRID - Icon feature cards
   ============================================ */
.protection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 0;
}

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

.protection-card {
    padding: 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: center;
}

.protection-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.protection-title {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 8px;
}

.protection-desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   RESPONSIBLE GAMING PAGE - Calm, protective tone
   ============================================ */
.responsible-content {
    max-width: 1140px;
    margin: 0 auto;
}

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

.responsible-content h3 {
    margin-top: 28px;
}

.responsible-content p {
    max-width: 80ch;
}

.responsible-content .resource-card a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.responsible-content .resource-card a:hover {
    color: var(--accent);
}

/* Container sections within responsible content */
.responsible-content .container {
    max-width: 1140px;
}

/* Checklist amber style for responsible gaming */
.responsible-content .checklist li::before {
    content: "⚠️";
}

/* Ensure full-width backgrounds work within seo-content max-width override */
section.responsible-content[style*="max-width: 100%"] {
    max-width: 100%;
}

section.responsible-content[style*="max-width: 100%"] .container {
    padding: 0 16px;
}

@media (min-width: 768px) {
    section.responsible-content[style*="max-width: 100%"] .container {
        padding: 0 24px;
    }
}

/* ============================================
   REDIRECT/LOADING PAGE - Centered spinner
   ============================================ */
.redirect-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--background);
    text-align: center;
    padding: 24px;
    margin-top: -64px;
}

@media (min-width: 1024px) {
    .redirect-page {
        margin-top: -72px;
    }
}

/* Hide header and footer on redirect pages */
body:has(.redirect-page) .site-header,
body:has(.redirect-page) .site-footer {
    display: none;
}

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

.redirect-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    margin-bottom: 32px;
}

.redirect-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 24px;
}

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

.redirect-text {
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    margin: 0 0 8px;
}

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

/* ============================================
   SCROLL ANIMATIONS - Intersection Observer
   Elements start hidden, revealed with .is-visible
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered delays for grid children */
.game-card.animate-on-scroll {
    transition-delay: calc(var(--stagger, 0) * 100ms);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .btn-cta-pulse {
        animation: none;
    }

    .redirect-spinner {
        animation: none;
    }

    .faq-answer {
        transition: none;
    }
}

/* ============================================
   LIVE CASINO - Emerald accent variant
   ============================================ */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: #1a734a;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.live-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: live-blink 1.5s ease-in-out infinite;
}

@keyframes live-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Emerald accent cards for live casino */
.emerald-accent {
    border-color: rgba(45, 155, 110, 0.2);
}

.emerald-accent:hover {
    box-shadow: 0 12px 32px rgba(45, 155, 110, 0.15);
    border-color: rgba(45, 155, 110, 0.4);
}

/* Live casino hero badge inline */
.hero-badge .live-badge {
    vertical-align: middle;
    margin-right: 2px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

/* ============================================
   GAME SHOW SECTION - Two-column feature layout
   ============================================ */
.feature-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}

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

.feature-split-visual {
    text-align: center;
}

.feature-split-visual img {
    border-radius: 12px;
    max-width: 100%;
}

/* ============================================
   PROVIDER SPOTLIGHT CARDS
   ============================================ */
.provider-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1140px;
    margin: 0 auto;
}

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

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

.provider-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.provider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.provider-card-name {
    font-family: "Cinzel Decorative", serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 4px;
}

.provider-card-count {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.provider-card-titles {
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* ============================================
   STAKE RANGE TABLE ENHANCEMENTS
   ============================================ */
.stake-table th:first-child,
.stake-table td:first-child {
    position: sticky;
    left: 0;
    background: var(--card);
    z-index: 1;
}

/* ============================================
   CASHBACK SECTION
   ============================================ */
.cashback-section {
    padding: 56px 16px;
}

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

/* VIP tiers */
.vip-table {
    width: 100%;
}

/* ============================================
   BONUS CRAB FEATURE
   ============================================ */
.bonus-crab-section {
    padding: 56px 16px;
    background: rgba(212, 160, 23, 0.03);
}

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

/* ============================================
   SLOTS CATEGORIES - Tab panel content styling
   ============================================ */
.slots-categories .tab-description {
    margin-bottom: 24px;
}

.slots-categories .tab-description h3 {
    margin-top: 0;
}

.slots-categories .tab-description p {
    max-width: 80ch;
    color: var(--foreground);
    line-height: 1.6;
}

.tab-panel-inner {
    padding: 8px 0;
}

/* Mini slot cards inside tabs */
.tab-card-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

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

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

.mini-slot-card {
    background: var(--card);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}

.mini-slot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.2);
}

.mini-slot-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--muted);
}

.mini-slot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mini-slot-card:hover .mini-slot-img img {
    transform: scale(1.05);
}

.mini-slot-name {
    display: block;
    padding: 12px 14px 4px;
    font-family: "Cinzel Decorative", serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .mini-slot-name {
        font-size: 15px;
    }
}

.mini-slot-provider {
    display: block;
    padding: 0 14px 12px;
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-foreground);
}

/* Demo section */
.demo-section {
    background: rgba(10, 13, 10, 0.6);
}

.demo-section ul {
    list-style: none;
    padding: 0;
}

.demo-section ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.demo-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Slots providers section */
.slots-providers {
    background: rgba(10, 13, 10, 0.4);
}