/* ============================================
   SLOTLOUNGE CASINO - Premium Lounge-Bar Design System
   Mobile-first · Dark only · Burgundy + Gold
   ============================================ */

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

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

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

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

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

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

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

section { overflow: clip; }

/* ============================================
   BASE - html, body, typography defaults
   ============================================ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: var(--bottom-nav-height);
}

@media (min-width: 1024px) {
    body { padding-bottom: 0; }
    body { font-size: 17px; }
}

/* Background texture: warm walnut bar wood */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at top right, rgba(107, 26, 46, 0.35), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(230, 192, 104, 0.08), transparent 55%),
        var(--background);
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.15;
    color: var(--foreground);
    margin: 0 0 var(--space-md);
}

h1 { font-size: clamp(2rem, 6vw + 0.5rem, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 4vw + 0.5rem, 2.875rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.25rem, 2vw + 0.5rem, 1.875rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 var(--space-md); }

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 280ms var(--ease);
}
a:hover { color: var(--accent-bright); }

main p a {
    text-decoration: underline;
    text-decoration-color: rgba(230, 192, 104, 0.4);
    text-underline-offset: 3px;
}
main p a:hover { text-decoration-color: var(--accent-bright); }

::selection {
    background: var(--accent);
    color: var(--accent-foreground);
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--accent);
    color: var(--accent-foreground);
    padding: var(--space-sm) var(--space-md);
    z-index: 10000;
    border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ============================================
   LAYOUT - container, sections, grids
   ============================================ */
.container {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}
@media (min-width: 1024px) {
    .container {
        padding-left: var(--space-xl);
        padding-right: var(--space-xl);
    }
}

.section {
    padding: var(--space-3xl) 0;
}
@media (min-width: 1024px) {
    .section { padding: var(--space-4xl) 0; }
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}
.section-title {
    font-family: var(--font-serif);
    margin-bottom: var(--space-sm);
}
.section-subtitle {
    color: var(--muted-foreground);
    max-width: 64ch;
    margin: 0 auto;
    font-size: 1rem;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-md);
    padding: 6px 14px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-pill);
    background: rgba(230, 192, 104, 0.06);
}

.grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-lg); }
    .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-lg); }
    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-lg); }
}
@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-xl); }
    .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-xl); }
}

/* ============================================
   HEADER - fixed, blurred, logo + nav + CTA
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(15, 8, 7, 0.85);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
@media (min-width: 1024px) {
    .site-header { height: var(--header-height-desktop); }
}
@media (max-width: 1023px) {
    /* Disable backdrop-filter on mobile to avoid containing-block trap with fixed drawer */
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(15, 8, 7, 0.96);
    }
}

main { padding-top: var(--header-height); }
@media (min-width: 1024px) {
    main { padding-top: var(--header-height-desktop); }
}

.header-inner {
    height: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}
@media (min-width: 1024px) {
    .header-inner { padding: 0 var(--space-xl); }
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--foreground);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.01em;
    flex-shrink: 0;
}
.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--accent-bright), var(--primary-deep));
    box-shadow: var(--shadow-gold);
    object-fit: cover;
}
.brand-name { white-space: nowrap; }
.brand-name-accent { color: var(--accent); margin-left: 2px; }
.brand-footer { margin-bottom: var(--space-md); }

/* Burger toggle */
.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-gold);
    background: rgba(230, 192, 104, 0.05);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 11px 9px;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 280ms var(--ease), opacity 200ms var(--ease);
    transform-origin: center;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 1024px) {
    .menu-toggle { display: none; }
}

/* Nav drawer (mobile) and inline (desktop) */
.main-nav {
    display: none;
}
.main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    padding: var(--space-xl);
    gap: var(--space-md);
    border-top: 1px solid var(--border);
}
.main-nav.is-open .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: var(--space-xs);
}
.main-nav.is-open .nav-link {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: var(--space-md) var(--space-lg);
    color: var(--foreground);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    border-radius: var(--radius);
    background: rgba(230, 192, 104, 0.04);
    border: 1px solid var(--border);
}
.main-nav.is-open .nav-link:hover {
    background: rgba(230, 192, 104, 0.1);
    border-color: var(--border-gold);
}
.main-nav.is-open .nav-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}
.main-nav.is-open .nav-cta .btn { width: 100%; }

