/* ============================================
   SLOTLOUNGE CASINO - DESIGN SYSTEM
   Lounge-noir aesthetic: midnight navy, electric blue, antique gold
   ============================================ */

/* ============================================
   RESET & OVERFLOW SAFETY
   ============================================ */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(59,158,255,0.08), transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(212,168,90,0.06), transparent 50%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.table-wrapper:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

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

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

section { overflow: clip; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 20px;
    z-index: 9999;
    font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ============================================
   TYPOGRAPHY
   Cormorant Garamond display + Manrope body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 0.5em;
    color: var(--foreground);
    letter-spacing: 0.005em;
}

h1 {
    font-size: clamp(2.4rem, 6vw + 1rem, 4.5rem);
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.01em;
}
h2 { font-size: clamp(1.85rem, 3.5vw + 0.5rem, 3.25rem); }
h3 { font-size: clamp(1.3rem, 1.5vw + 0.6rem, 2rem); font-weight: 500; }
h4 { font-size: clamp(1.1rem, 1vw + 0.6rem, 1.4rem); font-weight: 600; }

p { margin: 0 0 1.25em; }

.eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 600;
    margin: 0 0 12px;
}

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

.italic-display {
    font-family: var(--font-display);
    font-style: italic;
}

/* ============================================
   LAYOUT - Container & sections
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: clamp(16px, 4vw, 32px);
    padding-right: clamp(16px, 4vw, 32px);
}

.section {
    padding-top: var(--section-pad-y);
    padding-bottom: var(--section-pad-y);
    position: relative;
}

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

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}
.section-header p { color: var(--muted-foreground); font-size: 1.05rem; }

.text-center { text-align: center; }

/* ============================================
   ART-DECO ARCH FRAME - signature decorative element
   ============================================ */
.arch-frame {
    position: relative;
    border: 1px solid var(--border-gold);
    border-radius: 200px 200px 18px 18px;
    background: linear-gradient(180deg, var(--card) 0%, var(--background-2) 100%);
    box-shadow: var(--shadow-gold), inset 0 0 60px rgba(59,158,255,0.08);
    overflow: hidden;
}
.arch-frame::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(212,168,90,0.18);
    border-radius: inherit;
    pointer-events: none;
}

.gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    border: 0;
    margin: 32px 0;
    opacity: 0.6;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    user-select: none;
    line-height: 1;
    white-space: nowrap;
    position: relative;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
    background: linear-gradient(180deg, #4eb1ff 0%, #2b85e0 100%);
    color: #051028;
    border-color: rgba(212,168,90,0.55);
    box-shadow: 0 0 0 1px rgba(212,168,90,0.35), 0 8px 24px var(--primary-glow);
}
.btn-primary:hover {
    box-shadow: 0 0 0 1px rgba(212,168,90,0.9), 0 10px 30px rgba(59,158,255,0.55);
    border-color: var(--secondary);
}

.btn-secondary {
    background: linear-gradient(180deg, #e6c074 0%, #b8893a 100%);
    color: #1a1208;
    border-color: rgba(212,168,90,0.7);
    box-shadow: 0 6px 20px rgba(184,137,58,0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: rgba(240,233,216,0.25);
}
.btn-ghost:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-lg {
    min-height: 56px;
    padding: 18px 36px;
    font-size: 16px;
}
.btn-sm {
    min-height: 40px;
    padding: 10px 18px;
    font-size: 14px;
}
.btn-block { width: 100%; }

.btn-pulse {
    animation: btn-pulse 4s ease-in-out infinite;
}
@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 0 0 1px rgba(212,168,90,0.35), 0 8px 24px rgba(59,158,255,0.25); }
    50% { box-shadow: 0 0 0 1px rgba(212,168,90,0.9), 0 10px 36px rgba(59,158,255,0.6); }
}

@media (prefers-reduced-motion: reduce) {
    .btn-pulse { animation: none; }
    html { scroll-behavior: auto; }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 9, 26, 0.92);
    border-bottom: 1px solid var(--border-gold);
    height: var(--header-h);
}
@media (min-width: 1024px) {
    .site-header {
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }
}

