/* ============================================
   YEP CASINO - Design System
   Neon cyberpunk dark theme, mobile-first
   Fonts: Bebas Neue (headings) + Nunito (body)
   ============================================ */

/* ============================================
   RESET & FOUNDATION
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

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

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

ul, ol {
    list-style: none;
}

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

pre, code {
    max-width: 100%;
    overflow-x: auto;
}

input, textarea, select, button {
    max-width: 100%;
    font-family: inherit;
}

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY - Bebas Neue + Nunito Scale
   H1: 32px mobile → 48px desktop
   H2: 26px mobile → 36px desktop
   H3: 20px mobile → 24px desktop
   Body: 16px mobile → 17px desktop
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: 0;
    color: var(--foreground);
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

@media (min-width: 768px) {
    body {
        font-size: 17px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 22px;
    }
}

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

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 24px;
    }
}

/* Neon gradient text effect for hero headlines and bonus amounts */
.neon-text {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.neon-text-pink {
    background: linear-gradient(135deg, #ff2d78, #ff6baa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.neon-text-cyan {
    background: linear-gradient(135deg, #00d4ff, #7b2fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   LAYOUT - Container & Section Spacing
   Max-width: 1140px, 8px base grid unit
   Section gaps: 48px mobile / 80px desktop
   ============================================ */
.container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

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

.section {
    padding-top: 48px;
    padding-bottom: 48px;
}

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

/* Full-bleed section for heroes and CTAs */
.section--full-bleed {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 768px) {
    .section--full-bleed {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* SEO content block - narrow for readability */
.seo-content {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

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

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

.seo-content p {
    margin-bottom: 16px;
    color: var(--card-foreground);
    opacity: 0.9;
}

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

.seo-content ul {
    list-style: disc;
}

.seo-content ol {
    list-style: decimal;
}

.seo-content li {
    margin-bottom: 8px;
    color: var(--card-foreground);
    opacity: 0.9;
}

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

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

.seo-content table {
    width: 100%;
    margin-top: 16px;
    margin-bottom: 24px;
}

.seo-content blockquote {
    border-left: 3px solid var(--primary);
    padding-left: 16px;
    margin: 24px 0;
    font-style: italic;
    color: var(--muted-foreground);
}

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

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

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

/* ============================================
   HEADER - Fixed sticky, frosted glass dark bg
   Z-index: 1000, 64px height
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(13, 13, 26, 0.92);
    border-bottom: 1px solid rgba(255, 45, 120, 0.15);
    transition: background 0.3s ease;
}

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

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

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

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

.logo-text {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--foreground);
    line-height: 1;
}

.logo-highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: "Nunito", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground);
    padding: 8px 12px;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

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

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

.btn-login {
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    padding: 8px 16px;
    border-radius: 8px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.btn-login:hover {
    color: var(--primary);
}

.btn-register {
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-foreground);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 8px 20px;
    border-radius: 8px;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 16px rgba(255, 45, 120, 0.3);
}

.btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(255, 45, 120, 0.5);
    color: #fff;
}

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

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

    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

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

.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: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile nav drawer */
@media (max-width: 767px) {
    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        background: var(--background);
        overflow-y: auto;
        padding: 16px;
    }

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

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

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

    /* Mobile CTA inside drawer */
    .main-nav::after {
        content: "";
        display: block;
        padding-top: 16px;
    }

    .mobile-nav-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-top: 16px;
        border-top: 1px solid var(--border);
        margin-top: auto;
    }

    .mobile-nav-cta .btn-login,
    .mobile-nav-cta .btn-register {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        text-align: center;
        font-size: 16px;
    }
}

/* ============================================
   BUTTONS - CTA system with neon glow
   Primary: pink-to-purple gradient
   Min height: 48px, pulse animation
   ============================================ */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 32px;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 20px rgba(255, 45, 120, 0.3);
    white-space: nowrap;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(255, 45, 120, 0.5);
    color: #fff;
}

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

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

.btn-cta--full {
    width: 100%;
}

/* Persistent pulse glow animation */
.btn-cta--pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 16px rgba(255, 45, 120, 0.3);
    }
    50% {
        box-shadow: 0 0 32px rgba(255, 45, 120, 0.6), 0 0 48px rgba(123, 47, 255, 0.2);
    }
}

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

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.2);
    color: var(--secondary);
}

