/*
 * DRAGONIA CASINO - Design System
 * Mythic-Steampunk Fusion Aesthetic
 * Fonts: Cinzel Decorative (headings) + Raleway (body)
 * 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;
}

/* ============================================
   SKIP LINK - Accessibility
   ============================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.2s ease;
}

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

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

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

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

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

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

/* ============================================
   TYPOGRAPHY - Cinzel Decorative + Raleway
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-top: 0;
    color: var(--foreground);
}

h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    margin-bottom: 16px;
}

h4 {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 600;
    margin-bottom: 12px;
}

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

/* Oversized bonus numerals */
.hero-amount {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 900;
    background: linear-gradient(135deg, #d4a017, #f5d060, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(212, 160, 23, 0.4));
    line-height: 1.1;
}

/* ============================================
   LAYOUT - Container & Spacing
   ============================================ */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

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

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

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

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

/* Section heading - centered gold heading */
.section-heading {
    text-align: center;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .section-heading {
        margin-bottom: 48px;
    }
}

/* ============================================
   HEADER - Fixed sticky with glass effect
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(18, 16, 22, 0.92);
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
    height: 64px;
}

@media (min-width: 768px) {
    .site-header {
        height: 72px;
    }
}

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

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

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

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

.logo-text {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, #d4a017, #f5d060, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}

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

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

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    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: 8px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

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

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

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

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

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

.btn-register {
    display: 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: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    min-height: 40px;
    white-space: nowrap;
}

.btn-register:hover {
    background: #e0b030;
    color: var(--primary-foreground);
    transform: translateY(-1px);
}

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

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

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

/* Hamburger → X animation */
.mobile-menu-toggle[aria-expanded="true"] .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 Drawer */
@media (max-width: 767px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        background: var(--background);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 16px;
    }

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

    .main-nav .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }

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

    /* Mobile nav CTA buttons */
    .main-nav::after {
        content: '';
        display: block;
        height: 16px;
    }

    .main-nav .nav-list::after {
        content: '';
        display: block;
    }
}

/* Mobile nav inline buttons - added via JS */
.mobile-nav-actions {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 24px 20px;
}

@media (max-width: 767px) {
    .mobile-nav-actions {
        display: flex;
    }
}

.mobile-nav-actions .btn-login,
.mobile-nav-actions .btn-register {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    font-size: 16px;
}

/* ============================================
   BUTTONS - CTA System
   ============================================ */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-foreground);
    background: var(--primary);
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    min-height: 52px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.35);
    color: var(--primary-foreground);
}

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

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

@media (max-width: 479px) {
    .btn-cta,
    .btn-large {
        width: 100%;
        text-align: center;
    }
}

/* Shimmer animation on CTA buttons */
.btn-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

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

/* ============================================
   GEAR BORDERS - Steampunk Decorative
   ============================================ */
.gear-border-top,
.gear-border-bottom {
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--secondary) 15%,
        var(--primary) 50%,
        var(--secondary) 85%,
        transparent 100%
    );
    opacity: 0.6;
}

.gear-border-top {
    margin-bottom: 0;
}

.gear-border-bottom {
    margin-top: 0;
}

/* ============================================
   HERO SECTIONS - Full-viewport intro
   ============================================ */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 16px 56px;
    background: var(--background);
    overflow: clip;
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(18, 16, 22, 0.7) 0%,
        rgba(18, 16, 22, 0.5) 40%,
        rgba(18, 16, 22, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.hero-mascot {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    object-fit: contain;
}

@media (min-width: 768px) {
    .hero-mascot {
        width: 160px;
        height: 160px;
        margin-bottom: 32px;
    }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .hero-stats {
        gap: 24px;
        font-size: 15px;
    }
}

.hero-stats span {
    padding: 6px 16px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 20px;
    white-space: nowrap;
}

/* Decorative rotating gears */
.hero-gear {
    position: absolute;
    font-size: 60px;
    color: var(--secondary);
    opacity: 0.12;
    animation: gear-rotate 20s linear infinite;
    pointer-events: none;
}

.hero-gear-left {
    bottom: 10%;
    left: -20px;
}

.hero-gear-right {
    top: 15%;
    right: -20px;
    animation-direction: reverse;
}

@keyframes gear-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Compact hero for informational pages */
.hero-compact {
    min-height: 40vh;
    padding: 100px 16px 40px;
}

@media (min-width: 768px) {
    .hero-compact {
        min-height: 50vh;
        padding: 120px 32px 56px;
    }
}

/* ============================================
   TRUST BADGE ROW - Credibility Strip
   ============================================ */
.trust-badge-section {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 16px;
}

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

.trust-badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 1140px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .trust-badge-row {
        gap: 24px;
    }
}

