/* ============================================
   LEMON CASINO - Design System
   Gangster noir comic aesthetic
   Fonts: Dela Gothic One (display) + Nunito Sans (body)
   ============================================ */

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

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

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

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

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

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

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

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

section {
    overflow: clip;
}

/* ============================================
   BASE RESET & TYPOGRAPHY
   Dela Gothic One - commanding display headings
   Nunito Sans - clean readable body text
   ============================================ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, 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;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Dela Gothic One", "Impact", sans-serif;
    margin: 0 0 16px;
    line-height: 1.2;
    color: var(--primary);
}

h1 {
    font-size: clamp(1.875rem, 4vw + 1rem, 3rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.625rem);
}

h4 {
    font-size: 1.125rem;
}

p {
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 1.6;
}

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

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

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

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

img {
    display: block;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.container--wide {
    max-width: 1280px;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }

/* ============================================
   HAZARD STRIPE - Signature decorative element
   Diagonal yellow-black stripes as section dividers
   ============================================ */
.hazard-stripe {
    width: 100%;
    height: 8px;
    background: repeating-linear-gradient(
        -45deg,
        var(--primary),
        var(--primary) 10px,
        #1a1a1a 10px,
        #1a1a1a 20px
    );
}

/* ============================================
   BUTTONS - CTAs and actions
   .btn - base button
   .btn-primary - solid yellow CTA (main conversion)
   .btn-ghost - outlined yellow (secondary action)
   .btn-sm / .btn-lg - size variants
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    border: 3px solid transparent;
    border-radius: 6px;
    padding: 12px 24px;
    min-height: 48px;
    cursor: pointer;
    transition: all 0.2s ease-out;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    animation: pulse-cta 2s ease-in-out infinite;
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-foreground);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-ghost:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-2px);
}

.btn-sm {
    font-size: 14px;
    padding: 8px 16px;
    min-height: 40px;
}

.btn-lg {
    font-size: 18px;
    padding: 16px 32px;
    min-height: 56px;
}

@keyframes pulse-cta {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.btn-primary:hover {
    animation: none;
}

/* ============================================
   HEADER - Sticky navigation bar
   Fixed dark header with logo, nav links, CTA buttons
   Hamburger menu below 1024px
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0a0c16;
    border-bottom: 2px solid var(--primary);
    height: 72px;
}

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

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

.header-logo .logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.logo-text {
    font-family: "Dela Gothic One", sans-serif;
    font-size: 20px;
    color: var(--primary);
    line-height: 1;
}

/* Desktop nav - hidden on mobile */
.main-nav {
    display: none;
}

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

.nav-link {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--foreground);
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.2s ease-out;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(255, 208, 0, 0.08);
}

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

/* Header action buttons - hidden on mobile */
.header-actions {
    display: none;
    align-items: center;
    gap: 8px;
}

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

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

.hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease-out;
    transform-origin: center;
}

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

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

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

/* Mobile nav drawer */
.main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0c16;
    z-index: 999;
    padding: 24px 20px;
    overflow-y: auto;
}

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

.main-nav.is-open .nav-link {
    display: flex;
    align-items: center;
    min-height: 56px;
    font-size: 18px;
    padding: 16px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
}

.main-nav.is-open .nav-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid var(--primary);
}

.main-nav.is-open .nav-actions-mobile .btn {
    width: 100%;
}

/* Spacer for fixed header */
body {
    padding-top: 72px;
}

/* ============================================
   DESKTOP BREAKPOINT (1024px+)
   Reveal inline nav, hide hamburger
   ============================================ */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }

    .main-nav {
        display: flex;
        align-items: center;
    }

    .header-actions {
        display: flex;
    }

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

/* ============================================
   FOOTER - 4-column layout with legal info
   Darkest background, yellow accent lines
   ============================================ */
.site-footer {
    background: #060810;
    border-top: 2px solid var(--primary);
    padding-top: 48px;
    margin-top: 0;
}

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

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

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

.footer-logo span {
    font-family: "Dela Gothic One", sans-serif;
    font-size: 18px;
    color: var(--primary);
}

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

.footer-heading {
    font-family: "Dela Gothic One", sans-serif;
    font-size: 14px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

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

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

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

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

.footer-payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-logo-item {
    font-size: 20px;
    opacity: 0.6;
    transition: opacity 0.2s ease-out;
}

.payment-logo-item:hover {
    opacity: 1;
}

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

.badge-item {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--border);
    color: var(--muted-foreground);
}

