/*
 * Total Casino - Design System
 * Retro 60s Las Vegas Glamour
 * Mobile-first responsive
 * Fonts: Playfair Display (headings), Source Sans 3 (body)
 */

/* ============================================
   RESET & BASE - Foundation for all elements
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: "Source Sans 3", "Segoe UI", Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   OVERFLOW PREVENTION - Safety net
   ============================================ */

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;
}

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

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

a {
    word-break: break-all;
}

a.btn, a.nav-link, a.footer-logo, .nav-list a, .footer-links a {
    word-break: normal;
}

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

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY - Playfair Display + Source Sans 3
   H1: 32/48px, H2: 26/36px, H3: 21/26px
   Body: 17px/1.6 line-height
   ============================================ */

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

h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

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

h3 {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
}

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

p {
    margin-bottom: 24px;
}

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

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

strong, b {
    font-weight: 700;
}

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

li {
    margin-bottom: 8px;
}

@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 26px; }
    h4 { font-size: 20px; }
}

/* ============================================
   LAYOUT - Container, sections, grids
   Max-width: 1140px, base unit: 8px
   Section gap: 56/96px
   ============================================ */

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section {
    padding: 56px 0;
}

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

.section--dark {
    background-color: var(--card);
    position: relative;
}

.section--burgundy {
    background: linear-gradient(135deg, #1a0a10 0%, #2a1018 50%, #1a1210 100%);
    color: var(--foreground);
    position: relative;
}

.section--burgundy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8891f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.section--burgundy > * {
    position: relative;
    z-index: 1;
}

/* Full-bleed sections */
.full-bleed {
    width: 100%;
}

/* ============================================
   HEADER - Fixed sticky, blur, logo + nav + CTAs
   z-index: 1000 | toggle: 1001 | nav: 999
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 18, 16, 0.92);
    border-bottom: 1px solid rgba(200, 137, 31, 0.15);
    transition: background-color 0.3s ease;
}

@media (min-width: 1024px) {
    .site-header {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

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

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    word-break: normal;
}

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

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

.logo-text {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(200, 137, 31, 0.3);
    white-space: nowrap;
}

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

/* Main navigation */
.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 20px;
    flex-direction: column;
}

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

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

.nav-item {
    margin: 0;
    border-bottom: 1px solid var(--border);
}

.nav-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 8px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: normal;
}

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

.nav-actions-mobile {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Desktop nav */
@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        position: static;
        background: transparent;
        overflow-y: visible;
        padding: 0;
        flex-direction: row;
        align-items: center;
    }

    .nav-list {
        flex-direction: row;
        gap: 8px;
    }

    .nav-item {
        border-bottom: none;
    }

    .nav-item--mobile-only {
        display: none;
    }

    .nav-link {
        min-height: 44px;
        padding: 8px 14px;
        font-size: 15px;
        border-radius: 6px;
        white-space: nowrap;
    }

    .nav-link:hover {
        background: rgba(200, 137, 31, 0.1);
    }

    .nav-actions-mobile {
        display: none;
    }
}

/* Header action buttons */
.header-actions {
    display: none;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .header-actions {
        display: flex;
    }
}

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

.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 animation */
.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);
}

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

/* Theme toggle - hidden per brief (no theme switcher) */
.theme-toggle {
    display: none;
}

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

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

/* ============================================
   BUTTONS - Gold gradient CTAs, outline, sizes
   Shimmer animation, glow on hover
   Min 48px touch target
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease, background-color 0.3s ease;
    min-height: 48px;
    padding: 12px 28px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    word-break: normal;
}

.btn-primary {
    background: linear-gradient(135deg, #c8891f 0%, #e8a832 50%, #c8891f 100%);
    color: #1a0e02;
    box-shadow: 0 4px 16px rgba(200, 137, 31, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(200, 137, 31, 0.5);
    color: #1a0e02;
}

/* Shimmer effect */
.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 70%
    );
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { left: -75%; }
    50% { left: 125%; }
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(200, 137, 31, 0.1);
    color: var(--primary);
    transform: scale(1.03);
}