@media (max-width: 479px) {
    .trust-badge-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    min-width: 0;
}

.trust-icon {
    font-size: 28px;
    line-height: 1;
    opacity: 0.85;
}

.trust-value {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

@media (min-width: 768px) {
    .trust-value {
        font-size: 20px;
    }
}

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

@media (min-width: 768px) {
    .trust-label {
        font-size: 13px;
    }
}

/* Payment variant */
.trust-payment .trust-badge-row {
    gap: 12px;
}

.trust-payment .trust-badge-item {
    flex-direction: row;
    gap: 6px;
}

/* ============================================
   BONUS CARDS - Promotional Offers
   ============================================ */
.bonus-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

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

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

.bonus-card {
    background: var(--card);
    border: 1px solid var(--secondary);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
    transform: scale(1.04);
    box-shadow: 0 0 12px rgba(212, 160, 23, 0.3);
}

.bonus-card-header {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    padding: 16px 20px;
    text-align: center;
    position: relative;
}

.bonus-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(90deg,
        transparent,
        transparent 8px,
        var(--primary) 8px,
        var(--primary) 12px
    );
}

.bonus-card-icon {
    font-size: 32px;
}

.bonus-card-body {
    padding: 20px;
}

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

.bonus-card-title {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.bonus-card-amount {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 12px rgba(212, 160, 23, 0.3));
    line-height: 1.1;
}

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

.bonus-card-subtitle {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: var(--foreground);
    margin-bottom: 16px;
    opacity: 0.9;
}

.bonus-card-terms {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.bonus-card-terms li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: var(--foreground);
    opacity: 0.85;
}

@media (min-width: 768px) {
    .bonus-card-terms li {
        font-size: 15px;
    }
}

.gear-bullet {
    color: var(--secondary);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bonus-card .btn-cta {
    width: 100%;
    text-align: center;
}

/* ============================================
   GAME CARD GRID - Game Thumbnails
   ============================================ */
.game-grid-section {
    padding: 56px 16px;
    max-width: 1280px;
    margin: 0 auto;
}

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

/* Filter Tabs */
.game-filter-tabs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    margin-bottom: 24px;
    scrollbar-width: none;
}

.game-filter-tabs::-webkit-scrollbar {
    display: none;
}

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

.filter-tab:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.filter-tab.active {
    color: var(--primary-foreground);
    background: var(--primary);
    border-color: var(--primary);
}

/* Game Grid */
.game-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

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

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

/* Game Card */
.game-card {
    display: block;
    background: var(--card);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
}

.game-card:hover {
    transform: scale(1.04);
    box-shadow: 0 0 16px rgba(212, 160, 23, 0.35);
}

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

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

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

.game-provider-badge {
    position: absolute;
    bottom: 6px;
    left: 6px;
    padding: 3px 8px;
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--foreground);
    background: rgba(18, 16, 22, 0.82);
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.game-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 160, 23, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--primary);
}

.game-card:hover .game-play-overlay {
    opacity: 1;
}

.game-card-info {
    padding: 10px 12px;
}

.game-card-name {
    display: block;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.game-card-provider {
    display: block;
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 2px;
}

@media (min-width: 768px) {
    .game-card-provider {
        font-size: 13px;
    }
}

/* ============================================
   CTA BANNER - Full-width conversion sections
   ============================================ */
.cta-banner {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(18, 16, 22, 0.97) 0%,
        rgba(30, 26, 36, 0.97) 50%,
        rgba(18, 16, 22, 0.97) 100%
    );
    padding: 40px 16px;
    text-align: center;
}

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