.badge-18 {
    background: #cc0000;
    color: #fff;
    border-color: #cc0000;
}

.badge-license {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
}

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

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

.footer-disclaimer {
    font-size: 12px;
    color: #9b97a8;
    margin: 0;
}

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

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

/* ============================================
   HERO SECTIONS - Full-bleed page heroes
   .hero - base hero with halftone background
   .hero--minimal - subdued hero for technical pages
   ============================================ */
.hero {
    position: relative;
    padding: 48px 20px;
    background: linear-gradient(135deg, #0a0c16 0%, #12142a 50%, #0a0c16 100%);
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 208, 0, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 1;
}

.hero__mascot {
    max-width: 220px;
    margin: 0 auto 24px;
}

.hero__mascot img {
    width: 100%;
    height: auto;
}

.hero__amount {
    font-family: "Dela Gothic One", sans-serif;
    font-size: clamp(2.5rem, 6vw + 1rem, 4rem);
    background: linear-gradient(180deg, #ffd000 0%, #c8960a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
}

.hero h1, .hero h2 {
    color: #fff;
    margin-bottom: 16px;
}

.hero p {
    color: #d4d0c4;
    max-width: 600px;
    margin: 0 auto 24px;
}

.hero .btn {
    margin-bottom: 12px;
}

.hero__terms {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0;
}

.hero__promo-code {
    display: inline-block;
    padding: 8px 20px;
    border: 2px dashed var(--primary);
    border-radius: 6px;
    font-family: "Dela Gothic One", sans-serif;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.hero--minimal {
    padding: 40px 20px;
    background: linear-gradient(180deg, #0c0e1a 0%, #111328 100%);
}

.hero--minimal::before {
    display: none;
}

@media (min-width: 768px) {
    .hero {
        padding: 64px 20px;
    }

    .hero__inner {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 40px;
    }

    .hero__mascot {
        max-width: 280px;
        margin: 0;
        flex-shrink: 0;
    }

    .hero__content {
        flex: 1;
    }

    .hero p {
        margin-left: 0;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 80px 20px;
    }

    .hero__mascot {
        max-width: 340px;
    }
}

/* ============================================
   BONUS CARDS - Promotional offer cards
   .bonus-card - dark charcoal with comic outline
   Arranged in responsive grid, hover glow effect
   ============================================ */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.bonus-card {
    background: var(--card);
    border: 3px solid #1a1a1a;
    border-radius: 12px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 24px rgba(255, 208, 0, 0.2);
}

.bonus-card__hazard {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 9px 9px 0 0;
    background: repeating-linear-gradient(
        -45deg,
        var(--primary),
        var(--primary) 6px,
        #1a1a1a 6px,
        #1a1a1a 12px
    );
}

.bonus-card__icon {
    font-size: 36px;
    margin-top: 12px;
    margin-bottom: 8px;
}

.bonus-card__amount {
    font-family: "Dela Gothic One", sans-serif;
    font-size: clamp(1.75rem, 3vw + 0.5rem, 3rem);
    background: linear-gradient(180deg, #ffd000 0%, #c8960a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
}

.bonus-card__title {
    font-family: "Dela Gothic One", sans-serif;
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    color: #fff;
    margin-bottom: 8px;
}

.bonus-card__desc {
    font-size: 15px;
    color: #d4d0c4;
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
}

.bonus-card__terms {
    font-size: 12px;
    color: var(--muted-foreground);
    margin-bottom: 16px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    width: 100%;
}

.bonus-card__cta {
    width: 100%;
}

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

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

/* 3-card grid variant for deposit bonuses */
.bonus-grid--3 {
    grid-template-columns: 1fr;
}

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

/* ============================================
   GAME CARD GRID - Game thumbnail showcase
   .game-grid - responsive grid of game cards
   .game-card - individual game thumbnail card
   ============================================ */
.game-grid-section {
    padding: 48px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.game-grid__heading {
    font-size: clamp(1.5rem, 3vw + 0.25rem, 2.25rem);
    color: var(--primary);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.game-grid__heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin-top: 8px;
    border-radius: 2px;
}

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

.game-card {
    display: block;
    position: relative;
    border: 3px solid #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    aspect-ratio: 1;
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(255, 208, 0, 0.3);
}

.game-card--green:hover {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.game-card--gold {
    border-color: var(--accent);
}

.game-card--gold:hover {
    box-shadow: 0 0 20px rgba(229, 169, 10, 0.4);
}

.game-card__thumb {
    position: relative;
    width: 100%;
    height: 100%;
}

.game-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--accent);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 10px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.game-card__name {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.game-grid__btn-wrap {
    text-align: center;
    margin-top: 24px;
}

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

    .game-grid-section {
        padding: 64px 20px;
    }

    .game-card__name {
        font-size: 14px;
    }
}

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

    .game-grid-section {
        padding: 80px 20px;
    }
}

/* ============================================
   FAQ ACCORDION - Expandable Q&A blocks
   .faq-section - container with hazard stripe
   .faq-item - single question/answer pair
   ============================================ */
.faq-section {
    padding: 48px 20px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--card);
    border-radius: 12px;
}

.faq-section__heading {
    color: #fff;
    margin-bottom: 24px;
}

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

.faq-item {
    border-bottom: 2px solid #1a1a1a;
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 56px;
    padding: 16px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--foreground);
    line-height: 1.4;
}

.faq-item__icon {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    width: 28px;
    text-align: center;
    transition: transform 0.3s ease-out;
}

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

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

.faq-item__answer-inner {
    padding: 0 0 20px 16px;
    border-left: 3px solid var(--primary);
    font-size: 16px;
    line-height: 1.6;
    color: #d4d0c4;
}

.faq-item__answer-inner p {
    margin: 0 0 12px;
    font-size: 16px;
}

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

.faq-section--subdued .faq-item__icon {
    color: #c8960a;
}

.faq-section--subdued .faq-item__answer-inner {
    border-left-color: #c8960a;
}

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

    .faq-item__question {
        font-size: 18px;
    }
}

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

/* ============================================
   CTA BANNER - Full-width conversion section
   .cta-banner - dark background with halftone
   Mascot on one side, text + CTA on other
   ============================================ */
.cta-banner {
    position: relative;
    background: linear-gradient(135deg, #0e1020 0%, #161830 50%, #0e1020 100%);
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 208, 0, 0.04) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 20px;
    max-width: 1100px;
    margin: 0 auto;
    gap: 24px;
}

.cta-banner__mascot {
    max-width: 180px;
}

.cta-banner__mascot img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-out;
}

.cta-banner__heading {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
    color: var(--primary);
    margin-bottom: 8px;
}

.cta-banner__subtext {
    font-size: 17px;
    color: #d4d0c4;
    margin-bottom: 20px;
    max-width: 500px;
}

.cta-banner__btn {
    min-width: 220px;
}

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

@media (min-width: 768px) {
    .cta-banner__inner {
        flex-direction: row;
        text-align: left;
        padding: 64px 20px;
    }

    .cta-banner__mascot {
        max-width: 240px;
    }

    .cta-banner__mascot:hover img {
        transform: rotate(3deg);
    }
}

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

    .cta-banner__mascot {
        max-width: 280px;
    }
}

