/* ============================================
   SlotMafia Casino - Design System
   1930s Chicago speakeasy aesthetic
   Gold + Oxblood + Espresso Black
   ============================================ */

/* ============================================
   RESET & SAFETY NET (overflow prevention)
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    padding: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at top left, rgba(184, 134, 11, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(139, 26, 37, 0.08) 0%, transparent 50%);
}

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

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

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

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

a:hover {
    color: #f7e3a1;
}

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

section {
    overflow: clip;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 8px;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 16px;
    z-index: 9999;
    border-radius: 4px;
    font-weight: 700;
}
.skip-link:focus {
    top: 8px;
}

/* ============================================
   TYPOGRAPHY
   Limelight = display, Inter Tight = body, Bebas Neue = numerics
   ============================================ */
.display, h1, h2, h3, .section-title, .game-card-title, .bonus-title, .cta-headline, .footer-title, .stat-label, .faq-question {
    font-family: "Limelight", "Playfair Display", Georgia, serif;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw + 1rem, 4rem);
    margin: 0 0 24px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(232, 200, 120, 0.25);
}

h2 {
    font-size: clamp(1.75rem, 3.5vw + 0.5rem, 3rem);
    margin: 0 0 20px;
    color: var(--primary);
}

h3 {
    font-size: clamp(1.25rem, 2vw + 0.25rem, 2rem);
    margin: 0 0 16px;
    color: var(--primary);
}

p {
    margin: 0 0 16px;
    color: var(--foreground);
}

.lead {
    font-size: clamp(1.05rem, 1.2vw + 0.5rem, 1.25rem);
    color: var(--muted-foreground);
    line-height: 1.7;
}

.numeric, .bonus-headline, .stat-number {
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
}

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

.text-red-gold {
    background: var(--gradient-red-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   LAYOUT - container + section rhythm
   ============================================ */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 72px 0;
    position: relative;
}

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

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-eyebrow {
    display: block;
    text-align: center;
    color: #e85a6e;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    margin-bottom: 12px;
}

/* ============================================
   HEADER & NAVIGATION
   Fixed dark velvet header with gold accents
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 8, 5, 0.92);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

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

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

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

body {
    padding-top: 72px;
}
@media (min-width: 1024px) {
    body {
        padding-top: 80px;
    }
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--foreground);
    flex-shrink: 0;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 16px rgba(232, 200, 120, 0.35);
    background: var(--card);
    object-fit: cover;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: "Limelight", serif;
    font-size: 1.15rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.04em;
}

.brand-sub {
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--muted-foreground);
    margin-top: 2px;
}

/* Mobile menu toggle (hamburger) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    padding: 12px 8px;
    background: transparent;
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--primary);
    border-radius: 1px;
    transition: transform 0.28s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Nav drawer (mobile default) */
.main-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    background-image:
        radial-gradient(ellipse at top, rgba(184, 134, 11, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, #14100b 0%, #0d0805 100%);
    z-index: 999;
    overflow-y: auto;
    padding: 24px 20px 40px;
    border-top: 1px solid var(--border-gold);
}

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

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

.nav-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 16px;
    color: var(--foreground);
    text-decoration: none;
    font-family: "Limelight", serif;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(107, 82, 38, 0.3);
    transition: color 0.28s ease, padding-left 0.28s ease;
}

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

.nav-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
    .main-nav {
        display: flex;
        position: static;
        background: transparent;
        border: none;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 24px;
        flex: 1;
        justify-content: flex-end;
        overflow: visible;
    }
    .nav-list {
        flex-direction: row;
        gap: 4px;
        align-items: center;
    }
    .nav-link {
        min-height: auto;
        padding: 8px 12px;
        font-size: 0.85rem;
        border: none;
        border-bottom: 2px solid transparent;
    }
    .nav-link:hover, .nav-link:focus-visible {
        padding: 8px 12px;
        border-bottom-color: var(--primary);
    }
    .nav-cta-group {
        flex-direction: row;
        margin-top: 0;
        gap: 8px;
    }
}