.header-inner {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    height: 100%;
    padding: 0 clamp(16px, 4vw, 32px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

body { padding-top: var(--header-h); }

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

.brand-monogram {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.brand-monogram-arch {
    position: absolute;
    inset: 0;
    border: 1.5px solid var(--secondary);
    border-radius: 50% 50% 6px 6px;
    background: radial-gradient(circle at 50% 70%, rgba(59,158,255,0.25), transparent 70%);
}
.brand-monogram-text {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 19px;
    color: var(--secondary);
    z-index: 1;
}
.brand-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}
.brand-text-main {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--foreground);
}
.brand-text-sub {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-top: 4px;
}

.main-nav { display: none; }

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 28px;
        flex: 1;
        justify-content: flex-end;
    }
    .nav-list {
        display: flex;
        align-items: center;
        gap: 6px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .nav-list a {
        display: inline-flex;
        align-items: center;
        padding: 10px 14px;
        font-size: 14.5px;
        font-weight: 500;
        color: var(--foreground);
        text-decoration: none;
        position: relative;
        transition: color 0.2s ease;
    }
    .nav-list a:hover { color: var(--secondary); text-decoration: none; }
    .nav-list a::after {
        content: "";
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 4px;
        height: 1px;
        background: var(--secondary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }
    .nav-list a:hover::after { transform: scaleX(1); }
    .nav-cta {
        display: flex;
        gap: 10px;
        align-items: center;
        margin-left: 8px;
    }
}

/* Mobile menu toggle (hamburger) */
.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 1001;
    position: relative;
}
.menu-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--secondary);
    transition: transform 0.3s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

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

/* Mobile drawer */
@media (max-width: 1023.98px) {
    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        background-image:
            radial-gradient(ellipse at 50% 0%, rgba(59,158,255,0.12), transparent 60%),
            radial-gradient(ellipse at 50% 100%, rgba(212,168,90,0.08), transparent 60%);
        flex-direction: column;
        align-items: stretch;
        padding: 24px clamp(16px, 4vw, 32px) 32px;
        overflow-y: auto;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        gap: 0;
    }
    .main-nav.is-open { transform: translateX(0); }
    .nav-list {
        list-style: none;
        margin: 0 0 24px;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .nav-list li {
        border-bottom: 1px solid var(--border);
    }
    .nav-list a {
        display: flex;
        align-items: center;
        min-height: 56px;
        padding: 14px 8px;
        font-family: var(--font-display);
        font-size: 22px;
        font-weight: 500;
        color: var(--foreground);
        text-decoration: none;
    }
    .nav-list a::before {
        content: "";
        width: 6px;
        height: 6px;
        background: var(--secondary);
        border-radius: 50%;
        margin-right: 14px;
        opacity: 0.6;
    }
    .nav-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: auto;
        padding-top: 24px;
    }
    .nav-cta .btn { width: 100%; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--background-2);
    border-top: 1px solid var(--border-gold);
    padding: 64px 0 32px;
    margin-top: 80px;
    position: relative;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary) 50%, transparent);
    opacity: 0.5;
}
.footer-inner {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
        gap: 32px;
    }
}
.footer-col h2.footer-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--secondary);
    margin: 0 0 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 14.5px;
    transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--secondary); text-decoration: none; }

.footer-tagline {
    color: var(--muted-foreground);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 16px 0 20px;
    max-width: 380px;
}
.footer-license {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.license-badge {
    display: inline-flex;
    flex-direction: column;
    padding: 8px 14px;
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    background: rgba(212,168,90,0.05);
}
.license-badge-title {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--secondary);
    line-height: 1.2;
}
.license-badge-id {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--muted-foreground);
    margin-top: 2px;
    letter-spacing: 0.04em;
}
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    background: rgba(232,67,138,0.06);
}
.payment-list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 8px !important;
}
.pay-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 12px;
    color: var(--muted-foreground);
    font-weight: 500;
    letter-spacing: 0.02em;
}
.footer-warning {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(232,67,138,0.04);
    margin-bottom: 24px;
}
.footer-warning p {
    margin: 0;
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.55;
}
.footer-warning a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.copyright, .footer-domain {
    margin: 0;
    font-size: 12px;
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
    font-variant: small-caps;
}

