/* ============================================
   YEP CASINO - Design System
   Mobile-first responsive CSS
   Fonts: Russo One (display) + Nunito Sans (body)
   Theme: Dark casino luxury with gold & crimson
   ============================================ */

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

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

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

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

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

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

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

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

section {
    overflow: clip;
}


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

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

a {
    color: var(--secondary);
    text-decoration: underline;
    text-decoration-color: rgba(212, 160, 23, 0.4);
    text-underline-offset: 2px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover {
    color: #f5d76e;
    text-decoration-color: #f5d76e;
}

/* Remove underline for navigation, buttons, logos, and card links */
.nav-link,
.btn,
.header-logo,
.footer-logo,
.category-card,
.game-card__cta,
.bonus-card__cta,
.cta-banner__button {
    text-decoration: none;
}

.nav-link:hover,
.btn:hover,
.header-logo:hover,
.footer-logo:hover,
.category-card:hover {
    text-decoration: none;
}

.footer-links a {
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
    text-decoration-color: rgba(212, 160, 23, 0.4);
    text-underline-offset: 2px;
}

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

img {
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Russo One", "Impact", sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--foreground);
    margin-top: 0;
}


/* ============================================
   TYPOGRAPHY SYSTEM
   Russo One for headings, Nunito Sans for body
   ============================================ */
h1 {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

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

h3 {
    font-size: clamp(1.25rem, 2vw + 0.25rem, 1.625rem);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: clamp(1.125rem, 1.5vw + 0.25rem, 1.375rem);
    line-height: 1.3;
    margin-bottom: 0.625rem;
}

p {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 0.5vw + 0.9rem, 1.0625rem);
    line-height: 1.6;
}

/* Gold gradient text utility */
.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Oversized bonus amount text */
.text-bonus-amount {
    font-family: "Russo One", sans-serif;
    font-size: clamp(2.5rem, 6vw + 1rem, 4rem);
    line-height: 1.1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Muted text */
.text-muted {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Links inside .text-muted need higher contrast */
.text-muted a {
    color: #f5d76e;
    text-decoration: underline;
    text-decoration-color: rgba(245, 215, 110, 0.4);
    text-underline-offset: 2px;
}

.text-muted a:hover {
    color: #fff;
    text-decoration-color: #fff;
}

/* Section heading style */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}


/* ============================================
   LAYOUT CONTAINERS
   Max-width 1140px for content, full-bleed sections
   ============================================ */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

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

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

/* Section spacing */
.section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 4rem 0;
    }
}

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


/* ============================================
   HEADER - Fixed casino header with gold accents
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(20, 18, 24, 0.95);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
}

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

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 1001;
}

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

.header-logo .logo-text {
    font-family: "Russo One", sans-serif;
    font-size: 1.25rem;
    color: var(--foreground);
    letter-spacing: 0.5px;
}

.logo-y {
    color: var(--secondary);
}

.footer-logo .logo-text {
    font-family: "Russo One", sans-serif;
    font-size: 1.125rem;
    color: var(--foreground);
}

/* Header actions (login/register - desktop) */
.header-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

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


/* ============================================
   NAVIGATION - Desktop horizontal, mobile drawer
   ============================================ */
.main-nav {
    display: none;
}

.main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    padding: 1.5rem 1rem;
    animation: slideDown 0.2s ease;
}

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

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

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

.nav-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 1rem;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--foreground);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
    color: var(--secondary);
    background: rgba(212, 160, 23, 0.05);
    text-decoration: none;
}

/* Mobile register button in nav */
.nav-actions-mobile {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

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

.btn-register-mobile {
    width: 100%;
    text-align: center;
}

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

    .main-nav.is-open {
        position: static;
        animation: none;
    }

    .nav-list {
        flex-direction: row;
        gap: 0.25rem;
    }

    .nav-link {
        min-height: 40px;
        padding: 0 0.75rem;
        font-size: 0.9375rem;
        border-bottom: none;
        border-radius: var(--radius);
    }

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


/* ============================================
   HAMBURGER 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;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

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

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


/* ============================================
   BUTTONS - Casino-style CTAs with gold shimmer
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: "Russo One", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

/* Allow hero CTA to wrap on small screens */
.hero__cta {
    white-space: normal;
    text-align: center;
    line-height: 1.3;
}

.btn:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* Primary - Crimson Red with gold shimmer */
.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    min-height: 48px;
}