/* Dragon scale diagonal gradient overlay */
.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(212, 160, 23, 0.03) 20px,
        rgba(212, 160, 23, 0.03) 40px
    );
    pointer-events: none;
}

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

.cta-banner-headline {
    font-size: clamp(24px, 4vw, 36px);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.cta-banner-subtext {
    font-family: "Raleway", sans-serif;
    font-size: 17px;
    color: var(--foreground);
    opacity: 0.85;
    margin-bottom: 24px;
    line-height: 1.6;
}

.cta-micro-copy {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 12px;
}

/* Decorative gears in CTA banner */
.cta-banner-decor {
    position: absolute;
    font-size: 80px;
    color: var(--secondary);
    opacity: 0.07;
    animation: gear-rotate 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.cta-gear-left {
    bottom: -20px;
    left: -20px;
}

.cta-gear-right {
    top: -20px;
    right: -20px;
    animation-direction: reverse;
}

/* ============================================
   FAQ ACCORDION - Expandable Q&A
   ============================================ */
.faq-section {
    background: var(--background);
    padding: 56px 16px;
}

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

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

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

@media (min-width: 768px) {
    .faq-heading {
        margin-bottom: 48px;
    }
}

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

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

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

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

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

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

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

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

.faq-answer-inner {
    padding: 0 20px 20px;
    border-left: 3px solid var(--primary);
    margin-left: 20px;
    padding-left: 16px;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    opacity: 0.9;
}

@media (min-width: 768px) {
    .faq-answer-inner {
        font-size: 17px;
        padding: 0 24px 24px;
        margin-left: 24px;
    }
}

.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;
    text-underline-offset: 3px;
}

.faq-answer-inner a:hover {
    color: var(--accent);
}

/* ============================================
   SEO CONTENT - Article text blocks
   ============================================ */
.seo-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 56px 16px;
}

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

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

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

.seo-content p {
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--foreground);
}

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

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

.seo-content strong {
    color: var(--primary);
    font-weight: 700;
}

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

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

/* ============================================
   TABLES - Data display
   ============================================ */
.content-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
}

.content-table thead th {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--primary-foreground);
    font-weight: 700;
    padding: 12px 16px;
    text-align: left;
    white-space: nowrap;
    font-size: 14px;
}

.content-table thead th:first-child {
    border-radius: 8px 0 0 0;
}

.content-table thead th:last-child {
    border-radius: 0 8px 0 0;
}

.content-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
    vertical-align: top;
}

.content-table tbody tr:nth-child(even) {
    background: var(--card);
}

.content-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 8px;
}

.content-table tbody tr:last-child td:last-child {
    border-radius: 0 0 8px 0;
}

/* Recommended column highlight */
.content-table .highlight-col {
    background: rgba(212, 160, 23, 0.08);
    font-weight: 600;
}

/* ============================================
   CALLOUT / HIGHLIGHT BOX
   ============================================ */
.callout-box {
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.callout-info {
    background: rgba(26, 143, 191, 0.1);
    border-left: 4px solid var(--accent);
    color: var(--foreground);
}

.callout-warning {
    background: rgba(212, 160, 23, 0.1);
    border-left: 4px solid var(--primary);
    color: var(--foreground);
}

.callout-danger {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--destructive);
    color: var(--foreground);
}

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

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

/* Ensure all inline text links are distinguishable (a11y: link-in-text-block) */
.page-payments p a,
.page-payments li a,
.page-payments .mt-24 a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-payments p a:hover,
.page-payments li a:hover,
.page-payments .mt-24 a:hover {
    color: var(--accent);
}

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

/* ============================================
   SUMMARY / TL;DR BOX
   ============================================ */
.summary-box {
    background: var(--card);
    border: 1px solid var(--primary);
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
}