/* ============================================
   BUTTONS
   Gold gradient primary, ghost outline, pulse ring
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-family: "Limelight", serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, filter 0.28s ease;
    position: relative;
    text-align: center;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--primary-foreground);
    box-shadow: 0 6px 20px rgba(232, 200, 120, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-gold:hover, .btn-gold:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232, 200, 120, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    color: var(--primary-foreground);
    filter: brightness(1.05);
}

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

.btn-ghost:hover, .btn-ghost:focus-visible {
    background: rgba(232, 200, 120, 0.08);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-red {
    background: linear-gradient(135deg, #c8243a 0%, #8b1a25 100%);
    color: var(--secondary-foreground);
    box-shadow: 0 6px 20px rgba(200, 36, 58, 0.35);
}

.btn-block {
    width: 100%;
}

.btn-xl {
    min-height: 60px;
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-pulse::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 10px;
    border: 2px solid rgba(232, 200, 120, 0.6);
    pointer-events: none;
    animation: btn-pulse 4s ease-out infinite;
}

@keyframes btn-pulse {
    0% { transform: scale(0.95); opacity: 0; }
    20% { opacity: 1; }
    80% { transform: scale(1.15); opacity: 0; }
    100% { transform: scale(1.15); opacity: 0; }
}

/* ============================================
   FILIGREE CORNER BRACKETS
   Reusable ornament for cards, banners, sections
   ============================================ */
.filigree {
    position: absolute;
    width: 28px;
    height: 28px;
    pointer-events: none;
    border: 2px solid var(--primary);
    opacity: 0.85;
}

.filigree--tl { top: 6px; left: 6px; border-right: none; border-bottom: none; border-top-left-radius: 4px; }
.filigree--tr { top: 6px; right: 6px; border-left: none; border-bottom: none; border-top-right-radius: 4px; }
.filigree--bl { bottom: 6px; left: 6px; border-right: none; border-top: none; border-bottom-left-radius: 4px; }
.filigree--br { bottom: 6px; right: 6px; border-left: none; border-top: none; border-bottom-right-radius: 4px; }

.filigree--lg { width: 40px; height: 40px; }
.filigree--xl { width: 56px; height: 56px; }

.filigree::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(232, 200, 120, 0.6);
}
.filigree--tl::before { top: -5px; left: -5px; }
.filigree--tr::before { top: -5px; right: -5px; }
.filigree--bl::before { bottom: -5px; left: -5px; }
.filigree--br::before { bottom: -5px; right: -5px; }

/* ============================================
   CARDS - base, game, bonus
   ============================================ */
.card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    box-shadow: var(--shadow-deep);
    min-width: 0;
}

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

/* Game Card */
.game-card {
    position: relative;
    background: linear-gradient(180deg, #1a1209 0%, #0d0805 100%);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.game-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 40px rgba(232, 200, 120, 0.25), 0 0 0 1px var(--primary);
    border-color: var(--primary);
}

.game-card-frame {
    position: relative;
    padding: 12px;
}

.game-card-thumb {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 6px;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--border-gold);
}

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

.game-card:hover .game-card-thumb img {
    transform: scale(1.06);
}

.game-card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--gradient-red-gold);
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 3px;
    z-index: 2;
}