@media (min-width: 1024px) {
    .main-nav,
    .main-nav.is-open {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        padding: 0;
        gap: var(--space-xl);
        align-items: center;
        border: 0;
        overflow: visible;
    }
    .main-nav .nav-list {
        display: flex;
        flex-direction: row;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: var(--space-lg);
    }
    .main-nav .nav-link {
        display: inline-flex;
        align-items: center;
        min-height: 40px;
        padding: 8px 4px;
        color: var(--foreground);
        font-family: var(--font-sans);
        font-size: 0.95rem;
        font-weight: 600;
        background: transparent;
        border: 0;
        position: relative;
    }
    .main-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 0; right: 0; bottom: -2px;
        height: 2px;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 280ms var(--ease);
    }
    .main-nav .nav-link:hover { color: var(--accent); }
    .main-nav .nav-link:hover::after { transform: scaleX(1); }
    .main-nav .nav-cta {
        display: flex;
        flex-direction: row;
        gap: var(--space-sm);
        margin: 0;
    }
    .main-nav .nav-cta .btn { width: auto; }
}

/* ============================================
   BUTTONS - gold CTA, ghost, outline
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), background 280ms var(--ease), color 280ms var(--ease);
    min-height: 48px;
}
.btn-sm { padding: 10px 18px; font-size: 0.85rem; min-height: 40px; }
.btn-xl { padding: 18px 38px; font-size: 1.05rem; min-height: 56px; }

.btn-gold {
    background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 50%, var(--accent-deep) 100%);
    color: var(--accent-foreground);
    box-shadow: 0 6px 20px rgba(230, 192, 104, 0.35);
    border-color: rgba(244, 210, 127, 0.6);
}
.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-strong), 0 10px 28px rgba(230, 192, 104, 0.45);
    color: var(--accent-foreground);
}
.btn-pulse {
    animation: pulseGold 2.5s var(--ease) infinite;
}
@keyframes pulseGold {
    0%, 100% { box-shadow: 0 6px 20px rgba(230, 192, 104, 0.35); }
    50% { box-shadow: 0 6px 28px rgba(230, 192, 104, 0.6), 0 0 40px rgba(230, 192, 104, 0.35); }
}

/* ============================================
   PLAY STUB - redirect landing
   ============================================ */