/* ============================================
   PAYMENT METHODS STRIP - Trust signal logos
   .payment-strip - horizontal logo row
   ============================================ */
.payment-strip {
    background: #060810;
    padding: 20px 0;
}

.payment-strip__line {
    height: 1px;
    background: var(--primary);
    opacity: 0.3;
}

.payment-strip__label {
    text-align: center;
    font-size: 14px;
    color: #b0adc0;
    margin: 16px 0 12px;
    padding: 0 20px;
}

.payment-strip__row {
    display: flex;
    gap: 16px;
    padding: 8px 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.payment-strip__row::-webkit-scrollbar {
    display: none;
}

.payment-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity 0.2s ease-out;
    cursor: default;
}

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

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

.payment-strip__name {
    font-size: 11px;
    color: #b0adc0;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .payment-strip__row {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
    }

    .payment-strip {
        padding: 28px 0;
    }
}

/* ============================================
   SECTION SPACING - Consistent vertical rhythm
   .section - standard page section (48px mobile, 80px desktop)
   .section--dark - darker background variant
   .section--card - uses card background
   ============================================ */
.section {
    padding: 48px 20px;
}

.section--dark {
    background: #0a0c16;
}

.section--card {
    background: var(--card);
}

.section--alt {
    background: #0e1024;
}

.section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section__inner--wide {
    max-width: 1280px;
}

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

/* ============================================
   WINNER TICKER - Auto-scrolling social proof
   ============================================ */