.smoke-particles {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(232, 200, 120, 0.15) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.game-card:hover .smoke-particles {
    opacity: 1;
}

.game-card-body {
    padding: 4px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.game-card-title {
    font-size: 1rem;
    margin: 0;
    color: var(--primary);
    text-shadow: 0 0 12px rgba(232, 200, 120, 0.3);
    overflow-wrap: break-word;
}

.game-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.game-card-provider {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.rtp-badge {
    background: rgba(40, 163, 107, 0.15);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 3px;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.game-card .btn {
    margin-top: auto;
}

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

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

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

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

/* Bonus Card */
.bonus-card {
    position: relative;
    background: linear-gradient(160deg, #1c130c 0%, #0d0805 100%);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    padding: 28px 24px 24px 32px;
    box-shadow: var(--shadow-deep);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.bonus-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(232, 200, 120, 0.2);
}

.bonus-stripe {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--secondary-2) 0%, var(--secondary) 100%);
}

.bonus-icon {
    font-size: 2rem;
    line-height: 1;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(232, 200, 120, 0.1);
    border: 1px solid var(--border-gold);
}

.bonus-headline {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
    line-height: 1;
    background: var(--gradient-red-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.bonus-title {
    font-size: 1.1rem;
    margin: 0;
    color: var(--primary);
}

.bonus-desc {
    color: var(--foreground);
    font-size: 0.95rem;
    margin: 0;
}

.bonus-terms {
    color: var(--muted-foreground);
    font-size: 0.8rem;
    margin: 0;
    font-style: italic;
}

.bonus-card .btn {
    margin-top: auto;
}

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

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

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

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
    background: var(--background-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    transition: background 0.28s ease;
}

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

.faq-item[open] {
    background: rgba(232, 200, 120, 0.04);
    border-left: 3px solid var(--primary);
}

.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: "Limelight", serif;
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    user-select: none;
}

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

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-family: "Inter Tight", sans-serif;
    transition: transform 0.28s ease, background 0.28s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: var(--primary-foreground);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--foreground);
    line-height: 1.7;
    animation: faq-reveal 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    margin: 0;
    color: var(--foreground);
}

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

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background:
        radial-gradient(ellipse at center, rgba(184, 134, 11, 0.18) 0%, transparent 60%),
        linear-gradient(180deg, #1a1209 0%, #0d0805 100%);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 72px 20px;
    overflow: hidden;
}

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

.cta-grain {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(232, 200, 120, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(139, 26, 37, 0.1) 0%, transparent 30%);
    pointer-events: none;
    opacity: 0.7;
}

.cta-inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
        text-align: left;
        gap: 48px;
    }
}