/* ============================================
   GAME CARD
   ============================================ */
.game-card {
    height: 100%;
    display: flex;
}
.game-card-frame {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(180deg, var(--card) 0%, var(--background-2) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 14px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: inset 0 0 30px rgba(59,158,255,0.05);
    min-width: 0;
}
.game-card-frame:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold-strong);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), inset 0 0 30px rgba(59,158,255,0.12);
}
.game-card-thumb {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 100px 100px 8px 8px;
    margin-bottom: 14px;
    background: var(--muted);
}
.game-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.game-card-frame:hover .game-card-thumb img { transform: scale(1.05); }
.game-card-arch {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212,168,90,0.4);
    border-radius: inherit;
    pointer-events: none;
}
.game-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 4px 10px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
}
.game-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 4px 4px;
}
.game-card-title {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    margin: 0;
    color: var(--foreground);
    line-height: 1.2;
}
.game-card-provider {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--secondary);
    margin: 0 0 12px;
    font-weight: 600;
}
.game-card-cta { width: 100%; }

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
@media (min-width: 768px) {
    .games-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
}
@media (min-width: 1024px) {
    .games-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
}

/* ============================================
   BONUS CARD
   ============================================ */
.bonus-card {
    position: relative;
    background: linear-gradient(180deg, var(--card) 0%, var(--background) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 100px 100px 16px 16px;
    padding: 36px 24px 24px;
    text-align: center;
    box-shadow: var(--shadow-gold), inset 0 0 50px rgba(59,158,255,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
}
.bonus-card::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(212,168,90,0.2);
    border-radius: inherit;
    pointer-events: none;
}
.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 0 1px var(--border-gold-strong), 0 16px 40px rgba(0,0,0,0.5), inset 0 0 60px rgba(59,158,255,0.15);
}
.bonus-card-tier {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(212,168,90,0.12);
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 16px;
}
.bonus-card-label {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 10px;
}
.bonus-card-amount {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    font-weight: 600;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 8px 0 14px;
    font-variant-numeric: tabular-nums;
}
.bonus-card-desc {
    color: var(--muted-foreground);
    font-size: 14.5px;
    margin: 0 0 18px;
    line-height: 1.55;
    max-width: 280px;
}
.bonus-card-code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1.5px dashed var(--border-gold-strong);
    border-radius: 6px;
    background: rgba(212,168,90,0.05);
    margin-bottom: 14px;
}
.bonus-card-code-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}
.bonus-card-code-value {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 0.08em;
}
.bonus-card-wager {
    font-size: 12px;
    color: var(--muted-foreground);
    margin: 0 0 20px;
    letter-spacing: 0.02em;
}
.bonus-card-cta { margin-top: auto; width: 100%; }
.bonus-card-mascot {
    position: absolute;
    bottom: 8px;
    right: -8px;
    width: 90px;
    height: auto;
    opacity: 0.85;
    pointer-events: none;
}

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

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: 64px clamp(16px, 4vw, 32px);
    margin: 64px auto;
    max-width: var(--container-max);
    background:
        radial-gradient(ellipse at 30% 50%, rgba(59,158,255,0.18), transparent 60%),
        linear-gradient(135deg, var(--background-2) 0%, var(--card) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 18px;
    box-shadow: var(--shadow-gold);
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(212,168,90,0.18);
    border-radius: inherit;
    pointer-events: none;
}
@media (min-width: 1024px) {
    .cta-banner { padding: 96px 64px; }
}
.cta-banner-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 1024px) {
    .cta-banner-inner {
        flex-direction: row;
        text-align: left;
    }
}
.cta-banner-mascot {
    flex-shrink: 0;
    max-width: 220px;
}
.cta-banner-mascot img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(59,158,255,0.3));
}
.cta-banner-content {
    flex: 1;
    min-width: 0;
}
.cta-banner-headline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin: 0 0 12px;
    line-height: 1.15;
}
.cta-banner-sub {
    color: var(--muted-foreground);
    font-size: 1.05rem;
    margin: 0 0 24px;
    max-width: 540px;
}
@media (max-width: 1023px) {
    .cta-banner-sub { margin-left: auto; margin-right: auto; }
}
.cta-banner-note {
    margin: 14px 0 0;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--muted-foreground);
    font-variant: small-caps;
}