.play-stub {
    position: relative;
    min-height: calc(100vh - var(--header-height) - var(--bottom-nav-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl) var(--space-md);
    overflow: hidden;
}
@media (min-width: 1024px) {
    .play-stub {
        min-height: calc(100vh - var(--header-height-desktop));
        padding: var(--space-4xl) var(--space-xl);
    }
}

.play-stub-inner {
    position: relative;
    width: 100%;
    max-width: 1080px;
    background: linear-gradient(135deg, rgba(74, 18, 32, 0.55) 0%, rgba(15, 8, 7, 0.85) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), inset 0 0 80px rgba(230, 192, 104, 0.06);
}
@media (min-width: 768px) {
    .play-stub-inner {
        display: grid;
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        align-items: center;
        gap: var(--space-2xl);
        padding: var(--space-3xl) var(--space-2xl);
    }
}

.play-stub-spotlight {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 90%;
    background: radial-gradient(ellipse at center, rgba(230, 192, 104, 0.28) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.play-stub-coins {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    color: var(--accent);
    opacity: 0.35;
    font-size: 1.5rem;
}
.play-stub-coins .coin {
    position: absolute;
    animation: floatCoin 6s var(--ease) infinite;
    text-shadow: 0 0 12px rgba(230, 192, 104, 0.6);
}
.play-stub-coins .coin-1 { top: 8%; left: 6%; animation-delay: 0s; }
.play-stub-coins .coin-2 { top: 18%; right: 8%; animation-delay: 1.2s; font-size: 1.1rem; }
.play-stub-coins .coin-3 { bottom: 22%; left: 10%; animation-delay: 2.4s; font-size: 1.3rem; }
.play-stub-coins .coin-4 { bottom: 8%; right: 12%; animation-delay: 3s; }
.play-stub-coins .coin-5 { top: 50%; left: 4%; animation-delay: 1.8s; font-size: 1rem; }

@keyframes floatCoin {
    0%, 100% { transform: translateY(0) rotate(0); opacity: 0.35; }
    50% { transform: translateY(-18px) rotate(8deg); opacity: 0.7; }
}

.play-stub-mascot {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 auto var(--space-lg);
    width: auto;
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 28px rgba(230, 192, 104, 0.18));
}
@media (min-width: 768px) {
    .play-stub-mascot {
        max-width: 100%;
        margin: 0;
    }
}

.play-stub-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
@media (min-width: 768px) {
    .play-stub-content { text-align: left; }
}

.play-stub-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw + 0.5rem, 3.25rem);
    line-height: 1.1;
    margin: 0 0 var(--space-md);
    background: linear-gradient(135deg, var(--accent-bright), var(--accent), var(--accent-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--accent);
}

.play-stub-lead {
    color: var(--foreground);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 var(--space-xl);
    max-width: 52ch;
}
@media (min-width: 768px) {
    .play-stub-lead { margin-left: 0; margin-right: 0; }
}
.play-stub-content > .play-stub-lead { margin-left: auto; margin-right: auto; }
@media (min-width: 768px) {
    .play-stub-content > .play-stub-lead { margin-left: 0; }
}

.play-stub-loader {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: 12px 22px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-pill);
    background: rgba(230, 192, 104, 0.06);
    margin-bottom: var(--space-xl);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--foreground);
}
.loader-ring {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(230, 192, 104, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spinRing 0.9s linear infinite;
    flex-shrink: 0;
}
@keyframes spinRing {
    to { transform: rotate(360deg); }
}
.loader-text { letter-spacing: 0.02em; }

.play-stub-noscript {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.play-stub-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
}
@media (min-width: 768px) {
    .play-stub-meta { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.play-stub-meta li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(15, 23, 41, 0.55);
    text-align: center;
}
@media (min-width: 768px) {
    .play-stub-meta li { align-items: flex-start; text-align: left; }
}
.play-stub-meta strong {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--accent);
    letter-spacing: 0.02em;
}
.play-stub-meta span {
    font-size: 0.78rem;
    color: var(--muted-foreground);
    line-height: 1.35;
}

.play-stub-back {
    font-size: 0.92rem;
    color: var(--muted-foreground);
    margin: 0;
}
.play-stub-back a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(230, 192, 104, 0.4);
    text-underline-offset: 3px;
}
.play-stub-back a:hover { color: var(--accent-bright); }

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn-ghost:hover {
    color: var(--accent);
    border-color: var(--border-gold);
    background: rgba(230, 192, 104, 0.06);
}

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

/* ============================================
   INFO CARD - universal content card
   ============================================ */
.info-card {
    position: relative;
    background: linear-gradient(180deg, var(--card) 0%, var(--card-alt) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    min-width: 0;
    transition: transform 280ms var(--ease), border-color 280ms var(--ease), box-shadow 280ms var(--ease);
    overflow: hidden;
}
.info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(230, 192, 104, 0.4), transparent 40%, rgba(230, 192, 104, 0.2)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 280ms var(--ease);
}
.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-gold);
}
.info-card:hover::before { opacity: 1; }

.info-card-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: var(--accent);
    color: var(--accent-foreground);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
}
.info-card-thumb {
    position: relative;
    aspect-ratio: 16 / 11;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-deep), var(--card-alt));
}
.info-card-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at center, rgba(230, 192, 104, 0.35), transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.info-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 400ms var(--ease);
}
.info-card:hover .info-card-thumb img {
    transform: scale(1.05) rotate(1.5deg);
}
.info-card-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex: 1;
}
.info-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
    line-height: 1.3;
}
.info-card-number {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 4px 0;
}
.info-card-desc {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
}
.info-card .btn { align-self: flex-start; margin-top: auto; }