.winner-ticker {
    background: #0e1024;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    overflow: hidden;
}

.winner-ticker__track {
    display: flex;
    gap: 32px;
    width: max-content;
}

.winner-ticker__item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 14px;
    color: var(--foreground);
    flex-shrink: 0;
}

.winner-ticker__amount {
    color: var(--primary);
    font-weight: 700;
}

.winner-ticker__game {
    color: var(--muted-foreground);
}

/* Infinite scroll animation */
.winner-ticker__track {
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px;
    animation: ticker-scroll 30s linear infinite;
}

.winner-ticker__track::-webkit-scrollbar {
    display: none;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.winner-ticker:hover .winner-ticker__track {
    animation-play-state: paused;
}

/* ============================================
   PROVIDER CAROUSEL - Game studio logos
   ============================================ */
.provider-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px;
}

.provider-carousel::-webkit-scrollbar {
    display: none;
}

.provider-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #b0adc0;
    transition: color 0.2s ease-out, opacity 0.2s ease-out;
    white-space: nowrap;
}

.provider-logo:hover {
    color: var(--foreground);
}

@media (min-width: 768px) {
    .provider-carousel {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
    }
}

/* ============================================
   VIP / TREASURE BOX - Loyalty teaser
   ============================================ */
.vip-teaser {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 32px 20px;
    background: linear-gradient(135deg, #1a1520 0%, #201a10 50%, #1a1520 100%);
    border: 3px solid var(--accent);
    border-radius: 12px;
    max-width: 1100px;
    margin: 0 auto;
}

.vip-teaser__visual {
    max-width: 180px;
}

.vip-teaser__visual img {
    width: 100%;
    height: auto;
}

.vip-teaser h2 {
    color: var(--accent);
}

.vip-teaser p {
    color: #d4d0c4;
    max-width: 500px;
}

@media (min-width: 768px) {
    .vip-teaser {
        flex-direction: row;
        text-align: left;
        padding: 48px 40px;
    }

    .vip-teaser__visual {
        max-width: 220px;
    }
}

/* ============================================
   MISSIONS / TOURNAMENTS - Preview cards
   ============================================ */
.missions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-card {
    background: var(--card);
    border: 3px solid #1a1a1a;
    border-radius: 12px;
    padding: 24px 20px;
    position: relative;
}

.mission-card h3 {
    color: var(--secondary);
}

.mission-card p {
    color: #d4d0c4;
    font-size: 15px;
    margin-bottom: 16px;
}

.mission-card__timer {
    font-family: "Dela Gothic One", sans-serif;
    font-size: 14px;
    color: var(--accent);
}

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

/* ============================================
   SEO CONTENT - Long-form text sections
   .seo-content - max-width 1100px readable text
   ============================================ */
.seo-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 20px;
}

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

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

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

.seo-content p {
    color: #d4d0c4;
}

.seo-content ul,
.seo-content ol {
    color: #d4d0c4;
}

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

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

/* SEO table styles */
.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
    border: 3px solid #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.seo-content thead {
    background: var(--card);
}

.seo-content th {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid var(--primary);
}

.seo-content td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: #d4d0c4;
}

.seo-content tbody tr:last-child td {
    border-bottom: none;
}

.seo-content tbody tr:nth-child(even) {
    background: rgba(255, 208, 0, 0.03);
}

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

/* Table scroll wrapper */
.table-scroll {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
}

.table-scroll table {
    margin: 0;
    min-width: 500px;
}

/* ============================================
   COMPARISON TABLE - Feature comparisons
   .comparison-table - highlighted recommended col
   ============================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border: 3px solid #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    font-size: 15px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
    background: var(--card);
    color: var(--primary);
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 2px solid var(--primary);
}

.comparison-table td {
    color: #d4d0c4;
}

.comparison-table .col-highlight {
    background: rgba(255, 208, 0, 0.06);
}

.comparison-table .check,
.seo-content .check {
    color: var(--secondary);
    font-weight: 700;
}

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

/* ============================================
   ENGAGEMENT PATTERNS
   Callout, stat highlight, pull quote, summary box
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background: var(--card);
    border: 3px solid var(--primary);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

.summary-box h3,
.summary-box h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 18px;
}

.summary-box p,
.summary-box li {
    color: #d4d0c4;
    font-size: 15px;
}

/* Callout / highlight box */
.callout {
    border-left: 4px solid var(--primary);
    background: rgba(255, 208, 0, 0.05);
    padding: 16px 20px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
}