.btn-sm {
    min-height: 40px;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 6px;
}

.btn-lg {
    min-height: 56px;
    padding: 16px 40px;
    font-size: 18px;
    border-radius: 10px;
}

@media (min-width: 1024px) {
    .btn-lg {
        padding: 18px 48px;
        font-size: 20px;
    }
}

/* ============================================
   NEON TEXT - Pulsing amber glow on headings
   3s cycle simulating flickering neon sign
   ============================================ */

.neon-text {
    text-shadow:
        0 0 10px rgba(232, 168, 50, 0.4),
        0 0 20px rgba(232, 168, 50, 0.2),
        0 0 40px rgba(232, 168, 50, 0.1);
    animation: neonPulse 3s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    0% {
        text-shadow:
            0 0 10px rgba(232, 168, 50, 0.4),
            0 0 20px rgba(232, 168, 50, 0.2),
            0 0 40px rgba(232, 168, 50, 0.1);
    }
    100% {
        text-shadow:
            0 0 14px rgba(232, 168, 50, 0.6),
            0 0 28px rgba(232, 168, 50, 0.3),
            0 0 56px rgba(232, 168, 50, 0.15);
    }
}

/* ============================================
   GAME CARDS - 2→3→4 column grid
   3:4 image area, RTP badge, hover glow
   ============================================ */

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

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

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

.game-card {
    background: var(--card);
    border: 1px solid rgba(200, 137, 31, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease;
    cursor: pointer;
    min-width: 0;
}

.game-card:hover {
    transform: scale(1.04);
    box-shadow:
        0 0 15px rgba(200, 137, 31, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.game-card__image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #2a1a12 0%, #1a0a08 100%);
}

.game-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.game-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #3a1a0a 0%, #2a0e06 100%);
    padding: 16px;
}

.game-card__image-icon {
    font-size: 48px;
}

.game-card__image-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    text-shadow: 0 0 10px rgba(232, 168, 50, 0.3);
}

.game-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 10, 6, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-card__overlay {
    opacity: 1;
}

.game-card__info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.game-card__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
    line-height: 1.3;
}

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

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

.game-card__rtp {
    display: inline-flex;
    align-self: flex-start;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}

/* ============================================
   BONUS CARDS - Velvet bg, amber glow border
   Oversized value numbers, mascot area
   1→2 columns
   ============================================ */

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

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

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

/* Stagger animation for bonus cards beyond 4 */
.bonus-cards-grid .animate-on-scroll:nth-child(5) { transition-delay: 600ms; }

.bonus-card {
    position: relative;
    background: linear-gradient(145deg, #261c17 0%, #1a0e08 100%);
    border: 1px solid rgba(200, 137, 31, 0.3);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease;
    overflow: hidden;
    min-width: 0;
}

.bonus-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8891f' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.bonus-card > * {
    position: relative;
    z-index: 1;
}