.summary-box-title {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.summary-box ul {
    margin: 0;
    padding-left: 20px;
}

.summary-box li {
    margin-bottom: 6px;
    font-size: 15px;
}

/* ============================================
   STAT HIGHLIGHT - Large number + label
   ============================================ */
.stat-highlight {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    background: linear-gradient(135deg, #d4a017, #f5d060, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
}

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

/* ============================================
   PULL QUOTE - Large quotation
   ============================================ */
.pull-quote {
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    margin: 32px 0;
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(18px, 3vw, 22px);
    font-style: italic;
    color: var(--foreground);
    line-height: 1.5;
}

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

/* ============================================
   DETAILS / SUMMARY - Expandable sections
   ============================================ */
details {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin: 16px 0;
    overflow: hidden;
}

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

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

details summary::after {
    content: '+';
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

details[open] summary::after {
    content: '−';
}

details summary:hover {
    color: var(--primary);
}

details > div,
details > p {
    padding: 0 20px 20px;
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   COMPARISON TABLE - Highlighted column
   ============================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.comparison-table thead th {
    padding: 14px 16px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: var(--foreground);
    border-bottom: 2px solid var(--border);
}

.comparison-table thead th.recommended {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--primary-foreground);
    border-radius: 12px 12px 0 0;
}

.comparison-table tbody td {
    padding: 12px 16px;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
}

.comparison-table tbody td.recommended {
    background: rgba(212, 160, 23, 0.06);
    font-weight: 600;
}

/* ============================================
   SOCIAL PROOF - Review cards
   ============================================ */
.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}

.review-stars {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 12px;
}

.review-text {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    margin-bottom: 12px;
}

.review-author {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    font-weight: 600;
}

/* ============================================
   NAVIGATION CARDS - Internal linking grid
   ============================================ */
.nav-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

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

@media (min-width: 768px) {
    .nav-card-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .nav-card-grid > .nav-card {
        flex: 0 1 calc(33.333% - 14px);
    }
}

.nav-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--secondary);
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 16px rgba(212, 160, 23, 0.25);
    border-color: var(--primary);
}

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

.nav-card-content {
    min-width: 0;
}

.nav-card-title {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.nav-card-desc {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-card-arrow {
    margin-left: auto;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.nav-card:hover .nav-card-arrow {
    transform: translateX(4px);
}

/* ============================================
   PROVIDER SHOWCASE - Logo grid
   ============================================ */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

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

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

.provider-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    transition: border-color 0.2s ease;
    min-height: 80px;
}

.provider-item:hover {
    border-color: var(--primary);
}

.provider-logo {
    height: 32px;
    width: auto;
    max-width: 100%;
    filter: grayscale(50%);
    opacity: 0.8;
    transition: filter 0.3s ease, opacity 0.3s ease;
    margin-bottom: 8px;
}

.provider-item:hover .provider-logo {
    filter: grayscale(0);
    opacity: 1;
}

.provider-name {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-foreground);
}

.provider-count {
    font-size: 11px;
    color: var(--muted-foreground);
}

/* ============================================
   PAYMENT METHODS - Cards with details
   ============================================ */
.payment-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 1140px;
    margin: 0 auto;
}

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

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

.payment-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: border-color 0.2s ease;
}

.payment-card:hover {
    border-color: var(--secondary);
}

.payment-card-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.payment-card-name {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.payment-card-detail {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    color: var(--muted-foreground);
}

/* ============================================
   CATEGORY CARDS - Section navigation
   ============================================ */
.category-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

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

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

.category-card {
    display: block;
    background: var(--card);
    border: 1px solid var(--secondary);
    border-radius: 16px;
    padding: 24px 20px;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.category-card-title {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.category-card-count {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: var(--foreground);
    margin-bottom: 8px;
}

.category-card-desc {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

/* ============================================
   STEP PROCESS - Visual step indicators
   ============================================ */
.step-process {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--primary-foreground);
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 18px;
    font-weight: 900;
    border-radius: 50%;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

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

/* ============================================
   HELP RESOURCE CARDS - Responsible gambling
   ============================================ */
.help-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

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

.help-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.help-card-name {
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 8px;
}

.help-card-phone {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 4px;
}

.help-card-desc {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* ============================================
   WARNING SIGNS LIST - Checklist style
   ============================================ */
.warning-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.warning-list li:last-child {
    border-bottom: none;
}

.warning-icon {
    flex-shrink: 0;
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
}

/* ============================================
   FOOTER - Multi-column footer
   ============================================ */
.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 16px;
}

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

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

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

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

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

.footer-description {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-foreground);
    max-width: 300px;
}

/* Footer Headings */
.footer-heading {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 16px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    padding: 2px 0;
}

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

/* Footer Trust / Payment */
.footer-payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: var(--muted);
    border-radius: 6px;
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--foreground);
}

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

.license-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 6px;
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--foreground);
}