/* ============================================
   PROVIDERS STRIP
   ============================================ */
.providers-strip {
    padding: 48px 0;
    background: var(--background-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}
.providers-strip-inner {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}
.providers-title {
    text-align: center;
    margin: 0 0 24px;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 600;
}
.providers-row {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    align-items: center;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.providers-row::-webkit-scrollbar { display: none; }
.provider-item {
    flex-shrink: 0;
    padding: 0 28px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 0.02em;
    border-right: 1px solid rgba(212,168,90,0.2);
    line-height: 1;
    white-space: nowrap;
}
.provider-item:last-child { border-right: 0; }
@media (min-width: 1024px) {
    .providers-row {
        justify-content: center;
        overflow: visible;
        mask-image: none;
        -webkit-mask-image: none;
    }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}
.faq-heading {
    text-align: center;
    margin-bottom: 32px;
}
.faq-list {
    display: flex;
    flex-direction: column;
}
.faq-item {
    border-bottom: 1px solid var(--border-gold);
    padding: 0;
    transition: border-color 0.3s ease;
}
.faq-item[open] {
    border-bottom-color: var(--border-gold-strong);
    border-left: 2px solid var(--primary);
    padding-left: 14px;
    background: rgba(59,158,255,0.03);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    font-weight: 500;
    color: var(--foreground);
    transition: color 0.2s ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--secondary); }
.faq-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--secondary);
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--secondary);
    color: var(--secondary-foreground);
}
.faq-answer {
    padding: 0 0 24px;
    color: var(--muted-foreground);
    line-height: 1.7;
    animation: faq-reveal 0.4s ease-out;
}
.faq-answer p { margin: 0 0 12px; }
.faq-answer p:last-child { margin: 0; }
@keyframes faq-reveal {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FEATURE ITEM
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
}
.feature-item {
    text-align: center;
    padding: 16px 8px;
}
.feature-medallion {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--card) 0%, var(--background-2) 100%);
    border: 1.5px solid var(--border-gold);
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35), inset 0 0 20px rgba(59,158,255,0.1);
    position: relative;
}
.feature-medallion::after {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(212,168,90,0.2);
    border-radius: 50%;
    pointer-events: none;
}
.feature-icon {
    font-size: 32px;
    line-height: 1;
}
.feature-medallion img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}
.feature-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin: 0 0 8px;
    color: var(--foreground);
}
.feature-desc {
    color: var(--muted-foreground);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   ENGAGEMENT PATTERNS - Summary, callout, stat, quote
   ============================================ */
.summary-box {
    padding: 24px 28px;
    background: rgba(59,158,255,0.06);
    border: 1px solid var(--border-gold);
    border-left: 3px solid var(--primary);
    border-radius: 10px;
    margin: 32px 0;
}
.summary-box-title {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--secondary);
    margin: 0 0 10px;
    font-weight: 700;
}
.summary-box p { margin: 0 0 8px; color: var(--foreground); }
.summary-box p:last-child { margin: 0; }

.callout {
    padding: 18px 22px;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--secondary);
    border-radius: 8px;
    margin: 24px 0;
    color: var(--foreground);
}
.callout-warn { border-left-color: var(--accent); background: rgba(232,67,138,0.05); }
.callout-info { border-left-color: var(--primary); }