.bonus-card:hover {
    transform: scale(1.04);
    box-shadow:
        0 0 20px rgba(200, 137, 31, 0.4),
        0 8px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.bonus-card__mascot {
    margin-bottom: 16px;
}

.bonus-card__mascot img {
    width: 100px;
    height: auto;
    border-radius: 50%;
}

.bonus-card__label {
    display: inline-block;
    font-family: "Source Sans 3", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.bonus-card__value {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    color: var(--primary);
    text-shadow:
        0 0 20px rgba(232, 168, 50, 0.5),
        0 0 40px rgba(232, 168, 50, 0.2);
    margin-bottom: 12px;
    line-height: 1.1;
}

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

.bonus-card__description {
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    margin-bottom: 8px;
    opacity: 0.9;
}

.bonus-card__terms {
    display: block;
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 20px;
}

.bonus-card__cta {
    width: 100%;
}

/* ============================================
   FAQ ACCORDION - Dark burgundy bg, amber chevrons
   details/summary native, 48px touch targets
   ============================================ */

.faq-section {
    background: linear-gradient(135deg, #1a0a10 0%, #1a1210 100%);
    padding: 56px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8891f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.faq-section > * {
    position: relative;
    z-index: 1;
}

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

.faq-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.faq-heading {
    text-align: center;
    margin-bottom: 40px;
    color: var(--foreground);
}

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

.faq-item {
    border-bottom: 1px solid rgba(200, 137, 31, 0.2);
}

.faq-item:first-child {
    border-top: 1px solid rgba(200, 137, 31, 0.2);
}

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

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

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

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

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

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

.faq-item[open] .faq-question {
    color: var(--primary);
}

.faq-answer {
    padding: 0 8px 20px 8px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    animation: faqSlideDown 0.3s ease;
}

@media (min-width: 1024px) {
    .faq-answer {
        padding: 0 8px 24px 8px;
    }
}

@keyframes faqSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ============================================
   CTA BANNER - Full-bleed, burgundy→amber gradient
   Centered content, gold CTA, microcopy
   ============================================ */

.cta-banner {
    position: relative;
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(135deg, #2a0e18 0%, #3a1a10 50%, #2a1808 100%);
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8891f' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

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

.cta-banner__content {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.cta-banner__text {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 24px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ============================================
   TRUST BADGES - Horizontal row, grayscale→gold
   48px icons, 32px gap desktop
   ============================================ */

.trust-badges {
    background: var(--card);
    border-top: 1px solid rgba(200, 137, 31, 0.15);
    padding: 24px 0;
}

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

.trust-badges__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .trust-badges__inner {
        gap: 32px;
        padding: 0 32px;
    }
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

.trust-badge:hover {
    color: var(--primary);
}

.trust-badge svg {
    width: 40px;
    height: 40px;
}

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

.trust-badge__label {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

/* ============================================
   FOOTER - Dark burgundy-black, 4 columns → stack
   Payment icons, badges, copyright
   ============================================ */

.site-footer {
    background: #0e0a08;
    border-top: 1px solid rgba(200, 137, 31, 0.15);
    color: var(--foreground);
    padding: 40px 0 24px;
}

@media (min-width: 1024px) {
    .site-footer {
        padding: 64px 0 32px;
    }
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 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 1.5fr;
        gap: 40px;
    }
}

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

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

.footer-logo-text {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

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

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

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

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

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

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

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

.payment-icon {
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.payment-icon:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(200, 137, 31, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-badge {
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.footer-badge:hover {
    opacity: 1;
}

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

.footer-legal {
    font-size: 12px;
    color: #9a8d82;
    opacity: 1;
    margin-bottom: 0;
}

/* ============================================
   HERO SECTIONS - Full-viewport, gradient overlays
   Dark backgrounds, centered content
   ============================================ */

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a0a08 0%, #2a1210 30%, #1a0e0a 70%, #0e0806 100%);
}

@media (min-width: 1024px) {
    .hero {
        min-height: 90vh;
        padding: 64px 32px;
    }
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero__subtitle {
    font-family: "Source Sans 3", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 32px;
}

@media (min-width: 1024px) {
    .hero__subtitle {
        font-size: 20px;
    }
}

.hero--short {
    min-height: 50vh;
}

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

/* ============================================
   SCROLL ANIMATIONS - Fade in + slide up 30px
   150ms stagger via CSS custom property
   ============================================ */

.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);
}

/* Stagger delays for grid children */
.game-cards-grid .animate-on-scroll:nth-child(1),
.bonus-cards-grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.game-cards-grid .animate-on-scroll:nth-child(2),
.bonus-cards-grid .animate-on-scroll:nth-child(2) { transition-delay: 150ms; }
.game-cards-grid .animate-on-scroll:nth-child(3),
.bonus-cards-grid .animate-on-scroll:nth-child(3) { transition-delay: 300ms; }
.game-cards-grid .animate-on-scroll:nth-child(4),
.bonus-cards-grid .animate-on-scroll:nth-child(4) { transition-delay: 450ms; }
.game-cards-grid .animate-on-scroll:nth-child(5) { transition-delay: 600ms; }
.game-cards-grid .animate-on-scroll:nth-child(6) { transition-delay: 750ms; }
.game-cards-grid .animate-on-scroll:nth-child(7) { transition-delay: 900ms; }
.game-cards-grid .animate-on-scroll:nth-child(8) { transition-delay: 1050ms; }

/* ============================================
   SEO CONTENT - Readable long-form text blocks
   Warm bg, decorative dividers, proper spacing
   ============================================ */

.seo-content {
    padding: 56px 0;
    background: var(--background);
}

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

.seo-content__inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .seo-content__inner {
        padding: 0 32px;
    }
}

.seo-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--foreground);
}

.seo-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--foreground);
}

.seo-content p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.seo-content a:hover,
.seo-content__inner a:hover {
    color: var(--accent);
}

/* Decorative divider between SEO sections */
.seo-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    margin: 40px 0;
    opacity: 0.3;
}

/* ============================================
   TABLES - Styled comparison/data tables
   Amber header, dark body, alternating rows
   ============================================ */

.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
    border-radius: 12px;
    border: 1px solid rgba(200, 137, 31, 0.2);
}

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

.styled-table thead {
    background: linear-gradient(135deg, rgba(200, 137, 31, 0.2) 0%, rgba(200, 137, 31, 0.1) 100%);
}

.styled-table th {
    padding: 14px 16px;
    text-align: left;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.styled-table td {
    padding: 12px 16px;
    border-top: 1px solid rgba(200, 137, 31, 0.08);
    color: var(--foreground);
}

.styled-table tbody tr:nth-child(even) {
    background: rgba(200, 137, 31, 0.03);
}

.styled-table tbody tr:hover {
    background: rgba(200, 137, 31, 0.08);
}

/* Highlighted recommended column */
.styled-table .recommended {
    background: rgba(200, 137, 31, 0.1);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.styled-table .recommended-header {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* ============================================
   ENGAGEMENT PATTERNS - Callouts, stats, quotes
   Summary boxes, detail/summary, pull quotes
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background: linear-gradient(135deg, rgba(200, 137, 31, 0.08) 0%, rgba(200, 137, 31, 0.03) 100%);
    border: 1px solid rgba(200, 137, 31, 0.25);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin-bottom: 32px;
}

.summary-box__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

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

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

/* Callout / highlight box */
.callout {
    background: var(--card);
    border: 1px solid rgba(200, 137, 31, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
    position: relative;
}

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

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

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

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

.callout a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.stat-highlight__number {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(232, 168, 50, 0.3);
}

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

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

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

/* Pull quote */
blockquote, .pull-quote {
    border-left: 3px solid var(--primary);
    padding: 16px 24px;
    margin: 32px 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.5;
    color: var(--foreground);
}

blockquote cite, .pull-quote cite {
    display: block;
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    font-style: normal;
    color: var(--muted-foreground);
    margin-top: 8px;
}

/* Styled details/summary */
details.styled-details {
    border: 1px solid rgba(200, 137, 31, 0.2);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

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

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

details.styled-details[open] summary {
    border-bottom: 1px solid rgba(200, 137, 31, 0.15);
    color: var(--primary);
}

details.styled-details .details-content {
    padding: 16px 20px;
}

/* ============================================
   VIP TIERS - Horizontal progression cards
   Bronze → Diamond, amber glow escalation
   ============================================ */

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

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

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

.vip-tier {
    background: var(--card);
    border: 1px solid rgba(200, 137, 31, 0.15);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vip-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.vip-tier--diamond {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(200, 137, 31, 0.2);
}

.vip-tier__name {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.vip-tier__cashback {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 8px;
}

.vip-tier__perks {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* ============================================
   PROVIDER LOGOS - Grid/flex, grayscale→gold hover
   ============================================ */

.provider-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 16px 0;
}

.provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1px solid rgba(200, 137, 31, 0.12);
    border-radius: 10px;
    padding: 16px 24px;
    min-width: 120px;
    min-height: 60px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.provider-logo:hover {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(200, 137, 31, 0.15);
}

.provider-logo img {
    height: 32px;
    width: auto;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.2s ease;
}

.provider-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

/* ============================================
   CATEGORY CARDS - 2x2 grid, large icons
   ============================================ */

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

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

.category-card {
    background: var(--card);
    border: 1px solid rgba(200, 137, 31, 0.15);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

@media (min-width: 768px) {
    .category-card {
        padding: 32px 24px;
    }
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.category-card__icon {
    font-size: 40px;
    line-height: 1;
}

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

.category-card__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
}

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

/* ============================================
   PAYMENT ICONS - Horizontal strip, muted gold
   ============================================ */

.payment-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 16px 0;
}

.payment-strip__item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 16px;
    min-height: 40px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.payment-strip__item:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* ============================================
   ENTER/REDIRECT PAGE - Centered loading state
   ============================================ */

.enter-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a0a08 0%, #2a1210 50%, #1a0e0a 100%);
    padding: 40px 20px;
}

.enter-page__logo {
    margin-bottom: 32px;
}

.enter-page__logo img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
}

.enter-page__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(232, 168, 50, 0.4);
    margin-bottom: 16px;
}

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

.enter-page__text {
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
}

/* Loading dots animation */
.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    animation: loadingPulse 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

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

/* ============================================
   THREE.JS HERO - Canvas container for 3D roulette
   ============================================ */

.hero-3d {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0e0806;
}

.hero-3d__canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-3d__canvas canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-3d__overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

@media (min-width: 1024px) {
    .hero-3d__overlay {
        padding: 64px 32px;
    }
}

/* ============================================
   STEP CARDS - Numbered process cards
   ============================================ */

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

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

.step-card {
    background: var(--card);
    border: 1px solid rgba(200, 137, 31, 0.15);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.step-card__number {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 15px rgba(232, 168, 50, 0.3);
    margin-bottom: 12px;
}

.step-card__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--foreground);
}

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

.step-card__text a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================
   LIMIT CARDS - Responsible gaming tool cards
   ============================================ */

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

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

.limit-card {
    background: var(--card);
    border: 1px solid rgba(200, 137, 31, 0.12);
    border-radius: 12px;
    padding: 24px;
}

.limit-card__icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.limit-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--foreground);
}

.limit-card__text {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 0;
}

.limit-card__text a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================
   SUPPORT CARDS - External org links
   ============================================ */

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

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

.support-card {
    background: var(--card);
    border: 1px solid rgba(200, 137, 31, 0.12);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.support-card__name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--foreground);
}

.support-card__info {
    font-size: 15px;
    color: var(--muted-foreground);
    margin-bottom: 4px;
}

/* ============================================
   TOURNAMENT CARDS
   ============================================ */

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

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

/* Stagger animation for tournament cards */
.tournament-cards .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.tournament-cards .animate-on-scroll:nth-child(2) { transition-delay: 150ms; }
.tournament-cards .animate-on-scroll:nth-child(3) { transition-delay: 300ms; }
.tournament-cards .animate-on-scroll:nth-child(4) { transition-delay: 450ms; }

.tournament-card {
    background: linear-gradient(145deg, #261c17 0%, #1a0e08 100%);
    border: 1px solid rgba(200, 137, 31, 0.25);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(200, 137, 31, 0.3);
}

.tournament-card__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 8px;
}

.tournament-card__prize {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    color: var(--primary);
    text-shadow: 0 0 15px rgba(232, 168, 50, 0.4);
    margin-bottom: 12px;
}

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

/* ============================================
   LIVE CASINO SECTION - Split layout
   ============================================ */

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

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

.split-section__visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #2a1210 0%, #1a0a08 100%);
}

.split-section__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.neon-badge {
    display: inline-block;
    background: var(--destructive);
    color: #fff;
    font-family: "Source Sans 3", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(217, 48, 37, 0.5);
    margin-bottom: 12px;
}

/* ============================================
   NEW GAMES - Horizontal scroll or grid
   ============================================ */

.new-games-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
}