/* Pill button for category links */
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 20px;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn-pill:hover,
.btn-pill.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 45, 120, 0.08);
}

.btn-pill.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-color: transparent;
}

/* ============================================
   CARDS - Dark elevated surface
   Base: #1a1a2e, border: #3a3a5c, radius: 12px
   ============================================ */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    min-width: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    border-color: rgba(255, 45, 120, 0.3);
}

/* ============================================
   GAME CARD GRID
   2-col mobile, 3-col tablet, 4-col desktop
   Staggered fade-in-up on scroll
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

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

.game-card {
    display: block;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    min-width: 0;
    transition: transform 0.2s ease-out, border-color 0.2s ease-out, box-shadow 0.2s ease-out;
}

.game-card:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 45, 120, 0.2);
}

.game-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    font-family: "Nunito", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 3px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--input);
}

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

.game-info {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

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

.game-provider {
    font-family: "Nunito", sans-serif;
    font-size: 12px;
    color: var(--muted-foreground);
}

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

/* ============================================
   BONUS CARD
   Oversized neon gradient amount, CTA at bottom
   Pink/cyan/purple accent variants
   ============================================ */
.bonus-cards-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

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


}

.bonus-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 16px 16px 0 0;
}

.bonus-card--pink::before {
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.bonus-card--cyan::before {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.bonus-card--purple::before {
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.bonus-card--pink {
    box-shadow: 0 0 24px rgba(255, 45, 120, 0.08);
}

.bonus-card--cyan {
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.08);
}

.bonus-card--purple {
    box-shadow: 0 0 24px rgba(123, 47, 255, 0.08);
}

.bonus-card__amount {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: 36px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

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

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

.bonus-card__title {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: 20px;
    color: var(--card-foreground);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.bonus-card__desc {
    font-size: 15px;
    color: var(--card-foreground);
    opacity: 0.85;
    margin-bottom: 12px;
    line-height: 1.5;
}

.bonus-card__game {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.bonus-card__deposit {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 16px;
}

.bonus-card .btn-cta {
    margin-top: auto;
    width: 100%;
}

/* Wide bonus card variant */
.bonus-card--wide {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   CTA BANNER - Full-bleed conversion section
   Dark gradient bg, centered content, pulse CTA
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a0a2e 50%, #0d0d1a 100%);
    padding: 64px 16px;
    text-align: center;
}

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

.cta-banner__inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner__headline {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: 26px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
}

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

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

.cta-banner__text {
    font-size: 16px;
    color: #e8e8f0;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .cta-banner__text {
        font-size: 17px;
    }
}

.cta-banner__micro {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 16px;
}

/* ============================================
   FAQ ACCORDION
   Dark cards, pink left border on active
   Chevron rotation, smooth expand
   ============================================ */
.faq-section {
    max-width: 780px;
    margin: 0 auto;
}

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

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.faq-item.is-active {
    border-left-color: var(--primary);
}

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

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

.faq-chevron {
    flex-shrink: 0;
    color: var(--muted-foreground);
    transition: transform 0.3s ease-in-out;
}

.faq-item.is-active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

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

.faq-answer > div {
    padding: 0 20px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--card-foreground);
    opacity: 0.9;
}

@media (min-width: 768px) {
    .faq-answer > div {
        padding: 0 24px 24px;
        font-size: 16px;
    }
}

.faq-answer a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

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

/* ============================================
   ICON FEATURE ROW
   2-col mobile, horizontal row desktop
   Icon + title + description, centered items
   ============================================ */
.feature-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    text-align: center;
}

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

@media (min-width: 1024px) {
    .feature-row {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 24px;
    }
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
}

.feature-icon {
    font-size: 36px;
    line-height: 1;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon--cyan {
    color: var(--secondary);
}

.feature-icon--pink {
    color: var(--primary);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-title {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: 18px;
    color: var(--foreground);
    text-transform: uppercase;
    line-height: 1.2;
}

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

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

/* Fix: links inside feature-desc need underline for a11y contrast */
.feature-desc a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (min-width: 768px) {
    .feature-desc {
        font-size: 15px;
    }
}

/* ============================================
   PAYMENT / PROVIDER STRIP
   Horizontal row with monochrome logos
   0.6 opacity → 1.0 on hover
   ============================================ */
.payment-strip {
    padding: 8px 0;
}

.payment-strip__label {
    display: block;
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--muted-foreground);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-align: center;
}

.payment-strip__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

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

.payment-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

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

.payment-strip__item img {
    height: 40px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.dark .payment-strip__item img {
    filter: brightness(0) invert(1);
}

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

/* Fix: improved contrast for payment strip names - was #62627b on #0d0d1a (3.26:1), now brighter */
.payment-strip__name {
    font-size: 11px;
    font-weight: 600;
    color: var(--foreground);
    text-align: center;
    white-space: nowrap;
}

.payment-strip__trailing {
    font-size: 14px;
    color: var(--muted-foreground);
    font-style: italic;
    white-space: nowrap;
}

/* Larger variant for premium providers */
.payment-strip--large .payment-strip__item img {
    height: 60px;
    max-width: 120px;
}

/* ============================================
   COMPARISON TABLE
   Desktop: traditional table, Mobile: stacked cards
   Highlighted row with pink accent
   ============================================ */
.comparison-table-wrapper {
    width: 100%;
    min-width: 0;
}

/* Desktop table - hidden on mobile */
.comparison-table {
    display: none;
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .comparison-table {
        display: table;
    }

    .comparison-cards {
        display: none;
    }
}

.comparison-table thead {
    background: #252540;
}

.dark .comparison-table thead {
    background: #252540;
}

.comparison-table th {
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary);
    padding: 14px 16px;
    text-align: left;
    white-space: nowrap;
}

.comparison-table td {
    font-size: 15px;
    padding: 12px 16px;
    color: var(--card-foreground);
    border-top: 1px solid var(--border);
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(37, 37, 64, 0.3);
}

.comparison-table .row-highlighted {
    background: rgba(255, 45, 120, 0.06);
    border-top: 2px solid var(--primary);
}

.comparison-table .row-highlighted td {
    font-weight: 600;
}

/* Mobile card layout - hidden on desktop */
.comparison-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.comparison-card.card-highlighted {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: 0 0 16px rgba(255, 45, 120, 0.1);
}

.comparison-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.comparison-card__row:last-child {
    border-bottom: none;
}

.comparison-card__label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary);
}

.comparison-card__value {
    font-size: 15px;
    color: var(--card-foreground);
    text-align: right;
}

/* Check/X marks */
.check-yes {
    color: #22c55e;
    font-weight: 700;
    font-size: 18px;
}

.check-no {
    color: #ef4444;
    font-weight: 700;
    font-size: 18px;
}

.comparison-note {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 12px;
    text-align: center;
}

.comparison-note a {
    color: var(--secondary);
    text-decoration: underline;
}

/* ============================================
   HERO SECTION - Full-bleed with animated bg
   Gradient cycling navy → purple → midnight (15s)
   ============================================ */
.hero {
    position: relative;
    padding: 64px 16px;
    padding-top: calc(var(--header-height) + 48px);
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d0d1a, #1a0a2e, #0a1628, #0d0d1a);
    background-size: 400% 400%;
    animation: hero-gradient 15s ease infinite;
}

@keyframes hero-gradient {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

.hero__content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero__headline {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: 32px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .hero {
        padding: 80px 24px;
        padding-top: calc(var(--header-height) + 64px);
        min-height: 70vh;
    }

    .hero__headline {
        font-size: 42px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 100px 24px;
        padding-top: calc(var(--header-height) + 80px);
    }

    .hero__headline {
        font-size: 52px;
    }
}

.hero__subtitle {
    font-size: 16px;
    color: #e8e8f0;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }
}

.hero__trust {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 16px;
}

/* Hero with mascot layout */
.hero--split {
    text-align: left;
}

@media (min-width: 768px) {
    .hero--split .hero__inner {
        display: flex;
        align-items: center;
        gap: 40px;
        max-width: 1140px;
        margin: 0 auto;
    }

    .hero--split .hero__content {
        flex: 1;
        min-width: 0;
    }

    .hero--split .hero__mascot {
        flex: 0 0 auto;
        max-width: 320px;
    }
}

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

@media (min-width: 768px) {
    .hero__mascot img {
        max-width: 320px;
        margin: 0;
    }
}

/* ============================================
   VIP TIER VISUALIZATION
   Horizontal scroll on mobile, flex on desktop
   ============================================ */
.vip-tiers {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 4px;
    scrollbar-width: thin;
}

.vip-tiers:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 8px;
}

.vip-tiers::-webkit-scrollbar {
    height: 4px;
}

.vip-tiers::-webkit-scrollbar-track {
    background: var(--input);
    border-radius: 2px;
}

.vip-tiers::-webkit-scrollbar-thumb {
    background: var(--muted);
    border-radius: 2px;
}

.vip-tier {
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 90px;
    padding: 12px 8px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--card);
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vip-tier:hover {
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(123, 47, 255, 0.15);
}

.vip-tier__icon {
    font-size: 24px;
    line-height: 1;
}

.vip-tier__name {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: 14px;
    color: var(--card-foreground);
    white-space: nowrap;
}

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

/* High tier glow */
.vip-tier--high {
    border-color: rgba(123, 47, 255, 0.4);
    background: linear-gradient(135deg, rgba(123, 47, 255, 0.05), rgba(255, 45, 120, 0.05));
}

@media (min-width: 1024px) {
    .vip-tiers {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
    }

    .vip-tier {
        min-width: 100px;
        padding: 16px 12px;
    }
}

/* ============================================
   ENGAGEMENT PATTERNS
   Callout, summary/TL;DR, stat highlight,
   pull quote, details/summary
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
}

.summary-box__title {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.summary-box p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--card-foreground);
}

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

.callout-box--info {
    border-left-color: var(--secondary);
    background: rgba(0, 212, 255, 0.04);
}

.callout-box--warning {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.04);
}

.callout-box p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--card-foreground);
}

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

.stat-highlight__number {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: 48px;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

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

/* Pull quote */
.pull-quote {
    text-align: center;
    padding: 32px 24px;
    margin: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pull-quote__text {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--foreground);
    font-style: italic;
}

@media (min-width: 768px) {
    .pull-quote__text {
        font-size: 22px;
    }
}

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

/* Styled details/summary */
details.expandable {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin: 16px 0;
    overflow: hidden;
}

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

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

details.expandable summary::after {
    content: "+";
    font-size: 20px;
    color: var(--muted-foreground);
    transition: transform 0.3s ease;
}

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

details.expandable > div,
details.expandable > p {
    padding: 0 20px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--card-foreground);
    opacity: 0.9;
}