.callout--tip {
    border-left-color: var(--secondary);
    background: rgba(34, 197, 94, 0.05);
}

.callout--warning {
    border-left-color: var(--destructive);
    background: rgba(244, 63, 94, 0.05);
}

.callout p {
    margin: 0;
    color: #d4d0c4;
    font-size: 15px;
}

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

.callout strong {
    color: var(--primary);
}

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

.stat-highlight__number {
    font-family: "Dela Gothic One", sans-serif;
    font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
    background: linear-gradient(180deg, #ffd000 0%, #c8960a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    display: block;
    margin-bottom: 8px;
}

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

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

/* Pull quote */
.pull-quote {
    border-left: 4px solid var(--primary);
    margin: 32px 0;
    padding: 16px 0 16px 24px;
}

.pull-quote blockquote {
    font-family: "Dela Gothic One", sans-serif;
    font-size: clamp(1.125rem, 2vw + 0.25rem, 1.5rem);
    color: var(--primary);
    margin: 0 0 8px;
    line-height: 1.3;
}

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

/* Details / Summary */
.seo-content details {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 8px;
    margin: 16px 0;
    overflow: hidden;
}

.seo-content summary {
    padding: 14px 16px;
    cursor: pointer;
    font-weight: 700;
    color: var(--foreground);
    font-size: 16px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
}

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

.seo-content summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.seo-content details[open] summary::after {
    content: '×';
}

.seo-content details > div,
.seo-content details > p {
    padding: 0 16px 16px;
    color: #d4d0c4;
}

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted-foreground);
}

.trust-badge__icon {
    font-size: 18px;
}

/* ============================================
   DEPOSIT / PAYMENT CARDS - Expanded method cards
   ============================================ */
.payment-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 1280px;
    margin: 0 auto;
}

.payment-card {
    background: var(--card);
    border: 3px solid #1a1a1a;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.payment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 16px rgba(255, 208, 0, 0.15);
}

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

.payment-card__name {
    font-weight: 700;
    font-size: 14px;
    color: var(--foreground);
    margin-bottom: 6px;
}

.payment-card__detail {
    font-size: 12px;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.4;
}

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

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

/* ============================================
   KYC STEPS - Numbered process steps
   ============================================ */
.kyc-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.kyc-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--card);
    border: 3px solid #1a1a1a;
    border-radius: 10px;
    padding: 20px;
}

.kyc-step__number {
    font-family: "Dela Gothic One", sans-serif;
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary);
    border-radius: 50%;
}

.kyc-step__content h3 {
    margin-bottom: 6px;
    font-size: 16px;
    color: var(--primary);
}

.kyc-step__content p {
    font-size: 15px;
    color: #d4d0c4;
    margin: 0;
}

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

/* ============================================
   RESPONSIBLE GAMBLING - Subdued styling
   .rg-section - serious, no flashy effects
   ============================================ */
.rg-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0;
}

.rg-section h2 {
    color: #fff;
    margin-bottom: 16px;
}

.rg-section p {
    color: #d4d0c4;
    font-size: 16px;
    line-height: 1.6;
}

.rg-section a {
    color: #c8960a;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

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

.rg-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 16px;
}

.rg-card h3 {
    color: #c8960a;
    font-size: 16px;
    margin-bottom: 6px;
}

.rg-card p {
    color: #d4d0c4;
    font-size: 15px;
    margin: 0 0 16px;
}

.rg-card p:last-child {
    margin-bottom: 0;
}

.rg-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.rg-badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #cc0000;
    color: #fff;
    font-family: "Dela Gothic One", sans-serif;
    font-size: 18px;
    flex-shrink: 0;
}

.rg-badge-label {
    font-size: 15px;
    color: var(--muted-foreground);
    font-weight: 600;
}

.rg-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.rg-tool {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
}

.rg-tool__icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.rg-tool h3 {
    color: #c8960a;
    font-size: 15px;
    margin-bottom: 6px;
}

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

.rg-contact-box {
    background: var(--card);
    border: 2px solid #c8960a;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    margin: 24px 0 0;
}

.rg-contact-box p {
    margin: 0 0 8px;
    font-size: 15px;
}

.rg-contact-box p:last-child {
    margin-bottom: 0;
    color: var(--muted-foreground);
}

.rg-contact-box a {
    color: #c8960a;
    font-weight: 700;
}