.new-games-row > * {
    scroll-snap-align: start;
    flex: 0 0 200px;
}

@media (min-width: 600px) {
    .new-games-row > * {
        flex: 0 0 220px;
    }
}

.new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 3;
}

/* ============================================
   INLINE LINK DISTINGUISHABLE - underline for
   links inside muted-foreground text blocks
   ============================================ */

.inline-link {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

.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; }
.mb-48 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ============================================
   CHECKLIST - Warning signs list
   ============================================ */

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.checklist li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ============================================
   FOCUS STATES - Accessibility
   ============================================ */

*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Skip to content */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 8px 16px;
    z-index: 10000;
    font-weight: 700;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   HOMEPAGE - Hero 3D, bonus layout, features
   ============================================ */

.hero-3d {
    overflow: hidden;
}

.hero-3d__gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(14,8,6,0.3) 0%, rgba(14,8,6,0.85) 70%, rgba(14,8,6,0.95) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-title {
    color: var(--foreground);
    max-width: 700px;
    margin: 0 auto 16px;
}

.hero-mascot {
    max-width: 300px;
    height: auto;
    margin-bottom: 24px;
    opacity: 0.85;
}

@media (min-width: 1024px) {
    .hero-mascot {
        max-width: 400px;
    }
}

.hero-bonus-teaser {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(200, 137, 31, 0.1);
    border: 1px solid rgba(200, 137, 31, 0.3);
    border-radius: 16px;
    padding: 16px 32px;
    margin-bottom: 32px;
}