.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    background: var(--card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
}
.stat-highlight-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    font-weight: 600;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-variant-numeric: tabular-nums;
}
.stat-highlight-label {
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-top: 8px;
    font-weight: 600;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
@media (min-width: 768px) {
    .stats-row { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
}

.pull-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.4;
    color: var(--foreground);
    border-left: 3px solid var(--secondary);
    padding: 8px 0 8px 24px;
    margin: 32px 0;
    max-width: 720px;
}
.pull-quote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
    letter-spacing: 0.08em;
}

blockquote {
    margin: 24px 0;
    padding: 16px 22px;
    border-left: 3px solid var(--secondary);
    background: rgba(212,168,90,0.05);
    color: var(--foreground);
    font-style: italic;
}
blockquote cite {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--muted-foreground);
    font-style: normal;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
thead {
    background: var(--background-2);
    border-bottom: 1px solid var(--border-gold);
}
th, td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
th {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--secondary);
    letter-spacing: 0.04em;
    font-weight: 500;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgba(59,158,255,0.04); }
tr.recommended { background: rgba(212,168,90,0.08); }
tr.recommended td:first-child { border-left: 3px solid var(--secondary); }

/* Trust badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--card);
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    font-size: 13px;
    color: var(--foreground);
    letter-spacing: 0.04em;
}
.trust-badge strong { color: #f0c87a; font-weight: 700; }

/* Comparison table - recommended column highlight */
.comparison-table th.recommended-col,
.comparison-table td.recommended-col {
    background: rgba(212,168,90,0.08);
    border-left: 1px solid var(--border-gold);
    border-right: 1px solid var(--border-gold);
}

/* Hero section */
.hero {
    position: relative;
    min-height: 600px;
    padding: 48px 0 64px;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .hero { min-height: 720px; padding: 80px 0 96px; }
}
.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: auto;
}
.hero-inner {
    position: relative;
    z-index: 2;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(6,9,26,0.7), transparent 60%),
        radial-gradient(ellipse at 30% 30%, rgba(59,158,255,0.12), transparent 50%);
    pointer-events: none;
}

.curtain {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background:
        repeating-linear-gradient(90deg,
            #2a0a14 0,
            #4a1224 12px,
            #2a0a14 24px,
            #5a1830 36px);
    box-shadow: inset 0 0 80px rgba(0,0,0,0.6);
    z-index: 1;
    pointer-events: none;
}
.curtain-left { left: 0; transform-origin: left center; }
.curtain-right { right: 0; transform-origin: right center; }

/* ============================================
   ANIMATIONS - scroll reveal, letter unfurl
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-letters .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.4em) rotate(8deg);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal-letters.is-visible .letter {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll, .reveal-letters .letter {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ============================================
   UTILITY HELPERS
   ============================================ */
.flex-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.gap-sm { gap: 12px; }
.gap-md { gap: 20px; }

/* SEO content block */
.seo-block {
    max-width: 880px;
    margin: 0 auto;
    padding: 48px clamp(16px, 4vw, 32px);
    color: var(--foreground);
}
.seo-block h2 { margin-top: 32px; }
.seo-block h3 { margin-top: 24px; color: var(--secondary); }
.seo-block ul, .seo-block ol {
    padding-left: 24px;
    color: var(--foreground);
}
.seo-block li { margin-bottom: 8px; line-height: 1.7; }

/* ============================================
   HOMEPAGE-SPECIFIC STYLES
   ============================================ */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.15fr 1fr;
        gap: 56px;
    }
}
.hero-title {
    margin: 12px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hero-title-amount {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(2rem, 5vw + 0.5rem, 4rem);
    line-height: 1.05;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.005em;
}
.hero-sub {
    color: var(--muted-foreground);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 520px;
    margin: 0 0 28px;
}
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}
.hero-cta-row .btn { flex: 1 1 auto; min-width: 200px; }
@media (min-width: 768px) {
    .hero-cta-row .btn { flex: 0 0 auto; }
}
.hero-trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--muted-foreground);
}
.hero-trust li { display: flex; align-items: center; gap: 10px; }
.hero-trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
    flex-shrink: 0;
}
.hero-mascot {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
}
.hero-mascot img {
    width: 100%;
    max-width: 460px;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.6)) drop-shadow(0 0 40px rgba(59,158,255,0.18));
}