/* Variants */
.info-card-vip {
    background: linear-gradient(180deg, #1a1029 0%, #0f0817 100%);
    border-color: rgba(230, 192, 104, 0.3);
}
.info-card-bonus .info-card-thumb {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
}

/* ============================================
   CTA BANNER - full-width conversion section
   ============================================ */
.cta-banner {
    padding: var(--space-3xl) var(--space-md);
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 50%, #2a0a14 100%);
    position: relative;
}
@media (min-width: 1024px) {
    .cta-banner { padding: var(--space-4xl) var(--space-xl); }
}
.cta-banner-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    position: relative;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
    overflow: hidden;
    background: rgba(15, 8, 7, 0.4);
}
@media (min-width: 768px) {
    .cta-banner-inner { padding: var(--space-3xl) var(--space-2xl); text-align: left; }
}
.cta-spotlight {
    position: absolute;
    inset: -30%;
    background: radial-gradient(ellipse at center, rgba(230, 192, 104, 0.35), transparent 55%);
    z-index: 0;
    pointer-events: none;
}
.cta-coins {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    color: var(--accent);
    opacity: 0.5;
    font-size: 1.5rem;
}
.cta-coins .coin {
    position: absolute;
    animation: coinFloat 7s var(--ease) infinite;
}
.coin-1 { top: 12%; left: 8%; animation-delay: 0s; }
.coin-2 { top: 30%; right: 12%; animation-delay: 1.5s; font-size: 2rem; }
.coin-3 { bottom: 20%; left: 20%; animation-delay: 3s; }
.coin-4 { bottom: 14%; right: 18%; animation-delay: 4.5s; font-size: 1.8rem; }
@keyframes coinFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-18px) rotate(15deg); opacity: 0.8; }
}
.cta-mascot {
    display: none;
}
@media (min-width: 768px) {
    .cta-mascot {
        display: block;
        position: absolute;
        right: -40px;
        bottom: 0;
        height: 110%;
        width: auto;
        max-width: 45%;
        z-index: 2;
        pointer-events: none;
        object-fit: contain;
    }
}
.cta-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
}
@media (min-width: 768px) {
    .cta-content { max-width: 55%; }
}
.cta-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-md);
}
.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
    color: #f5e6cf;
    margin-bottom: var(--space-md);
    line-height: 1.1;
}
.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(245, 230, 207, 0.85);
    margin-bottom: var(--space-lg);
    max-width: 56ch;
}
.cta-legal {
    margin-top: var(--space-md);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

/* ============================================
   FAQ ACCORDION - expandable Q&A
   ============================================ */
.faq-section {
    background: linear-gradient(180deg, #1d100b 0%, #1a0f0a 100%);
    padding: var(--space-3xl) var(--space-md);
}
@media (min-width: 1024px) {
    .faq-section { padding: var(--space-4xl) var(--space-xl); }
}
.faq-inner {
    max-width: 960px;
    margin: 0 auto;
}
.faq-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
    align-items: center;
    margin-bottom: var(--space-2xl);
    text-align: center;
}
@media (min-width: 768px) {
    .faq-header {
        grid-template-columns: 220px minmax(0, 1fr);
        text-align: left;
    }
}
.faq-mascot {
    width: 180px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 12px 24px rgba(230, 192, 104, 0.25));
}
@media (min-width: 768px) {
    .faq-mascot { width: 220px; margin: 0; }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 280ms var(--ease), background 280ms var(--ease);
}
.faq-item[open] {
    border-left-color: var(--accent);
    background: var(--card-alt);
    border-color: var(--border-gold);
}
.faq-q {
    list-style: none;
    cursor: pointer;
    padding: var(--space-lg) var(--space-lg);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    min-height: 64px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    transition: transform 280ms var(--ease);
    flex-shrink: 0;
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: var(--accent-foreground);
}
.faq-a {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--muted-foreground);
    line-height: 1.7;
    font-size: 0.98rem;
}
.faq-a p { margin: 0; }

/* ============================================
   TRUST BADGES ROW - credibility strip
   ============================================ */