.hero-bonus-teaser__label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

.hero-bonus-teaser__value {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(232, 168, 50, 0.5);
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .hero-bonus-teaser__value {
        font-size: 44px;
    }
}

.hero-bonus-teaser__extra {
    font-size: 17px;
    color: var(--foreground);
    opacity: 0.9;
}

.hero-microcopy {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 16px;
    margin-bottom: 0;
}

/* Welcome bonus layout */
.welcome-bonus-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .welcome-bonus-layout {
        grid-template-columns: auto 1fr;
        gap: 48px;
    }
}

.welcome-bonus-visual {
    text-align: center;
}

.welcome-bonus-visual img {
    max-width: 260px;
    height: auto;
}

@media (min-width: 768px) {
    .welcome-bonus-visual img {
        max-width: 320px;
    }
}

@media (max-width: 767px) {
    .welcome-bonus-visual {
        display: none;
    }
}

.welcome-bonus-card-wrapper {
    min-width: 0;
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--muted-foreground);
}

.bonus-feature__icon {
    font-size: 20px;
    flex-shrink: 0;
}

/* Section header with mascot */
.section-header-with-mascot {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
}

.section-header-with-mascot > div {
    flex: 1;
    min-width: 0;
}

.section-mascot {
    display: none;
    width: 150px;
    height: auto;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .section-mascot {
        display: block;
    }
}