/* ============================================
   CRO PATTERNS
   Trust badges, social proof, category pills
   ============================================ */

/* Category pill row */
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    white-space: nowrap;
}

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

/* ============================================
   FOOTER - 4-column grid, dark background
   ============================================ */
.site-footer {
    background: #080810;
    border-top: 1px solid rgba(255, 45, 120, 0.1);
    padding: 48px 0 24px;
    color: var(--muted-foreground);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
}

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

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

.footer-brand .footer-logo {
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-foreground);
    max-width: 280px;
}

.footer-heading {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: 18px;
    color: var(--foreground);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 14px;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
    padding: 4px 0;
}

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

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

.payment-icon {
    font-size: 24px;
    opacity: 0.7;
}

/* Footer trust badges */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge-18,
.badge-licence,
.badge-ssl {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid var(--border);
    color: var(--muted-foreground);
    white-space: nowrap;
}

.badge-18 {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.badge-licence {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.2);
    color: var(--secondary);
}

.badge-ssl {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

/* Footer bottom */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-copyright {
    font-size: 12px;
    line-height: 1.6;
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   SCROLL ANIMATIONS
   Fade-in-up on scroll via IntersectionObserver
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

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

/* ============================================
   MAIN CONTENT - Push below fixed header
   ============================================ */
#main-content {
    padding-top: var(--header-height);
}

/* Pages with hero sections remove double padding */
.page-has-hero #main-content {
    padding-top: 0;
}