/* RG steps - numbered process */
.rg-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 20px 0;
}

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

.rg-step__number {
    font-family: "Dela Gothic One", sans-serif;
    font-size: 24px;
    color: #c8960a;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #c8960a;
    border-radius: 50%;
}

.rg-step__content h3 {
    margin-bottom: 4px;
    font-size: 16px;
    color: #c8960a;
}

.rg-step__content p {
    font-size: 14px;
    color: #d4d0c4;
    margin: 0;
}

/* Warning signs list */
.rg-warning-list {
    padding-left: 0;
    list-style: none;
    margin: 20px 0;
}

.rg-warning-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: #d4d0c4;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

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

.rg-warning-list li::before {
    content: '⚠️';
    flex-shrink: 0;
    font-size: 16px;
}

.rg-help-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
}

.rg-help-item {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 20px;
}

.rg-help-item h3 {
    color: #c8960a;
    font-size: 15px;
    margin-bottom: 6px;
}

.rg-help-item p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.5;
}

/* RG comparison table */
.rg-comparison-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    font-size: 14px;
    margin: 20px 0;
}

.rg-comparison-table th,
.rg-comparison-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.rg-comparison-table thead th {
    background: var(--card);
    color: #c8960a;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 13px;
    border-bottom: 2px solid #c8960a;
}

.rg-comparison-table td {
    color: #d4d0c4;
}

.rg-comparison-table tbody tr:nth-child(even) {
    background: rgba(200, 150, 10, 0.03);
}

/* RG hero layout adjustment */
.rg-hero-inner {
    gap: 24px;
}

.rg-hero-mascot {
    max-width: 160px;
}

@media (min-width: 768px) {
    .rg-hero-mascot {
        max-width: 200px;
    }

    .rg-help-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rg-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rg-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

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

/* ============================================
   WIN PAGE - Redirect stub centered layout
   ============================================ */
.redirect-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--background);
    padding: 20px;
    text-align: center;
}

.redirect-page__logo-link {
    display: block;
    margin-bottom: 24px;
}

.redirect-page__logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.redirect-page__mascot {
    max-width: 200px;
    margin-bottom: 32px;
}

.redirect-page__text {
    font-family: "Dela Gothic One", sans-serif;
    font-size: clamp(1.5rem, 3vw + 0.5rem, 1.875rem);
    color: var(--primary);
    animation: pulse-opacity 2s ease-in-out infinite;
}

.redirect-page__dots {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.redirect-page__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    animation: dot-bounce 1.4s ease-in-out infinite;
}

.redirect-page__dot:nth-child(2) {
    animation-delay: 0.2s;
}

.redirect-page__dot:nth-child(3) {
    animation-delay: 0.4s;
}

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

@keyframes dot-bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* ============================================
   HERO HOME - Enhanced homepage hero
   ============================================ */
.hero--home {
    padding-bottom: 0;
    overflow: visible;
}

.hero--home .hero__inner {
    padding-bottom: 48px;
}

@media (min-width: 768px) {
    .hero--home .hero__inner {
        padding-bottom: 64px;
    }
}

@media (min-width: 1024px) {
    .hero--home .hero__inner {
        padding-bottom: 80px;
    }

    .hero--home .hero__mascot {
        max-width: 380px;
    }
}

/* ============================================
   HOMEPAGE PROVIDER HEADING CENTER
   ============================================ */