.btn-primary:hover {
    background: #ef4444;
    color: var(--primary-foreground);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

/* Gold shimmer animation on primary buttons */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.25), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

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

/* Gold button - for register */
.btn-gold {
    background: var(--gold-gradient);
    color: #1a1a1a;
    font-size: 0.8125rem;
    padding: 0.625rem 1.25rem;
    min-height: 40px;
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.4);
    color: #1a1a1a;
}

/* Ghost button - for login */
.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
    font-size: 0.8125rem;
    padding: 0.625rem 1.25rem;
    min-height: 40px;
}

.btn-ghost:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(212, 160, 23, 0.05);
}

/* Size variants */
.btn-sm {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    min-height: 36px;
}

.btn-md {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    min-height: 44px;
}

.btn-lg {
    font-size: 1rem;
    padding: 1rem 2rem;
    min-height: 52px;
}

@media (min-width: 768px) {
    .btn-lg {
        font-size: 1.0625rem;
        padding: 1rem 2.5rem;
        min-height: 56px;
    }
}


/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    padding: 0.75rem 1rem;
    background: rgba(20, 18, 24, 0.97);
    border-top: 1px solid var(--border);
}

.sticky-mobile-cta.is-visible {
    display: block;
}

.btn-sticky {
    width: 100%;
    text-align: center;
    font-size: 0.8125rem;
}

@media (min-width: 1024px) {
    .sticky-mobile-cta {
        display: none !important;
    }
}


/* ============================================
   HERO SECTIONS - Full-bleed with mascot/background
   ============================================ */
.hero {
    position: relative;
    padding: 3.5rem 0 3rem;
    margin-top: var(--header-height);
    background: linear-gradient(135deg, #141218 0%, #1e1a24 40%, #2a1a1a 70%, #141218 100%);
    overflow: clip;
    text-align: center;
    min-height: 420px;
}

@media (min-width: 768px) {
    .hero {
        padding: 4.5rem 0 4rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 6rem 0 5rem;
        text-align: left;
    }
}

.hero__stripe {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, rgba(212, 160, 23, 0.04) 50%, transparent 60%);
    transform: rotate(-25deg);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .hero__content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero__content {
        padding: 0 2rem;
        display: flex;
        align-items: center;
        gap: 3rem;
    }
}

.hero__text {
    flex: 1;
}

.hero__image {
    display: none;
}

@media (min-width: 1024px) {
    .hero__image {
        display: block;
        flex: 0 0 320px;
        text-align: center;
    }

    .hero__image img {
        max-width: 300px;
        border-radius: 16px;
    }
}

.hero__title {
    margin-bottom: 1rem;
}