/* Hero section - no double padding since hero handles it */
.hero + .section {
    /* Ensure seamless flow from hero to first content section */
}

/* SEO content inline tables */
.seo-content table {
    border-collapse: collapse;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.seo-content table th,
.seo-content table td {
    font-size: 14px;
}

@media (max-width: 600px) {
    .seo-content table th,
    .seo-content table td {
        font-size: 13px;
        padding: 8px 10px !important;
        white-space: nowrap;
    }
}

/* ============================================
   RESPONSIVE UTILITY HELPERS
   ============================================ */
.text-center {
    text-align: center;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-48 {
    margin-bottom: 48px;
}

.mt-16 {
    margin-top: 16px;
}

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

.hide-mobile {
    display: none;
}

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

    .hide-desktop {
        display: none;
    }
}

/* Grid helpers for 2-up and 3-up layouts */
.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

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

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

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

/* ============================================
   STEP GUIDE (for Paysafecard 4-step, etc.)
   Numbered steps with neon accents
   ============================================ */
.step-guide {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    counter-reset: step;
}

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

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

.step-item {
    counter-increment: step;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    position: relative;
}

.step-item::before {
    content: counter(step);
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: 36px;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.step-item__icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.step-item__title {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: 18px;
    color: var(--card-foreground);
    margin-bottom: 8px;
    text-transform: uppercase;
}

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

.step-item__desc a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.step-item__desc a:hover {
    color: var(--primary);
}

/* ============================================
   BONUSES PAGE - Hero badge, feature cards
   ============================================ */
.hero--bonus {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero__badge {
    display: inline-block;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 999px;
    padding: 6px 20px;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.hero__explosion {
    position: relative;
    z-index: 1;
    margin-top: 24px;
}

.hero__explosion-img {
    max-width: 320px;
    margin: 0 auto;
    filter: drop-shadow(0 0 40px rgba(255, 45, 120, 0.3));
}

@media (min-width: 768px) {
    .hero__explosion-img {
        max-width: 440px;
    }
}

@media (min-width: 1024px) {
    .hero__explosion-img {
        max-width: 520px;
    }
}

/* Bonus feature cards (cashback, wheel, sports) */
.bonus-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.bonus-feature-card__icon {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 8px;
}

.bonus-feature-card__title {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: 22px;
    color: var(--card-foreground);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 4px;
}

.bonus-feature-card__desc {
    font-size: 15px;
    color: var(--card-foreground);
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.bonus-feature-card__desc a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bonus-feature-card__desc a:hover {
    color: var(--primary);
}

/* Ensure all inline text links are distinguishable (a11y: link-in-text-block) */
.text-center a,
p a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bonus-feature-card .btn-cta {
    margin-top: auto;
    width: 100%;
}

/* ============================================
   SLOTS PAGE - Hero reel animation, demo badge,
   crash card glow, filter grid integration
   ============================================ */

/* Slots hero - reel strip background animation */
.hero--slots {
    overflow: hidden;
}

.slots-reel-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.08;
    display: flex;
    gap: 8px;
    justify-content: center;
    pointer-events: none;
}

.reel-strip {
    width: 80px;
    height: 200%;
    background: repeating-linear-gradient(
        0deg,
        var(--primary) 0px,
        var(--primary) 60px,
        transparent 60px,
        transparent 80px,
        var(--secondary) 80px,
        var(--secondary) 140px,
        transparent 140px,
        transparent 160px,
        var(--accent) 160px,
        var(--accent) 220px,
        transparent 220px,
        transparent 240px
    );
    border-radius: 8px;
    animation: reel-spin 4s linear infinite;
}

.reel-strip--1 { animation-duration: 3.5s; }
.reel-strip--2 { animation-duration: 4.2s; animation-delay: -1s; }
.reel-strip--3 { animation-duration: 3.8s; animation-delay: -2s; }

@keyframes reel-spin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@media (min-width: 768px) {
    .reel-strip {
        width: 100px;
    }
}

/* Demo mode badge */
.demo-badge-row {
    text-align: center;
}

.demo-badge {
    display: inline-block;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 999px;
    padding: 8px 20px;
    letter-spacing: 0.3px;
}

/* Crash game card - animated gradient border */
.game-card--crash {
    border: 2px solid transparent;
    background-image: linear-gradient(var(--card), var(--card)),
                      linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.game-card--crash:hover {
    box-shadow: 0 0 24px rgba(255, 45, 120, 0.25), 0 0 48px rgba(0, 212, 255, 0.1);
}

/* Crash games grid - 3 columns on tablet+ */
.game-grid--crash {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ============================================
   LIVE CASINO PAGE - Hero overlay, category
   cards, provider grid
   ============================================ */

/* Live Casino Hero - premium dark overlay with gold undertones */
.hero--live {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0d1a, #1a0a2e, #1a1428, #0a1628, #0d0d1a);
    background-size: 400% 400%;
    animation: hero-gradient 15s ease infinite;
}

.hero--live__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(123, 47, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 45, 120, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* Live category cards grid */
.live-category-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

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

.live-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    position: relative;
    overflow: hidden;
}

.live-category-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.live-category-card__accent--pink {
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.live-category-card__accent--cyan {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.live-category-card__accent--purple {
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.live-category-card__accent--mixed {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.live-category-card__icon {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 12px;
}

.live-category-card__title {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: 26px;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.15;
}

@media (min-width: 768px) {
    .live-category-card__title {
        font-size: 30px;
    }
}

.live-category-card__variants {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.live-category-card__variants li {
    font-size: 14px;
    font-weight: 600;
    color: var(--card-foreground);
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.live-category-card__desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.live-category-card__desc a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.live-category-card__desc a:hover {
    color: var(--primary);
}

/* Live provider grid */
.live-provider-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

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

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

.live-provider-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.live-provider-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.live-provider-item__icon {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 12px;
}

.live-provider-item__name {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: 20px;
    color: var(--foreground);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 8px;
}

.live-provider-item__desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.live-provider-item__desc a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.live-provider-item__desc a:hover {
    color: var(--primary);
}

/* ============================================
   LIVE BADGE - Pulsing red/pink for live games
   ============================================ */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 45, 120, 0.35);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
    letter-spacing: 0.5px;
}

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

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

/* ============================================
   CATEGORY FILTER TABS
   Horizontal scroll on mobile, wrap on desktop
   ============================================ */
.filter-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 12px;
    scrollbar-width: none;
}

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

.filter-tab {
    scroll-snap-align: start;
    flex-shrink: 0;
}

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

/* ============================================
   TWO-COLUMN CONTENT SECTION
   Text + visual side by side on desktop
   ============================================ */
.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

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

.split-section__text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--card-foreground);
    opacity: 0.9;
    margin-bottom: 16px;
}

.split-section__text p a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.split-section__text p a:hover {
    color: var(--primary);
}

.split-section__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-section__visual img {
    max-width: 100%;
    border-radius: 16px;
}