/* Footer Bottom */
.footer-bottom {
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: 16px;
}

.footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.footer-copyright {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0 0 6px;
}

.footer-disclaimer {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    color: var(--muted-foreground);
    margin: 0;
    opacity: 1;
    line-height: 1.5;
}

/* ============================================
   ANIMATIONS - Scroll-triggered reveals
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

    .btn-shimmer::before {
        animation: none;
    }

    .hero-gear,
    .cta-banner-decor {
        animation: none;
    }
}

/* ============================================
   PAGE WRAPPERS - Page-specific spacing
   ============================================ */
.page-home,
.page-bonuses,
.page-slots,
.page-live-casino,
.page-payments,
.page-responsible,
.page-redirect {
    padding-top: 0;
}

/* Homepage hero subtitle */
.hero-subtitle {
    font-family: "Raleway", sans-serif;
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 500;
    color: var(--foreground);
    opacity: 0.9;
    margin: 12px 0 28px;
    line-height: 1.5;
}

/* Bonus card grid - 4 columns on large desktop */
@media (min-width: 1200px) {
    .bonus-card-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Redirect page specific */
.page-redirect {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.redirect-container {
    text-align: center;
    padding: 40px 20px;
}

.redirect-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 24px;
}

.redirect-text {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(20px, 3vw, 24px);
    color: var(--foreground);
    margin-bottom: 16px;
}

.redirect-fallback {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
}

.redirect-fallback a {
    color: var(--primary);
    text-decoration: underline;
}

/* Loading spinner */
.redirect-spinner {
    width: 40px;
    height: 40px;
    margin: 24px auto;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spinner 1s linear infinite;
}

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

/* ============================================
   BONUSES PAGE - Welcome Bonus Feature
   ============================================ */
.welcome-bonus-feature {
    background: var(--card);
    border: 1px solid var(--secondary);
    border-radius: 16px;
    overflow: hidden;
}

.welcome-bonus-inner {
    padding: 24px 20px;
}

@media (min-width: 768px) {
    .welcome-bonus-inner {
        padding: 40px 48px;
    }
}

.welcome-bonus-left h3 {
    margin-bottom: 8px;
}

.welcome-bonus-desc {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    margin-bottom: 24px;
    opacity: 0.9;
}

.welcome-bonus-timeline {
    background: var(--background);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.welcome-bonus-timeline h4 {
    margin-bottom: 12px;
    font-size: 18px;
}

.fs-timeline {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.fs-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 12px;
    padding: 12px 20px;
    min-width: 120px;
    text-align: center;
}

.fs-day-num {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-foreground);
}

.fs-day-amount {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-foreground);
}

.fs-note {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 8px;
    margin-bottom: 0;
}

/* Bonus Crab Section */
.bonus-crab-section {
    background: var(--card);
}

.bonus-crab-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .bonus-crab-showcase {
        grid-template-columns: 1fr 1.2fr;
        gap: 48px;
    }
}

.bonus-crab-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--secondary);
}

.bonus-crab-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* VIP & Shop Grid */
.vip-shop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .vip-shop-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

.vip-panel,
.shop-panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 20px;
}

@media (min-width: 768px) {
    .vip-panel,
    .shop-panel {
        padding: 32px;
    }
}

.shop-panel p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Tournament Grid */
.tournament-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.tournament-section {
    background: linear-gradient(135deg, rgba(18, 16, 22, 0.98), rgba(26, 36, 50, 0.98));
}

/* ============================================
   LIVE CASINO - Special elements
   ============================================ */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.deutsch-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: rgba(212, 160, 23, 0.15);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

/* ============================================
   VIP TIERS - Progression display
   ============================================ */