.hero__subtitle {
    color: var(--muted-foreground);
    font-size: clamp(1rem, 1vw + 0.75rem, 1.125rem);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

@media (max-width: 1023px) {
    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero__trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

@media (min-width: 1024px) {
    .hero__trust-row {
        justify-content: flex-start;
    }
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* Hero background mascot */
.hero__bg-mascot {
    position: absolute;
    right: -5%;
    bottom: 0;
    z-index: 1;
    opacity: 0.18;
    pointer-events: none;
    max-width: 320px;
}

.hero__bg-mascot img {
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .hero__bg-mascot {
        opacity: 0.22;
        max-width: 400px;
        right: 0;
    }
}

@media (min-width: 1024px) {
    .hero__bg-mascot {
        opacity: 0.15;
        max-width: 460px;
        right: 2%;
    }
}

/* Subdued hero for informational pages */
.hero--subdued {
    background: linear-gradient(135deg, #141218 0%, #1a1620 50%, #141218 100%);
    min-height: 320px;
}

.hero--subdued .hero__title {
    color: var(--foreground);
    -webkit-text-fill-color: var(--foreground);
}

/* Responsible gambling hero icon */
.rg-hero-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
    line-height: 1;
}

@media (min-width: 768px) {
    .rg-hero-icon {
        font-size: 3.5rem;
    }
}


/* ============================================
   NO-DEPOSIT BONUS CARD - Homepage highlight
   ============================================ */
.no-deposit-card {
    position: relative;
    background: linear-gradient(135deg, #1e1a24 0%, #2a1a2a 50%, #1e1a24 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(212, 160, 23, 0.25);
    padding: 2.5rem 1.5rem;
    text-align: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .no-deposit-card {
        padding: 3.5rem 2rem;
    }
}

.no-deposit-card__glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.no-deposit-card__title {
    font-family: "Russo One", sans-serif;
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.no-deposit-card__details {
    font-size: clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.no-deposit-card__details strong {
    color: var(--accent);
}


/* ============================================
   GAME CARDS - Casino game showcase grid
   ============================================ */
.game-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

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

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

.game-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border-left: 3px solid transparent;
    border-image: var(--gold-gradient) 1;
    border-image-slice: 1;
    border-left-width: 3px;
    border-left-style: solid;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

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

@media (min-width: 1024px) {
    .game-card:hover {
        transform: translateY(-4px) scale(1.04);
    }
}

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

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

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

.game-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2232 0%, #1e1a24 100%);
}

.game-card__placeholder-icon {
    font-size: 3rem;
}

.game-card__badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--primary);
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.game-card__content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

@media (min-width: 1024px) {
    .game-card__content {
        padding: 1.75rem;
    }
}

.game-card__title {
    font-family: "Russo One", sans-serif;
    font-size: 1rem;
    color: var(--card-foreground);
    margin-bottom: 0.25rem;
}

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

.game-card__provider {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    flex: 1;
}

.game-card__cta {
    align-self: flex-start;
}


/* ============================================
   BONUS CARDS - Premium bonus showcase
   ============================================ */
.bonus-cards-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.bonus-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
}

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

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

.bonus-card__top-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: var(--radius) var(--radius) 0 0;
}

.bonus-card__badge {
    display: inline-block;
    background: rgba(212, 160, 23, 0.15);
    color: var(--secondary);
    font-family: "Russo One", sans-serif;
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.bonus-card__amount {
    font-family: "Russo One", sans-serif;
    font-size: clamp(2.25rem, 5vw + 0.5rem, 3.5rem);
    line-height: 1.1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.bonus-card__details {
    font-size: 1rem;
    color: var(--card-foreground);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.bonus-card__divider {
    width: 60%;
    height: 1px;
    background: var(--gold-gradient);
    margin: 0.75rem auto;
    opacity: 0.4;
}

.bonus-card__terms {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.bonus-card__cta {
    margin-top: auto;
}


/* ============================================
   CTA BANNER - Full-width conversion sections
   ============================================ */
.cta-banner {
    position: relative;
    background: linear-gradient(135deg, #1e1a24 0%, #141218 50%, #1a1218 100%);
    padding: 2.5rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 4rem 0;
    }
}

.cta-banner__stripe {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, rgba(212, 160, 23, 0.03) 50%, transparent 60%);
    transform: rotate(25deg);
    pointer-events: none;
}

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

.cta-banner__headline {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.cta-banner__subtext {
    color: var(--foreground);
    font-size: clamp(1rem, 0.5vw + 0.9rem, 1.0625rem);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-banner__button {
    margin-bottom: 1rem;
}

.cta-banner__microcopy {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}


/* ============================================
   FAQ ACCORDION - Expandable Q&A
   ============================================ */
.faq-accordion {
    background: rgba(30, 26, 36, 0.6);
    border-radius: var(--radius);
    padding: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .faq-accordion {
        padding: 1.75rem;
    }
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-item__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem 0;
    min-height: 52px;
    text-align: left;
    gap: 1rem;
    color: var(--foreground);
}

.faq-item__question {
    font-family: "Russo One", sans-serif;
    font-size: clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
    color: var(--foreground);
    flex: 1;
}

.faq-item__icon {
    color: var(--secondary);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-item__answer {
    overflow: hidden;
}

.faq-item__answer:not([hidden]) {
    animation: faqSlideDown 0.2s ease;
}

@keyframes faqSlideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.faq-item__answer-inner {
    padding: 0 0 1rem 1rem;
    border-left: 3px solid rgba(212, 160, 23, 0.3);
    color: var(--muted-foreground);
    font-size: clamp(0.9375rem, 0.5vw + 0.875rem, 1.0625rem);
    line-height: 1.6;
}

.faq-item__answer-inner p {
    margin-bottom: 0.75rem;
}

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

.faq-item__answer-inner a {
    color: #f5d76e;
    text-decoration: underline;
    text-decoration-color: rgba(245, 215, 110, 0.4);
    text-underline-offset: 2px;
}

.faq-item__answer-inner a:hover {
    color: #fff;
    text-decoration-color: #fff;
}


/* ============================================
   TRUST BADGES ROW - Authority signals
   ============================================ */
.trust-badges {
    background: var(--card);
    border-top: 2px solid rgba(212, 160, 23, 0.3);
    padding: 1.5rem 0;
}

@media (min-width: 768px) {
    .trust-badges {
        padding: 2.5rem 0;
    }
}

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

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

@media (min-width: 768px) {
    .trust-badges__inner {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.375rem;
    padding: 0.75rem 0.5rem;
}

.trust-badge__icon {
    font-size: 1.75rem;
    line-height: 1;
}

.trust-badge__label {
    font-family: "Russo One", sans-serif;
    font-size: 0.8125rem;
    color: var(--foreground);
}

.trust-badge__sublabel {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}


/* ============================================
   COMPARISON TABLE - Feature comparison grid
   ============================================ */
.comparison-table-wrap {
    position: relative;
    background: var(--card);
    border-radius: var(--radius);
    border-top: 3px solid;
    border-image: var(--gold-gradient) 1;
    padding: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .comparison-table-wrap {
        padding: 1.75rem;
    }
}

.comparison-table__caption {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    text-align: center;
}

.comparison-table__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    min-width: 500px;
}

@media (min-width: 1024px) {
    .comparison-table {
        font-size: 0.9375rem;
        min-width: auto;
    }
}

.comparison-table thead th {
    font-family: "Russo One", sans-serif;
    font-weight: 400;
    font-size: 0.8125rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 1rem;
    background: rgba(212, 160, 23, 0.05);
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .comparison-table thead th {
        font-size: 0.9375rem;
    }
}

.comparison-table tbody td {
    padding: 0.75rem 1rem;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.comparison-table tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table .highlight-col {
    border-left: 3px solid var(--secondary);
    background: rgba(212, 160, 23, 0.04);
}

.check-yes {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.125rem;
}

.check-no {
    color: var(--muted-foreground);
    opacity: 0.5;
    font-size: 1.125rem;
}

.comparison-table__fade {
    display: none;
}

@media (max-width: 767px) {
    .comparison-table__fade {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 40px;
        background: linear-gradient(to left, var(--card), transparent);
        pointer-events: none;
        border-radius: 0 var(--radius) var(--radius) 0;
    }
}


/* ============================================
   GAME CATEGORIES - Icon card row
   ============================================ */
.categories-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
}

.categories-grid::-webkit-scrollbar {
    height: 4px;
}

.categories-grid::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 2px;
}

.categories-grid::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .categories-grid {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        overflow-x: visible;
    }
}

.category-card {
    flex: 0 0 150px;
    scroll-snap-align: start;
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--border);
}

@media (min-width: 768px) {
    .category-card {
        flex: auto;
    }
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.1);
    border-color: rgba(212, 160, 23, 0.3);
    text-decoration: none;
}

.category-card__icon {
    font-size: 2rem;
    line-height: 1;
    color: var(--secondary);
}

.category-card__name {
    font-family: "Russo One", sans-serif;
    font-size: 0.875rem;
    color: var(--foreground);
}

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


/* ============================================
   VIP TIERS - Loyalty program display
   ============================================ */
.vip-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.vip-tier {
    flex: 0 0 calc(50% - 0.375rem);
}

@media (min-width: 480px) {
    .vip-tier {
        flex: 0 0 calc(33.333% - 0.5rem);
    }
}

@media (min-width: 768px) {
    .vip-tier {
        flex: 0 0 calc(25% - 0.5625rem);
    }
}

@media (min-width: 1024px) {
    .vip-tier {
        flex: 0 0 calc(14.285% - 0.643rem);
    }
}

.vip-tier {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1rem 0.75rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease;
    min-width: 0;
}

.vip-tier:hover {
    border-color: rgba(212, 160, 23, 0.4);
}

.vip-tier__icon {
    font-size: 1.5rem;
    margin-bottom: 0.375rem;
}

.vip-tier__name {
    font-family: "Russo One", sans-serif;
    font-size: 0.75rem;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.vip-tier__cashback {
    font-size: 0.875rem;
    color: var(--secondary);
    font-weight: 700;
}


/* ============================================
   PAYMENT LOGOS - Method display row
   ============================================ */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 1rem;
    font-family: "Nunito Sans", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: border-color 0.2s ease, color 0.2s ease;
    min-height: 40px;
}

.payment-badge:hover {
    border-color: rgba(212, 160, 23, 0.3);
    color: var(--foreground);
}


/* ============================================
   DEPOSIT METHOD CARDS - Payment details grid
   ============================================ */
.deposit-methods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

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

.deposit-method-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.25rem;
    border: 1px solid var(--border);
    text-align: center;
}

.deposit-method-card__icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.deposit-method-card__name {
    font-family: "Russo One", sans-serif;
    font-size: 0.875rem;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.deposit-method-card__detail {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}


/* ============================================
   PROVIDER LOGOS GRID
   ============================================ */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

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

@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-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-align: center;
    transition: border-color 0.2s ease, color 0.2s ease;
    min-height: 48px;
}

.provider-badge:hover {
    border-color: rgba(212, 160, 23, 0.3);
    color: var(--secondary);
}


/* ============================================
   SEO CONTENT - Long-form text sections
   ============================================ */
.seo-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.seo-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

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

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

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

.seo-content li {
    margin-bottom: 0.375rem;
    line-height: 1.6;
}

.seo-content blockquote {
    border-left: 4px solid var(--secondary);
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    background: rgba(212, 160, 23, 0.04);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}

.seo-content blockquote p:last-child {
    margin-bottom: 0;
}

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

.seo-content a {
    color: #f5d76e;
    text-decoration: underline;
    text-decoration-color: rgba(245, 215, 110, 0.4);
    text-underline-offset: 2px;
}

.seo-content a:hover {
    color: #fff;
    text-decoration-color: #fff;
}


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

/* Summary / TL;DR box */
.summary-box {
    background: rgba(212, 160, 23, 0.06);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-left: 4px solid var(--secondary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.summary-box__title {
    font-family: "Russo One", sans-serif;
    font-size: 0.875rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

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

/* Callout / highlight box */
.callout-box {
    background: var(--card);
    border-left: 4px solid var(--secondary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.callout-box--warning {
    border-left-color: #f59e0b;
}

.callout-box--info {
    border-left-color: #3b82f6;
}

.callout-box__title {
    font-family: "Russo One", sans-serif;
    font-size: 0.9375rem;
    color: var(--foreground);
    margin-bottom: 0.375rem;
}

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

/* Links inside callout boxes */
.callout-box a {
    color: #f5d76e;
    text-decoration: underline;
    text-decoration-color: rgba(245, 215, 110, 0.4);
    text-underline-offset: 2px;
}

.callout-box a:hover {
    color: #fff;
    text-decoration-color: #fff;
}

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: 1.5rem 1rem;
}

.stat-highlight__number {
    font-family: "Russo One", sans-serif;
    font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.stat-highlight__label {
    font-size: 0.9375rem;
    color: var(--foreground);
}

.stat-highlight__source {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

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

/* Pull quote */
.pull-quote {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 2px solid rgba(212, 160, 23, 0.2);
    border-bottom: 2px solid rgba(212, 160, 23, 0.2);
    text-align: center;
}

.pull-quote__text {
    font-family: "Russo One", sans-serif;
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
    color: var(--foreground);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.pull-quote__attribution {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

/* Details/summary accordion (native) */
.styled-details {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.styled-details summary {
    cursor: pointer;
    padding: 1rem 1.25rem;
    font-family: "Russo One", sans-serif;
    font-size: 1rem;
    color: var(--foreground);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
}

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

.styled-details summary::after {
    content: '+';
    color: var(--secondary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

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

.styled-details__content {
    padding: 0 1.25rem 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}


/* ============================================
   PROS/CONS LIST - Quick verdict
   ============================================ */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.pros-cons__col {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.pros-cons__title {
    font-family: "Russo One", sans-serif;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.pros-cons__title--pro {
    color: var(--accent);
}

.pros-cons__title--con {
    color: var(--muted-foreground);
}

.pros-cons__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-cons__list li {
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
}

.pros-cons__list li::before {
    position: absolute;
    left: 0;
}

.pros-cons__list--pro li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

.pros-cons__list--con li::before {
    content: '✗';
    color: var(--muted-foreground);
}


/* ============================================
   STEP GUIDE - Numbered steps display
   ============================================ */
.steps-guide {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.step-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #1a1a1a;
    font-family: "Russo One", sans-serif;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.step-card__title {
    font-family: "Russo One", sans-serif;
    font-size: 1rem;
    color: var(--foreground);
    margin-bottom: 0.375rem;
}

.step-card__desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}


/* ============================================
   PILL BADGES - Inline tag display
   ============================================ */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pill--gold {
    background: rgba(212, 160, 23, 0.15);
    color: var(--secondary);
}

.pill--green {
    background: rgba(52, 211, 153, 0.15);
    color: var(--accent);
}

.pill--red {
    background: rgba(220, 38, 38, 0.15);
    color: var(--primary);
}

.pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}


/* ============================================
   CATEGORY TABS / FILTER CHIPS
   ============================================ */
.filter-chips {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.filter-chips::-webkit-scrollbar {
    height: 0;
}

.filter-chip {
    flex-shrink: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-family: "Nunito Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
}

.filter-chip:hover,
.filter-chip.is-active {
    background: rgba(212, 160, 23, 0.1);
    border-color: var(--secondary);
    color: var(--secondary);
}


/* ============================================
   RESPONSIBLE GAMBLING PAGE - Subdued styles
   ============================================ */
.page-responsible .section {
    max-width: 800px;
    margin: 0 auto;
}

.page-responsible h2 {
    color: var(--foreground);
    -webkit-text-fill-color: var(--foreground);
}

.rg-tools-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.rg-tools-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

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

.rg-tool__icon {
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    color: var(--secondary);
}

.rg-tool__text strong {
    color: var(--foreground);
    display: block;
    margin-bottom: 0.125rem;
    font-size: 0.9375rem;
}

.rg-tool__text span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.warning-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.warning-checklist li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--foreground);
    font-size: 0.9375rem;
}

.warning-checklist li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #f59e0b;
}

.help-resource {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.help-resource__name {
    font-family: "Russo One", sans-serif;
    font-size: 1rem;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.help-resource__contact {
    font-size: 0.875rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.help-resource__desc {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin: 0;
}


/* ============================================
   CLAIM/REDIRECT PAGE - Loading spinner
   ============================================ */
.page-claim .redirect-screen {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height) - 200px);
    padding: 3rem 1rem;
    margin-top: var(--header-height);
    text-align: center;
    background: linear-gradient(135deg, #141218 0%, #1e1a24 40%, #2a1a1a 70%, #141218 100%);
    overflow: hidden;
}

.redirect-screen__stripe {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, rgba(212, 160, 23, 0.04) 50%, transparent 60%);
    transform: rotate(-25deg);
    pointer-events: none;
}

.redirect-screen__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.redirect-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    margin-bottom: 2rem;
    animation: redirectLogoPulse 2s ease-in-out infinite;
}

@keyframes redirectLogoPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.85; }
}

.redirect-spinner {
    width: 56px;
    height: 56px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 1.5rem;
}

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

.redirect-text {
    font-family: "Russo One", sans-serif;
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
    color: var(--foreground);
    margin-top: 0;
    margin-bottom: 0.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.redirect-subtext {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
    color: var(--foreground);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.redirect-microcopy {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}


/* ============================================
   FOOTER - Four-column casino footer
   ============================================ */
.site-footer {
    background: var(--card);
    margin-top: auto;
    padding-bottom: 5rem;
}

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

.footer-gold-border {
    height: 2px;
    background: var(--gold-gradient);
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 2.5rem 1rem 1.5rem;
}

@media (min-width: 768px) {
    .footer-inner {
        padding: 3rem 1.5rem 2rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@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: 2.5rem;
    }
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.footer-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid #f87171;
    border-radius: 50%;
    font-family: "Russo One", sans-serif;
    font-size: 0.75rem;
    color: #f87171;
}

.badge-license,
.badge-ssl {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.6875rem;
    color: var(--muted-foreground);
    font-weight: 600;
}

.footer-heading {
    font-family: "Russo One", sans-serif;
    font-size: 0.9375rem;
    color: var(--secondary);
    margin-top: 0;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: var(--secondary);
    text-decoration: underline;
    text-decoration-color: rgba(212, 160, 23, 0.4);
    text-underline-offset: 2px;
}

.footer-payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-payment-logos .payment-badge {
    font-size: 0.625rem;
    padding: 0.375rem 0.625rem;
    min-height: 32px;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    opacity: 1;
    margin-bottom: 0;
}


/* ============================================
   SCROLL ANIMATIONS - Intersection Observer
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

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

/* Staggered animation for grid children */
.game-cards-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.game-cards-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.game-cards-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.game-cards-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.game-cards-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }

.bonus-cards-row .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.bonus-cards-row .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }


/* ============================================
   MAIN CONTENT - Account for header height
   ============================================ */
#main-content {
    min-height: calc(100vh - var(--header-height));
}

/* Pages without hero get top padding */
.page-content-padded {
    padding-top: calc(var(--header-height) + 2rem);
}


/* ============================================
   GOLD DIAGONAL STRIPE - Signature element
   ============================================ */
.gold-stripe-divider {
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0;
    border: none;
}

.gold-stripe-divider--thin {
    height: 1px;
    opacity: 0.4;
}


/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.hidden { display: none; }

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


/* ============================================
   HIGH ROLLER BONUS CARD
   ============================================ */
.high-roller-card {
    background: linear-gradient(135deg, #1e1a24 0%, #2a1a2a 50%, #1e1a24 100%);
    border-radius: var(--radius);
    border: 2px solid rgba(212, 160, 23, 0.35);
    padding: 2.5rem 1.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .high-roller-card {
        padding: 3rem 2.5rem;
    }
}

.high-roller-tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

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

.high-roller-tier {
    background: rgba(20, 18, 24, 0.6);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.high-roller-tier h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}


/* ============================================
   WHEEL OF FORTUNE SECTION
   ============================================ */
.wheel-section {
    max-width: 800px;
    margin: 0 auto;
}

.wheel-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.wheel-option {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.wheel-option:hover {
    border-color: rgba(212, 160, 23, 0.4);
    transform: translateY(-2px);
}

.wheel-option--vip {
    border-color: rgba(212, 160, 23, 0.3);
    background: linear-gradient(135deg, #1e1a24 0%, #241a2a 100%);
}

.wheel-option__icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.wheel-option__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.wheel-option__prizes {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    text-align: left;
}

.wheel-option__prizes li {
    padding: 0.375rem 0;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    border-bottom: 1px solid var(--border);
}

.wheel-option__prizes li:last-child {
    border-bottom: none;
}


/* ============================================
   SPORTSBOOK BONUS CARD
   ============================================ */
.sportsbook-bonus-card {
    max-width: 700px;
    margin: 0 auto;
}

.sportsbook-bonus-card__inner {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .sportsbook-bonus-card__inner {
        padding: 2.5rem 2rem;
    }
}

.sportsbook-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.sportsbook-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(212, 160, 23, 0.08);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 20px;
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    white-space: nowrap;
}


/* ============================================
   LIVE CASINO GAME CARDS - Spielautomaten page
   ============================================ */
.live-games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.live-game-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
}

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

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

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

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

.live-game-card__content {
    padding: 1.25rem;
}

@media (min-width: 1024px) {
    .live-game-card__content {
        padding: 1.5rem;
    }
}

.live-game-card__content h3 {
    font-family: "Russo One", sans-serif;
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.live-game-card__content p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.live-game-card__providers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

/* Live casino section background */
.live-casino-section {
    background: linear-gradient(180deg, var(--background) 0%, rgba(42, 26, 26, 0.3) 50%, var(--background) 100%);
}


/* ============================================
   PAYMENT CATEGORY TITLES
   ============================================ */
.payment-category-title {
    font-family: "Russo One", sans-serif;
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 1rem;
    margin-top: 0;
}


/* ============================================
   DEPOSIT METHOD CARD VARIANTS
   ============================================ */
.deposit-method-card--crypto {
    border-color: rgba(212, 160, 23, 0.2);
    background: linear-gradient(135deg, var(--card) 0%, rgba(212, 160, 23, 0.03) 100%);
}

.deposit-method-card--crypto:hover {
    border-color: rgba(212, 160, 23, 0.4);
}

.deposit-method-card__detail--warning {
    color: #f59e0b;
    font-weight: 700;
}

.deposit-method-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
    transition: border-color 0.2s ease;
}


/* ============================================
   CRYPTO SECTION
   ============================================ */
.crypto-section {
    background: linear-gradient(180deg, var(--background) 0%, rgba(30, 26, 36, 0.5) 50%, var(--background) 100%);
}

.crypto-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.crypto-benefit-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.crypto-benefit-card:hover {
    border-color: rgba(212, 160, 23, 0.4);
    transform: translateY(-2px);
}

.crypto-benefit-card__icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.crypto-benefit-card__title {
    font-family: "Russo One", sans-serif;
    font-size: 1.0625rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.crypto-benefit-card__desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}


/* ============================================
   FAQ PAGE - Quick nav, support cards, app grid
   ============================================ */
.faq-quick-nav {
    margin-top: 1.5rem;
}

.faq-quick-nav .pill {
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.faq-quick-nav .pill:hover {
    background: rgba(212, 160, 23, 0.25);
    transform: translateY(-1px);
}

/* Support cards */
.support-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.support-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.support-card:hover {
    border-color: rgba(212, 160, 23, 0.4);
    transform: translateY(-2px);
}

.support-card__icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.support-card__title {
    font-family: "Russo One", sans-serif;
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 0.25rem;
    margin-top: 0;
}

.support-card__detail {
    font-size: 0.9375rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.support-card__desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* FAQ app content */
.faq-app-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-app-content h3 {
    margin-top: 1.5rem;
}

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

.faq-app-content li {
    margin-bottom: 0.375rem;
    line-height: 1.6;
}


/* ============================================
   RESPONSIVE FINE-TUNING
   ============================================ */

/* Extra small phones */
@media (max-width: 359px) {
    .hero {
        padding: 2.5rem 0 2rem;
    }

    .bonus-card__amount {
        font-size: 2rem;
    }

    .btn-lg {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }
}

/* Ensure content doesn't overflow on any viewport */
html {
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
}