/* Live preview */
.live-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
@media (min-width: 1024px) {
    .live-preview-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 56px;
    }
}
.live-preview-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.live-preview-list li {
    padding: 12px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 2px solid var(--secondary);
    border-radius: 6px;
    color: var(--muted-foreground);
    font-size: 14.5px;
}
.live-preview-list li strong { color: var(--foreground); margin-right: 6px; }
.live-preview-visual .arch-frame { padding: 12px; }
.live-preview-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 180px 180px 12px 12px;
}

/* VIP teaser */
.vip-teaser-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
@media (min-width: 1024px) {
    .vip-teaser-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 56px;
    }
}
.vip-arch { padding: 14px; }
.vip-arch img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 200px 200px 12px 12px;
}
.vip-perks {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vip-perks li {
    padding-left: 28px;
    position: relative;
    color: var(--foreground);
    font-size: 15px;
}
.vip-perks li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-size: 14px;
}

/* Payment grid */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .payment-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
}
.payment-block {
    padding: 28px 24px;
    background: var(--card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    text-align: center;
}
.payment-block h3 {
    color: var(--secondary);
    font-style: italic;
    margin: 0 0 16px;
}
.payment-block p {
    margin: 16px 0 0;
    font-size: 13px;
    color: var(--muted-foreground);
    letter-spacing: 0.02em;
}
.payment-chips {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 16px 0;
    font-size: 13px;
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumbs li::after {
    content: "›";
    margin-left: 8px;
    color: var(--secondary);
}
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--muted-foreground); }
.breadcrumbs a:hover { color: var(--secondary); }

/* Filter bar (slots category filters) */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 0 36px;
    padding: 0 8px;
}
.filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    min-height: 44px;
    background: var(--card);
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.25s ease;
}
.filter-chip:hover {
    border-color: var(--border-gold-strong);
    color: var(--secondary);
}
.filter-chip.is-active {
    background: linear-gradient(180deg, #4eb1ff 0%, #2b85e0 100%);
    color: #051028;
    border-color: var(--border-gold-strong);
    box-shadow: 0 0 0 1px rgba(212,168,90,0.6), 0 6px 20px rgba(59,158,255,0.35);
}
.filter-empty {
    text-align: center;
    color: var(--muted-foreground);
    margin: 32px 0 0;
    font-size: 15px;
}
.filter-empty a { color: var(--secondary); }

#games-grid > div { display: contents; }
#games-grid > div.is-hidden { display: none; }
@supports not (display: contents) {
    #games-grid > div { display: block; }
}

/* Jackpot tickers */
.jackpot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
@media (min-width: 768px) {
    .jackpot-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
}
.jackpot-ticker {
    text-align: center;
    padding: 24px 16px;
    background: linear-gradient(180deg, var(--card) 0%, var(--background-2) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    box-shadow: inset 0 0 30px rgba(59,158,255,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.jackpot-ticker:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4), inset 0 0 30px rgba(212,168,90,0.1);
}
.jackpot-name {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--secondary);
    margin: 0 0 8px;
    letter-spacing: 0.02em;
}
.jackpot-amount {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 600;
    line-height: 1;
    margin: 0 0 6px;
    font-variant-numeric: tabular-nums;
}
.jackpot-meta {
    font-size: 11px;
    color: var(--muted-foreground);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 14px;
}

/* Tournament countdown */
.countdown {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 24px 0;
}
.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
    padding: 14px 12px;
    background: var(--card);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
}
.countdown-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--foreground);
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.countdown-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-top: 6px;
}