@media (min-width: 1024px) {
    .section-mascot {
        width: 200px;
    }
}

.section-subtitle {
    font-size: 17px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0;
}

/* VIP tier icon */
.vip-tier__icon {
    font-size: 36px;
    margin-bottom: 8px;
}

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

.vip-header-img {
    max-width: 400px;
    height: auto;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .vip-header-img {
        max-width: 600px;
    }
}

/* Live features list */
.live-features {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.live-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--foreground);
}

.live-features li::before {
    content: '♦';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Split section neon badge position */
.split-section__visual .neon-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
}

/* ============================================
   SPIELE PAGE - Provider showcase, tischspiele,
   jackpot hero card, category card images
   ============================================ */

.hero-games-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 137, 31, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(74, 18, 37, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Category card images */
.category-card__img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .category-card__img {
        width: 100px;
        height: 100px;
    }
}

/* Provider showcase grid */
.provider-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

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

.provider-showcase-card {
    background: var(--card);
    border: 1px solid rgba(200, 137, 31, 0.12);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.provider-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.provider-showcase-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    margin-bottom: 12px;
}

.provider-showcase-card__logo img {
    max-height: 40px;
    width: auto;
    filter: grayscale(60%) brightness(0.8);
    transition: filter 0.2s ease;
}

.provider-showcase-card:hover .provider-showcase-card__logo img {
    filter: grayscale(0%) brightness(1);
}