.vip-tier-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.vip-tier {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.vip-tier-badge {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

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

.vip-tier-perk {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   EXCLUSIVE BADGE - Special label
   ============================================ */
.exclusive-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--primary-foreground);
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
}

/* ============================================
   JACKPOT DISPLAY - Large prize amounts
   ============================================ */
.jackpot-amount {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    background: linear-gradient(135deg, #d4a017, #f5d060, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    filter: drop-shadow(0 0 16px rgba(212, 160, 23, 0.4));
}

/* ============================================
   TOURNAMENT CARD - Event showcase
   ============================================ */
.tournament-card {
    background: var(--card);
    border: 1px solid var(--secondary);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.tournament-prize {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
}

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

.tournament-desc {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* ============================================
   SLOTS PAGE - Exclusive Games Grid
   ============================================ */
.slots-exclusive-section {
    background: linear-gradient(135deg, rgba(18, 16, 22, 0.98), rgba(26, 22, 32, 0.98));
    border-top: 1px solid var(--secondary);
    border-bottom: 1px solid var(--secondary);
}

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

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

.exclusive-card {
    position: relative;
    display: block;
    background: var(--card);
    border: 2px solid var(--secondary);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.exclusive-card:hover {
    transform: scale(1.04);
    box-shadow: 0 0 24px rgba(212, 160, 23, 0.35);
    border-color: var(--primary);
}

.exclusive-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--primary-foreground);
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
}

.exclusive-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--muted);
}

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

.exclusive-card:hover .exclusive-card-image img {
    transform: scale(1.08);
}

.exclusive-card:hover .game-play-overlay {
    opacity: 1;
}

.exclusive-card-info {
    padding: 16px 20px 20px;
}

.exclusive-card-name {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 4px;
}

.exclusive-card-provider {
    display: block;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.exclusive-card-desc {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: var(--foreground);
    line-height: 1.5;
    opacity: 0.85;
    margin: 0;
}

/* ============================================
   SLOTS PAGE - Jackpot Showcase
   ============================================ */
.jackpot-showcase-section {
    background: linear-gradient(180deg, var(--background) 0%, rgba(30, 26, 36, 0.6) 50%, var(--background) 100%);
}

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

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

.jackpot-card {
    background: var(--card);
    border: 1px solid var(--secondary);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.jackpot-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--muted);
}

.jackpot-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jackpot-card-body {
    padding: 20px;
}

.jackpot-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(26, 143, 191, 0.15);
    color: #3bbde6;
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 6px;
    margin-bottom: 8px;
}

.jackpot-card-body h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.jackpot-card-body .game-card-provider {
    display: block;
    margin-bottom: 12px;
}

.jackpot-note {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    color: var(--muted-foreground);
    margin: 8px 0 0;
}

/* ============================================
   LIVE CASINO PAGE - German Dealer & Gold Saloon
   ============================================ */

/* German Dealer Section */
.german-dealer-section {
    background: linear-gradient(135deg, rgba(18, 16, 22, 0.98), rgba(26, 22, 32, 0.98));
}

.german-dealer-banner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .german-dealer-banner {
        grid-template-columns: 1.2fr 1fr;
        gap: 48px;
    }
}

.german-dealer-content p {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    opacity: 0.9;
    margin-bottom: 20px;
}

.german-table-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
}

.german-table-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    color: var(--foreground);
    opacity: 0.85;
}

.german-dealer-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--secondary);
}

@media (max-width: 767px) {
    .german-dealer-visual {
        order: -1;
    }
}

/* Gold Saloon Section */
.gold-saloon-section {
    background: linear-gradient(180deg, var(--background) 0%, rgba(30, 26, 36, 0.6) 50%, var(--background) 100%);
}

.gold-saloon-card {
    background: var(--card);
    border: 2px solid var(--primary);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gold-saloon-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(212, 160, 23, 0.04) 20px,
        rgba(212, 160, 23, 0.04) 40px
    );
    pointer-events: none;
}

.gold-saloon-inner {
    position: relative;
    z-index: 1;
    padding: 24px 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .gold-saloon-inner {
        padding: 48px 56px;
    }
}

.gold-saloon-inner p {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 24px;
}

.gold-saloon-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.gold-feature {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: 24px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    white-space: nowrap;
}