.cta-don img {
    max-width: 320px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

@media (min-width: 768px) {
    .cta-don img {
        max-width: 100%;
    }
}

.cta-headline {
    font-size: clamp(1.8rem, 3.5vw + 0.5rem, 3rem);
    margin: 0 0 16px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(232, 200, 120, 0.3);
}

.cta-sub {
    color: var(--foreground);
    font-size: clamp(1rem, 1vw + 0.5rem, 1.2rem);
    margin: 0 0 28px;
    line-height: 1.6;
}

.cta-fineprint {
    color: var(--muted-foreground);
    font-size: 0.8rem;
    margin: 16px 0 0;
    font-style: italic;
}

/* ============================================
   PAYMENT LOGO STRIP
   ============================================ */
.payment-strip-section {
    background: var(--background-2);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 32px 0;
}

.payment-strip-title {
    text-align: center;
    color: var(--muted-foreground);
    font-family: "Bebas Neue", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.25em;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.payment-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

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

.payment-pill {
    flex-shrink: 0;
    padding: 12px 20px;
    background: var(--card);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    color: var(--foreground);
    font-family: "Bebas Neue", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    scroll-snap-align: start;
    transition: color 0.28s ease, border-color 0.28s ease, background 0.28s ease;
    white-space: nowrap;
}

.payment-pill:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(232, 200, 120, 0.05);
}

@media (min-width: 1024px) {
    .payment-strip {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
        mask-image: none;
        -webkit-mask-image: none;
    }
}

/* ============================================
   STAT BLOCK
   ============================================ */
.stats-section {
    background: var(--background-2);
}

.stats-grid {
    position: relative;
    background: linear-gradient(180deg, #1a1209 0%, #0d0805 100%);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 32px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    box-shadow: var(--shadow-deep);
}

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

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

.stat-cell {
    text-align: center;
    padding: 12px 8px;
    position: relative;
}

@media (min-width: 1024px) {
    .stat-cell:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -1px;
        top: 20%;
        bottom: 20%;
        width: 1px;
        background: linear-gradient(180deg, transparent 0%, var(--border-gold) 50%, transparent 100%);
    }
}

.stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
    background: var(--gradient-red-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-source {
    display: block;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-style: italic;
}

/* ============================================
   HERO SECTIONS (used by pages)
   ============================================ */
.hero {
    position: relative;
    padding: 56px 0 72px;
    background:
        radial-gradient(ellipse at top right, rgba(184, 134, 11, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(139, 26, 37, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, #14100b 0%, #0d0805 100%);
    border-bottom: 1px solid var(--border-gold);
    overflow: hidden;
}

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

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        gap: 56px;
    }
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(139, 26, 37, 0.2);
    border: 1px solid var(--secondary-2);
    color: var(--secondary-2);
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.25em;
    padding: 6px 14px;
    border-radius: 3px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-sub {
    font-size: clamp(1rem, 1vw + 0.5rem, 1.2rem);
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 56ch;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border-gold);
    filter: drop-shadow(0 12px 24px rgba(232, 200, 120, 0.15));
}

.hero-cheque {
    position: absolute;
    bottom: -16px;
    left: -8px;
    background: var(--gradient-gold);
    color: var(--primary-foreground);
    padding: 12px 18px;
    border-radius: 8px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 20px rgba(232, 200, 120, 0.4);
    transform: rotate(-4deg);
}

/* ============================================
   ENGAGEMENT PATTERNS
   TL;DR, callout, pull quote, comparison
   ============================================ */
.tldr {
    background: rgba(232, 200, 120, 0.08);
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 32px 0;
}

.tldr-label {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.25em;
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.callout {
    background: var(--card);
    border: 1px solid var(--border-gold);
    border-left: 4px solid var(--secondary-2);
    border-radius: 6px;
    padding: 20px 24px;
    margin: 24px 0;
    color: var(--foreground);
}

.callout--gold {
    border-left-color: var(--primary);
}

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

.pull-quote {
    position: relative;
    margin: 40px 0;
    padding: 24px 32px;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    font-family: "Limelight", serif;
    font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.6rem);
    line-height: 1.5;
    color: var(--primary);
    text-align: center;
    font-style: italic;
    letter-spacing: 0.02em;
}

.pull-quote::before,
.pull-quote::after {
    content: "\201C";
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.6;
    line-height: 1;
}

.pull-quote::after {
    content: "\201D";
}

.pull-quote cite {
    display: block;
    margin-top: 16px;
    font-family: "Inter Tight", sans-serif;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stat-highlight {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    background: var(--card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    margin: 16px 8px;
}

.stat-highlight strong {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.2rem;
    line-height: 1;
    background: var(--gradient-red-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   TABLES - comparison, payments, jackpots
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: 24px 0;
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    background: var(--card);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.data-table thead {
    background: linear-gradient(180deg, #1a1209 0%, #0d0805 100%);
    border-bottom: 2px solid var(--primary);
}

.data-table th {
    text-align: left;
    padding: 14px 16px;
    font-family: "Limelight", serif;
    color: var(--primary);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.data-table td {
    padding: 14px 16px;
    border-top: 1px solid var(--border);
    color: var(--foreground);
    font-size: 0.95rem;
}

.data-table tbody tr:hover {
    background: rgba(232, 200, 120, 0.04);
}

.data-table tbody tr.is-recommended {
    background: rgba(40, 163, 107, 0.08);
}

.data-table tbody tr.is-recommended td:first-child {
    border-left: 3px solid var(--accent);
}

/* ============================================
   FEATURE GRID, INFO CARDS
   ============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

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

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

.info-card {
    position: relative;
    background: linear-gradient(180deg, #1a1209 0%, #0d0805 100%);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    min-width: 0;
    transition: transform 0.28s ease, border-color 0.28s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.info-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(232, 200, 120, 0.1);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 1.1rem;
    margin: 0 0 12px;
}

.info-card p {
    margin: 0;
    color: var(--foreground);
}

/* ============================================
   PROVIDERS / TRUST BADGES STRIP
   ============================================ */
.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.provider-pill {
    padding: 10px 20px;
    background: var(--card);
    border: 1px solid var(--border-gold);
    border-radius: 30px;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.15em;
    color: var(--foreground);
    font-size: 0.95rem;
}

/* ============================================
   SEO TEXT BLOCK
   ============================================ */
.seo-block {
    background: var(--background-2);
    border-top: 1px solid var(--border);
}

.seo-block .container {
    max-width: 880px;
}

.seo-block h2,
.seo-block h3 {
    text-align: left;
    margin-top: 32px;
}

.seo-block p,
.seo-block li {
    color: var(--foreground);
    line-height: 1.75;
    font-size: 1rem;
}

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

.seo-block p a:hover,
.seo-block li a:hover {
    text-decoration-thickness: 2px;
}

.seo-block ul, .seo-block ol {
    padding-left: 22px;
    margin-bottom: 20px;
}

.seo-block li {
    margin-bottom: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, #0a0604 0%, #050302 100%);
    border-top: 2px solid var(--primary);
    color: var(--foreground);
    padding: 56px 0 24px;
    margin-top: 0;
    overflow: hidden;
}

.footer-grain {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top, rgba(232, 200, 120, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.footer-inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
}

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

.footer-brand-col .brand--footer {
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.footer-title {
    font-size: 1rem;
    color: var(--primary);
    margin: 0 0 16px;
    letter-spacing: 0.08em;
}

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

.footer-list a {
    color: var(--foreground);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.28s ease, padding-left 0.28s ease;
}

.footer-list a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-payments,
.footer-badges {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pay-pill {
    display: inline-block;
    padding: 6px 12px;
    background: var(--card);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.12em;
    color: var(--foreground);
    font-size: 0.85rem;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--card);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    color: var(--foreground);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge--age {
    background: var(--secondary);
    border-color: var(--secondary-2);
    color: #fff;
    font-weight: 700;
}

.badge--ssl {
    background: rgba(40, 163, 107, 0.15);
    border-color: var(--accent);
    color: var(--accent);
}

.footer-disclaimer {
    color: var(--muted-foreground);
    font-size: 0.8rem;
    margin: 16px 0 0;
    line-height: 1.6;
}

.footer-bottom {
    position: relative;
    max-width: 1240px;
    margin: 40px auto 0;
    padding: 24px 20px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

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

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

.footer-legal {
    color: var(--muted-foreground);
    font-size: 0.8rem;
    margin: 0;
}

.age-seal {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 700;
    margin-left: 8px;
}

/* ============================================
   ANIMATIONS - scroll reveals
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--stagger, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }

/* Category filter buttons (slots page) */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.cat-btn {
    background: var(--card);
    color: var(--foreground);
    border: 1px solid var(--border-gold);
    border-radius: 30px;
    padding: 10px 18px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    min-height: 44px;
    transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.cat-btn:hover {
    background: rgba(232, 200, 120, 0.1);
    color: var(--primary);
}

.cat-btn.is-active {
    background: var(--gradient-gold);
    color: var(--primary-foreground);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(232, 200, 120, 0.3);
}

#filterable-grid > [data-cat] {
    display: contents;
}

#filterable-grid > [data-cat].is-hidden {
    display: none;
}

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

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

/* ============================================
   HOMEPAGE SPECIFIC
   ============================================ */
.hero--home .hero-image {
    position: relative;
}

.hero-trust {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 8px currentColor;
}
.dot--green { background: var(--accent); color: var(--accent); }
.dot--gold { background: var(--primary); color: var(--primary); }
.dot--red { background: var(--secondary-2); color: var(--secondary-2); }

.section-lead {
    text-align: center;
    color: var(--muted-foreground);
    max-width: 720px;
    margin: -24px auto 40px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Split feature (live casino teaser) */
.split-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

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

.split-feature-image img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-deep);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--foreground);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    color: var(--accent);
    font-weight: 700;
}

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

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

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

.hub-card {
    position: relative;
    display: block;
    background: linear-gradient(180deg, #1a1209 0%, #0d0805 100%);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 24px 56px;
    color: var(--foreground);
    text-decoration: none;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    overflow: hidden;
}

.hub-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 16px 40px rgba(232, 200, 120, 0.2);
    color: var(--foreground);
}

.hub-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(232, 200, 120, 0.1);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.hub-card h3 {
    font-size: 1.05rem;
    margin: 0 0 10px;
    color: var(--primary);
}

.hub-card p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.92rem;
    line-height: 1.6;
}

.hub-card-arrow {
    position: absolute;
    bottom: 20px;
    right: 24px;
    color: var(--primary);
    font-size: 1.4rem;
    transition: transform 0.28s ease;
}

.hub-card:hover .hub-card-arrow {
    transform: translateX(6px);
}

.hub-card--gold {
    background: linear-gradient(160deg, rgba(232, 200, 120, 0.12) 0%, #1a1209 100%);
    border-color: var(--primary);
}

.hub-card--gold h3 {
    color: var(--primary);
    text-shadow: 0 0 16px rgba(232, 200, 120, 0.4);
}

/* Section variants */
.section-bonuses {
    background: var(--background);
}

.section-slots {
    background: var(--background-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.section-why {
    background: var(--background-2);
    border-top: 1px solid var(--border);
}

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