.provider-showcase-card__name {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.provider-showcase-card__info {
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.4;
    margin-bottom: 0;
}

/* Provider showcase stagger animation */
.provider-showcase-grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.provider-showcase-grid .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.provider-showcase-grid .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.provider-showcase-grid .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.provider-showcase-grid .animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.provider-showcase-grid .animate-on-scroll:nth-child(6) { transition-delay: 500ms; }
.provider-showcase-grid .animate-on-scroll:nth-child(7) { transition-delay: 600ms; }
.provider-showcase-grid .animate-on-scroll:nth-child(8) { transition-delay: 700ms; }

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

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

.tischspiel-card {
    background: var(--card);
    border: 1px solid rgba(200, 137, 31, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tischspiel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.tischspiel-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.tischspiel-card__content {
    padding: 20px;
}

.tischspiel-card__content h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px;
}

.tischspiel-card__content p {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Tischspiele stagger animation */
.tischspiele-grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.tischspiele-grid .animate-on-scroll:nth-child(2) { transition-delay: 150ms; }
.tischspiele-grid .animate-on-scroll:nth-child(3) { transition-delay: 300ms; }

/* Jackpot hero card */
.jackpot-showcase {
    max-width: 900px;
    margin: 0 auto;
}

.jackpot-hero-card {
    background: linear-gradient(145deg, #261c17 0%, #1a0e08 100%);
    border: 1px solid rgba(200, 137, 31, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.jackpot-hero-card:hover {
    box-shadow: 0 0 30px rgba(200, 137, 31, 0.3);
}

.jackpot-hero-card__img {
    width: 100%;
    height: auto;
    display: block;
}

.jackpot-hero-card__content {
    padding: 32px;
    text-align: center;
}

.jackpot-hero-card__amount {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    color: var(--primary);
    text-shadow:
        0 0 20px rgba(232, 168, 50, 0.5),
        0 0 40px rgba(232, 168, 50, 0.2);
    margin-bottom: 12px;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .jackpot-hero-card__amount {
        font-size: 56px;
    }
}

.jackpot-hero-card__content h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 12px;
}

.jackpot-hero-card__content p {
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   RESPONSIBLE GAMING HERO - Subdued, dignified
   ============================================ */

.hero--responsible {
    background: linear-gradient(135deg, #1a0e0a 0%, #1a1210 40%, #1a0a08 100%);
    min-height: 50vh;
}

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

.responsible-hero-icon {
    max-width: 120px;
    height: auto;
    margin-bottom: 24px;
    opacity: 0.85;
}

@media (min-width: 1024px) {
    .responsible-hero-icon {
        max-width: 160px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .site-header,
    .site-footer,
    .mobile-menu-toggle,
    .cta-banner,
    .trust-badges,
    .btn {
        display: none;
    }

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

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