/* Live Cashback Banner enhancements */
.live-cashback-banner .cashback-amount-display {
    font-size: clamp(48px, 10vw, 80px);
}

/* Live Provider Grid */
.live-provider-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

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

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

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

.live-provider-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.live-provider-card ul li {
    padding: 4px 0;
    color: var(--foreground);
    opacity: 0.85;
}

/* ============================================
   RESPONSIBLE GAMBLING PAGE
   ============================================ */

/* Subdued hero overlay - darker, less warm */
.hero-responsible .hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(18, 16, 22, 0.8) 0%,
        rgba(18, 16, 22, 0.65) 40%,
        rgba(18, 16, 22, 0.92) 100%
    );
}

.hero-responsible-title {
    color: var(--foreground);
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(24px, 4.5vw, 42px);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-subtitle-responsible {
    color: var(--muted-foreground);
    opacity: 1;
    font-size: clamp(15px, 2.2vw, 18px);
}

/* Responsible section base */
.responsible-section {
    background: var(--background);
}

.responsible-section p {
    font-family: "Raleway", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--foreground);
    margin-bottom: 16px;
}

.responsible-section p:last-child {
    margin-bottom: 0;
}

.responsible-section a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.responsible-section a:hover {
    color: var(--primary);
}

.responsible-heading {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

/* 18+ badge - large */
.responsible-badge-row {
    text-align: center;
    margin-bottom: 24px;
}

.age-badge-large {
    display: inline-block;
    font-size: 48px;
    line-height: 1;
}

/* Warning section - darker card */
.responsible-warning-section {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.warning-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    margin: 24px 0;
}

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

.warning-card .warning-list li {
    color: var(--foreground);
    font-size: 16px;
}

.responsible-note {
    font-weight: 600;
    color: var(--accent);
    margin-top: 16px;
}

/* Callout - responsible (azure accent) */
.callout-responsible {
    background: rgba(26, 143, 191, 0.08);
    border-left: 4px solid var(--accent);
    color: var(--foreground);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

/* Step items - muted responsible variant */
.step-item-responsible {
    border-color: var(--border);
}

.step-number-responsible {
    background: linear-gradient(135deg, #3a3440, var(--accent));
}

/* Self-exclusion callout */
.callout-exclusion {
    background: rgba(212, 160, 23, 0.06);
    border-left: 4px solid var(--secondary);
    color: var(--foreground);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

.callout-exclusion ol {
    padding-left: 20px;
    margin: 12px 0;
}

.callout-exclusion ol li {
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.6;
}

/* Help cards - responsible variant */
.help-card-responsible {
    border-color: var(--border);
    transition: border-color 0.2s ease;
}

.help-card-responsible:hover {
    border-color: var(--accent);
}

.help-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.help-card-responsible .help-card-phone {
    color: var(--accent);
}

/* Underage section */
.responsible-underage-section {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.underage-header {
    text-align: center;
    margin-bottom: 24px;
}

.age-badge-xlarge {
    display: inline-block;
    font-size: 64px;
    line-height: 1;
    margin-bottom: 16px;
}

.responsible-list {
    padding-left: 24px;
    margin: 16px 0;
}

.responsible-list li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
}

/* Divider - subtle stone gray */
.responsible-divider {
    height: 1px;
    background: var(--border);
    margin: 0 0 32px;
    opacity: 0.6;
}

/* Footer note - muted, smaller */
.responsible-footer-note {
    padding: 32px 16px 48px;
}

@media (min-width: 768px) {
    .responsible-footer-note {
        padding: 40px 24px 56px;
    }
}

.responsible-disclaimer {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-foreground);
    text-align: center;
}

.responsible-disclaimer a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.responsible-disclaimer a:hover {
    color: var(--primary);
}

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

/* Max-width containers */
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.max-w-900 { max-width: 900px; margin-left: auto; margin-right: auto; }
.max-w-1140 { max-width: 1140px; margin-left: auto; margin-right: auto; }

/* ============================================
   RESPONSIVE TABLE WRAPPER
   ============================================ */
.table-responsive {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.table-responsive table {
    margin: 0;
    border-radius: 0;
}