.trust-row {
    background: linear-gradient(90deg, var(--primary-deep), var(--background-alt), var(--primary-deep));
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: var(--space-lg) 0;
    position: relative;
}
.trust-row::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 12px rgba(230, 192, 104, 0.5);
}
.trust-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--muted-foreground);
    margin: 0 0 var(--space-md);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.trust-track {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    padding: 0 var(--space-md);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: var(--content-max);
    margin: 0 auto;
}
.trust-track:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.trust-track::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) {
    .trust-track {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-xl);
        overflow: visible;
    }
}
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 12px 18px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-pill);
    background: rgba(15, 8, 7, 0.6);
    min-width: 140px;
}
.trust-icon {
    font-size: 1.4rem;
    color: var(--accent);
    line-height: 1;
}
.trust-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--foreground);
}
.trust-sub {
    font-size: 0.7rem;
    color: var(--muted-foreground);
    text-align: center;
}

/* ============================================
   ENGAGEMENT PATTERNS - TLDR, callout, stat, quote
   ============================================ */
.tldr-box {
    background: linear-gradient(135deg, rgba(230, 192, 104, 0.08), rgba(107, 26, 46, 0.15));
    border: 1px solid var(--border-gold);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
}
.tldr-box h3 {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    font-family: var(--font-sans);
    font-weight: 700;
}
.tldr-box p { margin-bottom: 0; color: var(--foreground); }
.tldr-box ul { margin: 0; padding-left: 1.25rem; color: var(--foreground); }
.tldr-box li { margin-bottom: var(--space-xs); }

.callout {
    background: var(--card);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    color: var(--foreground);
}
.callout-warn { border-left-color: #dc2626; }
.callout-tip { border-left-color: var(--accent); }

.stat-highlight {
    text-align: center;
    padding: var(--space-lg);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    background: rgba(15, 8, 7, 0.5);
}
.stat-highlight .stat-num {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}
.stat-highlight .stat-lbl {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    margin-top: var(--space-sm);
}

.pull-quote {
    border: 0;
    border-left: 4px solid var(--accent);
    padding: var(--space-md) 0 var(--space-md) var(--space-lg);
    margin: var(--space-xl) 0;
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
    line-height: 1.4;
    font-style: italic;
    color: var(--foreground);
}
.pull-quote cite {
    display: block;
    margin-top: var(--space-md);
    font-size: 0.9rem;
    font-style: normal;
    font-family: var(--font-sans);
    color: var(--muted-foreground);
    letter-spacing: 0.06em;
}

/* Tables */
.table-wrapper {
    margin: var(--space-lg) 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow-x: auto;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 480px;
}
.data-table thead {
    background: linear-gradient(135deg, var(--primary-deep), var(--primary));
}
.data-table th {
    text-align: left;
    padding: var(--space-md);
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--foreground);
    border-bottom: 1px solid var(--border-gold);
}
.data-table td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
}
.data-table tbody tr:nth-child(even) { background: rgba(230, 192, 104, 0.03); }
.data-table tbody tr:hover { background: rgba(230, 192, 104, 0.08); }
.data-table .col-recommended {
    background: rgba(230, 192, 104, 0.1) !important;
    color: var(--accent);
    font-weight: 600;
}