.game-grid__heading.text-center::after {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   SCROLL ANIMATIONS - Reveal on scroll
   .animate-on-scroll - starts hidden
   .is-visible - revealed by IntersectionObserver
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

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

/* ============================================
   LIVE CASHBACK CARD - Wide single card
   ============================================ */
.live-cashback-card {
    background: var(--card);
    border: 3px solid #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.live-cashback-card__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    gap: 24px;
}

.live-cashback-card__visual {
    max-width: 200px;
    flex-shrink: 0;
}

.live-cashback-card__visual img {
    width: 100%;
    height: auto;
}

.live-cashback-card__content {
    flex: 1;
}

.live-cashback-card__content h2 {
    color: var(--accent);
    margin-bottom: 8px;
}

.live-cashback-card__content p {
    color: #d4d0c4;
}

.live-cashback-card__content a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.live-cashback-card__content ul {
    color: #d4d0c4;
    text-align: left;
    padding-left: 20px;
}

.live-cashback-card__content ul li {
    font-size: 15px;
}

@media (min-width: 768px) {
    .live-cashback-card__inner {
        flex-direction: row;
        text-align: left;
        padding: 48px 40px;
    }

    .live-cashback-card__visual {
        max-width: 240px;
    }
}

/* ============================================
   MISSION CARD MASCOT
   ============================================ */
.mission-card__mascot {
    max-width: 120px;
    margin: 0 auto 12px;
}

.mission-card__mascot img {
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .mission-card__mascot {
        max-width: 140px;
    }
}

/* ============================================
   LIVE CASINO SPECIFIC
   Green accent variants for live dealer sections
   ============================================ */
.live-provider-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.live-provider-card {
    background: var(--card);
    border: 3px solid #1a1a1a;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.live-provider-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(255, 208, 0, 0.15);
}

.live-provider-card h3 {
    margin-bottom: 8px;
}

.live-provider-card p {
    font-size: 15px;
    color: #d4d0c4;
    margin: 0;
}

.live-provider-card--evolution h3 { color: var(--accent); }
.live-provider-card--pragmatic h3 { color: var(--secondary); }
.live-provider-card--ezugi h3 { color: #c8960a; }

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

/* Live casino hero variant */
.hero--live {
    background: linear-gradient(135deg, #0a0c16 0%, #0d1a12 40%, #12142a 100%);
}

.hero--live::before {
    background-image: radial-gradient(circle, rgba(34, 197, 94, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Mobile-live split section */
.mobile-live-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.mobile-live-section__visual {
    max-width: 260px;
}

.mobile-live-section__visual img {
    width: 100%;
    height: auto;
}

.mobile-live-section__features li {
    color: #d4d0c4;
    font-size: 16px;
    padding: 4px 0;
}

.mobile-live-section__features a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

@media (min-width: 768px) {
    .mobile-live-section {
        flex-direction: row;
    }

    .mobile-live-section__visual {
        flex-shrink: 0;
    }
}

/* ============================================
   FAST WITHDRAWAL TIPS
   ============================================ */
.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.tip-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--card);
    border: 3px solid #1a1a1a;
    border-radius: 10px;
    padding: 20px;
}

.tip-card__number {
    font-family: "Dela Gothic One", sans-serif;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.tip-card h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 4px;
}

.tip-card p {
    font-size: 14px;
    color: #d4d0c4;
    margin: 0;
}

.tip-card a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

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

/* ============================================
   CRYPTO SECTION - Darker variant
   ============================================ */
.crypto-section {
    background: #08091a;
    border: 3px solid var(--border);
    border-radius: 12px;
    padding: 32px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.crypto-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 20px 0;
}

.crypto-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    color: var(--foreground);
}

.crypto-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.crypto-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: #d4d0c4;
    font-size: 15px;
}

.crypto-benefits li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

/* ============================================
   GAME SHOWS CAROUSEL
   ============================================ */
.game-shows-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px 8px;
}

.game-shows-row::-webkit-scrollbar {
    display: none;
}

.game-show-card {
    flex-shrink: 0;
    width: 200px;
    border: 3px solid #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.game-show-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 16px rgba(255, 208, 0, 0.25);
}

.game-show-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.game-show-card__name {
    display: block;
    padding: 10px 12px;
    font-weight: 700;
    font-size: 14px;
    color: var(--foreground);
    background: var(--card);
}

@media (min-width: 768px) {
    .game-shows-row {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
    }

    .game-show-card {
        width: 180px;
    }
}

/* ============================================
   WAGERING COMPARISON BLOCK
   ============================================ */
.wagering-block {
    background: var(--card);
    border: 3px solid #1a1a1a;
    border-radius: 12px;
    padding: 24px 20px;
    max-width: 800px;
    margin: 24px auto;
}

.wagering-block h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

.wagering-block p {
    color: #d4d0c4;
    font-size: 15px;
}

/* ============================================
   VIP PROGRESSION BAR
   ============================================ */
.vip-progression {
    max-width: 800px;
    margin: 0 auto;
}

.vip-bar {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 24px 0;
}

.vip-level {
    flex: 1;
    text-align: center;
    padding: 12px 4px;
    position: relative;
}

.vip-level__icon {
    font-size: 28px;
    display: block;
    margin-bottom: 4px;
}

.vip-level__name {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted-foreground);
}

.vip-connector {
    width: 20px;
    height: 3px;
    background: var(--border);
    flex-shrink: 0;
}