/* Badge pill */
.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-pill);
    background: rgba(230, 192, 104, 0.06);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ============================================
   BOTTOM NAV - mobile only
   ============================================ */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--bottom-nav-height);
    background: rgba(10, 6, 5, 0.96);
    border-top: 1px solid var(--border);
    display: flex;
    z-index: 998;
    padding: 6px 4px env(safe-area-inset-bottom);
}
@media (min-width: 1024px) {
    .bottom-nav { display: none; }
}
.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 0;
}
.bottom-nav-item:hover, .bottom-nav-item:focus { color: var(--accent); }
.bottom-nav-item .bn-icon {
    font-size: 1.25rem;
    line-height: 1;
}
.bottom-nav-item .bn-label {
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.bottom-nav-cta {
    color: var(--accent);
    position: relative;
}
.bottom-nav-cta::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 192, 104, 0.35), transparent 70%);
    z-index: 0;
}
.bottom-nav-cta .bn-icon, .bottom-nav-cta .bn-label { position: relative; z-index: 1; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, var(--background-alt), #050201);
    border-top: 1px solid var(--border);
    padding: var(--space-3xl) var(--space-md) var(--space-2xl);
    color: var(--muted-foreground);
    font-size: 0.92rem;
}
@media (min-width: 1024px) {
    .site-footer { padding: var(--space-4xl) var(--space-xl) var(--space-2xl); }
}
.footer-inner {
    max-width: var(--content-max);
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--space-3xl); }
}
.footer-heading {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--space-md);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.footer-links, .footer-payments {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}
.footer-payments {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-links a {
    color: var(--muted-foreground);
    font-size: 0.92rem;
}
.footer-links a:hover { color: var(--accent); }
.pay-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(230, 192, 104, 0.04);
    color: var(--foreground);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.footer-tagline {
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
    line-height: 1.6;
    max-width: 40ch;
}
.footer-licence {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--space-md);
}
.footer-disclaimer {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--space-lg) 0;
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}
.footer-bottom {
    padding-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    align-items: center;
    text-align: center;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.footer-flags {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.12em;
}

/* ============================================
   ANIMATIONS - scroll reveal
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ============================================
   HERO - page hero shared structure
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-2xl) var(--space-md) var(--space-3xl);
    overflow: clip;
}
@media (min-width: 1024px) {
    .hero { padding: var(--space-3xl) var(--space-xl) var(--space-4xl); }
}
.hero-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}
@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1.1fr 1fr;
        gap: var(--space-3xl);
    }
}
.hero-spotlight {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(230, 192, 104, 0.25), transparent 60%);
    z-index: 1;
    pointer-events: none;
}
.hero-content { position: relative; z-index: 3; }
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 6vw + 0.5rem, 4.5rem);
    line-height: 1.05;
    margin-bottom: var(--space-md);
    color: #f5e6cf;
}
.hero-title .gold {
    background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
    max-width: 56ch;
    line-height: 1.6;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    color: var(--muted-foreground);
    font-size: 0.85rem;
}
.hero-meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: visible;
}
.hero-visual img.hero-mascot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(230, 192, 104, 0.3));
}
.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-orb {
    position: absolute;
    color: var(--accent);
    font-size: 2rem;
    animation: coinFloat 6s var(--ease) infinite;
    filter: drop-shadow(0 4px 12px rgba(230, 192, 104, 0.4));
}

/* Brand strip */
.brand-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-lg);
}
.brand-strip-item {
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: rgba(15, 8, 7, 0.5);
    color: var(--foreground);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* SEO text block */
.seo-text {
    max-width: 880px;
    margin: 0 auto;
    color: var(--foreground);
    line-height: 1.75;
    font-size: 1rem;
}
.seo-text h2, .seo-text h3 { margin-top: var(--space-2xl); }
.seo-text h2:first-child, .seo-text h3:first-child { margin-top: 0; }
.seo-text ul, .seo-text ol {
    padding-left: 1.25rem;
    margin: 0 0 var(--space-md);
    color: var(--foreground);
}
.seo-text li { margin-bottom: var(--space-xs); }

/* Anchor link cluster */
.anchor-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin: var(--space-lg) 0;
}
.anchor-cluster a {
    padding: 8px 16px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-pill);
    background: rgba(230, 192, 104, 0.05);
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
}
.anchor-cluster a:hover {
    background: var(--accent);
    color: var(--accent-foreground);
}

/* VIP tier ladder */
.tier-ladder {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-sm);
}
@media (min-width: 768px) {
    .tier-ladder { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .tier-ladder { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.tier-rung {
    background: linear-gradient(180deg, var(--card), var(--card-alt));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    text-align: center;
    position: relative;
    transition: transform 280ms var(--ease), border-color 280ms var(--ease);
    min-width: 0;
}
.tier-rung:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
}
.tier-rung-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.tier-rung-label {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    margin-top: 4px;
    color: var(--foreground);
}
.tier-rung-prize {
    font-size: 0.78rem;
    color: var(--muted-foreground);
    margin-top: 4px;
}
.tier-rung-final {
    background: linear-gradient(180deg, #2a1830, #1a0f0a);
    border-color: var(--accent);
    box-shadow: var(--shadow-gold);
}