/* ============================================
   SLOTLOUNGE CASINO - DESIGN SYSTEM
   Cartoon-luxe lounge aesthetic
   Dark theme only, mobile-first
   ============================================ */

/* ============================================
   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 {
    max-width: 100%;
    overflow-x: auto;
}
pre code, .code-block code { display: block; min-width: 0; }

.table-wrapper, [class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
}
.table-wrapper { -webkit-overflow-scrolling: touch; }
.table-wrapper:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; }
section { overflow: clip; }

a { word-break: normal; }
a[href^="http"] { word-break: break-word; }

/* ============================================
   RESET & BASE
   ============================================ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: "Manrope", system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    min-height: 100vh;
    background-image:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(232, 181, 71, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 80% 100%, rgba(22, 33, 67, 0.6) 0%, transparent 70%);
}

img { display: block; }

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

ul, ol { padding-left: 1.2em; }
ul.unstyled, ol.unstyled { list-style: none; padding: 0; margin: 0; }

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

/* ============================================
   TYPOGRAPHY
   Fraunces for display, Manrope for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Fraunces", Georgia, serif;
    color: var(--foreground);
    margin: 0 0 0.6em;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.875rem, 4.5vw + 0.5rem, 2.75rem); font-weight: 600; }
h2 { font-size: clamp(1.625rem, 3vw + 0.5rem, 2.125rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.75rem, 1.5rem); font-weight: 500; }
h4 { font-size: 1.125rem; font-weight: 500; }

h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lead {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.eyebrow {
    display: inline-block;
    font-family: "Manrope", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

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

strong { font-weight: 700; color: var(--foreground); }

/* ============================================
   LAYOUT - Container & Sections
   ============================================ */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 56px 0;
}

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

.section-head {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}
.section-head .eyebrow { display: inline-block; }
.section-head h2 { max-width: 820px; margin-left: auto; margin-right: auto; }
.section-head p { max-width: 680px; margin-left: auto; margin-right: auto; color: var(--muted-foreground); }

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

.section-alt {
    background:
        linear-gradient(180deg, transparent 0%, rgba(22,33,67,0.4) 50%, transparent 100%);
}

/* Coin shower bokeh decorative element */
.coin-bokeh {
    position: absolute;
    pointer-events: none;
    inset: 0;
    overflow: hidden;
    opacity: 0.5;
}
.coin-bokeh::before,
.coin-bokeh::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 203, 107, 0.6) 0%, rgba(232, 181, 71, 0) 70%);
    filter: blur(8px);
    animation: coinDrift 18s linear infinite;
}
.coin-bokeh::before { width: 80px; height: 80px; top: 10%; left: 12%; }
.coin-bokeh::after { width: 60px; height: 60px; top: 60%; right: 18%; animation-delay: -8s; }

@keyframes coinDrift {
    0% { transform: translate(0, -30px) rotate(0deg); opacity: 0; }
    20% { opacity: 0.7; }
    80% { opacity: 0.5; }
    100% { transform: translate(40px, 100vh) rotate(360deg); opacity: 0; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 14px 26px;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 220ms ease;
    min-height: 48px;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-grad);
    color: var(--primary-foreground);
    box-shadow: 0 8px 24px -8px rgba(232, 181, 71, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-primary:hover {
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -8px rgba(255, 203, 107, 0.7),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn-ghost:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(232, 181, 71, 0.08);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

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

.btn-pulse {
    position: relative;
    overflow: hidden;
}
.btn-pulse::after {
    content: "";
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 60%);
    opacity: 0;
    animation: pulseSheen 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes pulseSheen {
    0%, 70%, 100% { opacity: 0; transform: scale(0.8); }
    35% { opacity: 0.5; transform: scale(1.1); }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 1000;
    background: rgba(11, 18, 38, 0.92);
    border-bottom: 1px solid var(--border-soft);
}

@media (min-width: 1024px) {
    .site-header {
        background: rgba(11, 18, 38, 0.78);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }
}

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

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

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

.brand-coin {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-grad);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.4),
                inset 0 -2px 4px rgba(0,0,0,0.2),
                0 4px 12px -2px rgba(232, 181, 71, 0.4);
    flex-shrink: 0;
}
.brand-coin-mono {
    font-family: "Fraunces", serif;
    font-style: italic;
    font-weight: 700;
    color: var(--primary-foreground);
    font-size: 1.125rem;
    line-height: 1;
}

.brand-wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
}
.brand-sub {
    font-family: "Manrope", sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all 220ms 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);
}

/* Mobile Nav Drawer */
.main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    padding: 28px 20px 40px;
    overflow-y: auto;
}
.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;
    gap: 4px;
}
.nav-list a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 16px;
    color: var(--foreground);
    font-family: "Fraunces", serif;
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: 12px;
    border-bottom: 1px solid var(--border-soft);
}
.nav-list a:hover, .nav-list a:focus {
    color: var(--primary);
    background: rgba(232, 181, 71, 0.06);
}

.nav-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}
.nav-cta .btn { width: 100%; }

@media (min-width: 1024px) {
    .menu-toggle { display: none; }
    .main-nav {
        display: flex;
        position: static;
        background: transparent;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 32px;
        overflow: visible;
    }
    .nav-list {
        flex-direction: row;
        gap: 6px;
        align-items: center;
    }
    .nav-list a {
        font-family: "Manrope", sans-serif;
        font-size: 0.9375rem;
        font-weight: 600;
        min-height: 40px;
        padding: 8px 14px;
        border-bottom: none;
    }
    .nav-cta {
        flex-direction: row;
        gap: 10px;
        margin-top: 0;
    }
    .nav-cta .btn { width: auto; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--background-deep);
    border-top: 1px solid var(--border-soft);
    margin-top: 80px;
    color: var(--muted-foreground);
    font-size: 0.9375rem;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 56px 20px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-title {
    font-family: "Manrope", sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 18px;
}

.footer-links, .footer-payments {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--muted-foreground);
    transition: color 200ms ease;
}
.footer-links a:hover { color: var(--primary); }

.footer-payments {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}
.footer-payments li {
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    padding: 8px 6px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
}

.footer-tagline {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.55;
    margin: 12px 0 16px;
    max-width: 360px;
}
.brand-footer { margin-bottom: 8px; }

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-badge {
    display: inline-flex;
    padding: 6px 12px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: 0.06em;
}
.footer-badge-age {
    background: var(--primary);
    color: var(--primary-foreground);
}

.footer-bottom {
    border-top: 1px solid var(--border-soft);
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-responsible {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--card);
    border-radius: 12px;
    padding: 16px 18px;
    border-left: 3px solid var(--primary);
    font-size: 0.875rem;
    line-height: 1.5;
}
.footer-responsible a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.rg-icon {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.footer-copy {
    margin: 0;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .footer-copy { text-align: right; }
    .footer-responsible { max-width: 60%; }
}

/* ============================================
   COMPONENT - Bonus Card
   ============================================ */
.bonus-card {
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    position: relative;
    min-width: 0;
}
.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -12px rgba(232, 181, 71, 0.3);
    border-color: rgba(232, 181, 71, 0.4);
}
.bonus-card-accent {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), 0 8px 32px -12px rgba(232, 181, 71, 0.4);
}

.bonus-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--background-deep);
    border-radius: 12px;
    padding: 10px 14px;
}
.bonus-card-icon {
    font-size: 1.5rem;
    line-height: 1;
}
.bonus-card-label {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.bonus-card-value {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bonus-card-percent {
    font-family: "Fraunces", serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1;
}
.bonus-card-amount {
    font-family: "Fraunces", serif;
    font-size: 1.125rem;
    color: var(--foreground);
}
.bonus-card-extra {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 2px;
}

.bonus-card-code {
    display: flex;
    align-items: center;
    gap: 10px;
}
.code-label {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    font-weight: 700;
}
.code-pill {
    display: inline-flex;
    padding: 6px 14px;
    border: 1.5px dashed var(--primary);
    border-radius: 999px;
    font-family: "Courier New", monospace;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    background: rgba(232, 181, 71, 0.06);
}

.bonus-card-terms {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
.bonus-card-terms li {
    padding-left: 18px;
    position: relative;
}
.bonus-card-terms li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

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

/* ============================================
   COMPONENT - Game Card
   ============================================ */
.game-card {
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease;
    min-width: 0;
}
.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -12px rgba(255, 203, 107, 0.4);
}

.game-card-link {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}
.game-card-link:hover { color: inherit; }

.game-card-thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--background-deep);
}
.game-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}
.game-card:hover .game-card-thumb img { transform: scale(1.06); }

.game-card-thumb-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1B2A52 0%, #0B1226 100%);
}
.game-card-thumb-letter {
    font-family: "Fraunces", serif;
    font-size: 5rem;
    font-style: italic;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-card-ribbon {
    position: absolute;
    top: 12px;
    left: -28px;
    padding: 4px 32px;
    background: var(--gold-grad);
    color: var(--primary-foreground);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: rotate(-32deg);
}

.game-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 18, 38, 0.6);
    color: var(--primary);
    font-size: 2.5rem;
    opacity: 0;
    transition: opacity 220ms ease;
}
.game-card:hover .game-card-play { opacity: 1; }

.game-card-body {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.game-card-title {
    font-family: "Fraunces", serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: var(--foreground);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.game-card-provider {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}
.game-card-rtp {
    margin-top: 6px;
    display: inline-flex;
    align-self: flex-start;
    background: var(--background-deep);
    color: var(--muted-foreground);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
}
.game-card-rtp strong { color: var(--primary); margin-left: 4px; }

/* Game grids */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
@media (min-width: 768px) {
    .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
}
@media (min-width: 1024px) {
    .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
}
.game-grid-3 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
@media (min-width: 768px) {
    .game-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
}

/* Mobile horizontal scroll variant */
.game-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}
.game-scroll > .game-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
}
@media (min-width: 768px) {
    .game-scroll {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
        margin: 0;
        padding: 0;
        overflow: visible;
    }
    .game-scroll > .game-card { flex: 1 1 auto; }
}

/* ============================================
   COMPONENT - Payment Logo Grid
   ============================================ */
.payment-grid-wrap { position: relative; }
.payment-grid-heading {
    text-align: center;
    margin-bottom: 24px;
    font-family: "Fraunces", serif;
    font-size: 1.25rem;
}
.payment-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
@media (min-width: 640px) {
    .payment-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
}
@media (min-width: 1024px) {
    .payment-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
}

.payment-tile {
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 18px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    transition: all 220ms ease;
}
.payment-tile:hover {
    border-color: var(--primary);
    background: var(--card-elevated);
    box-shadow: inset 0 0 24px rgba(255, 203, 107, 0.1);
}

.payment-tile-name {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    color: var(--foreground);
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    text-align: center;
    background: linear-gradient(135deg, #F4EFE3 0%, #E8B547 200%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   COMPONENT - Trust Badge Row
   ============================================ */
.trust-row {
    background: var(--background-deep);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 14px 18px;
}
.trust-row-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 24px;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--foreground);
    position: relative;
}
.trust-chip:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: var(--border-soft);
}
.trust-chip-icon {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    background: rgba(232, 181, 71, 0.12);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.trust-chip-text { font-weight: 600; }

@media (max-width: 767px) {
    .trust-row { padding: 12px; }
    .trust-row-list { gap: 8px 16px; }
    .trust-chip:not(:last-child)::after { display: none; }
}

/* ============================================
   COMPONENT - FAQ Accordion
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    overflow: hidden;
    transition: all 220ms ease;
}
.faq-item[open] {
    border-color: rgba(232, 181, 71, 0.4);
    box-shadow: 0 8px 24px -12px rgba(232, 181, 71, 0.3);
    border-left: 3px solid var(--primary);
}

.faq-question {
    cursor: pointer;
    list-style: none;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 48px;
    user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }

.faq-q-text {
    font-family: "Fraunces", serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.35;
}
@media (min-width: 768px) {
    .faq-q-text { font-size: 1.25rem; }
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-grad);
    color: var(--primary-foreground);
    position: relative;
    transition: transform 220ms ease;
}
.faq-icon::before, .faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--primary-foreground);
    border-radius: 1px;
    transform: translate(-50%, -50%);
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; transition: transform 220ms ease; }

.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer {
    padding: 0 24px 22px;
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.65;
}
.faq-answer p { margin: 0 0 0.8em; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ============================================
   COMPONENT - Stat Highlight
   ============================================ */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
@media (min-width: 768px) {
    .stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
}
.stat-grid-3 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
@media (min-width: 768px) {
    .stat-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
}

.stat-highlight {
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
}
.stat-highlight::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 203, 107, 0.18), transparent 65%);
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.stat-number {
    font-family: "Fraunces", serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1;
}
.stat-suffix {
    font-size: 0.6em;
    margin-left: 2px;
}

.stat-label {
    margin-top: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}
.stat-source {
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-style: italic;
}

/* ============================================
   COMPONENT - CTA Banner
   ============================================ */
.cta-banner {
    position: relative;
    margin: 56px 0;
    border-radius: 24px;
    background: linear-gradient(135deg, #060A18 0%, #162143 60%, #1B2A52 100%);
    border: 1px solid var(--border-soft);
    overflow: hidden;
}
@media (min-width: 1024px) {
    .cta-banner { margin: 96px 0; }
}

.cta-banner-bokeh {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle 80px at 15% 30%, rgba(255, 203, 107, 0.18), transparent),
        radial-gradient(circle 60px at 85% 70%, rgba(232, 181, 71, 0.15), transparent),
        radial-gradient(circle 40px at 50% 90%, rgba(255, 203, 107, 0.1), transparent);
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}
@media (min-width: 1024px) {
    .cta-banner-inner {
        padding: 80px 60px;
        flex-direction: row;
        text-align: left;
        gap: 48px;
    }
}

.cta-banner-mascot {
    flex-shrink: 0;
    width: 200px;
    max-width: 60%;
}
.cta-banner-mascot img { width: 100%; height: auto; }

.cta-banner-content { flex: 1; min-width: 0; }

.cta-banner-headline {
    font-family: "Fraunces", serif;
    font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.75rem);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 14px;
}
.cta-banner-headline em { font-style: italic; }

.cta-banner-subline {
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    line-height: 1.55;
    margin: 0 0 24px;
    max-width: 520px;
}
@media (min-width: 1024px) {
    .cta-banner-content > .cta-banner-subline { margin-left: 0; margin-right: 0; }
}

.cta-banner-microcopy {
    margin: 14px 0 0;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    letter-spacing: 0.02em;
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */

/* TL;DR / Summary Box */
.tldr {
    background: var(--card);
    border-left: 4px solid var(--primary);
    border-radius: 14px;
    padding: 24px 28px;
    margin: 32px 0;
}
.tldr-title {
    font-family: "Manrope", sans-serif;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 10px;
}
.tldr p { margin: 0 0 10px; color: var(--foreground); }
.tldr p:last-child { margin-bottom: 0; }
.tldr ul { margin: 8px 0 0; }

/* Callout box */
.callout {
    background: rgba(232, 181, 71, 0.06);
    border: 1px solid rgba(232, 181, 71, 0.3);
    border-radius: 14px;
    padding: 20px 24px;
    margin: 28px 0;
    display: flex;
    gap: 16px;
}
.callout-icon {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1.4;
}
.callout-body { flex: 1; }
.callout-body p:last-child { margin-bottom: 0; }
.callout-title {
    font-family: "Fraunces", serif;
    font-size: 1.125rem;
    margin: 0 0 6px;
}

/* Pull quote */
.pullquote {
    border-left: 3px solid var(--primary);
    padding: 16px 0 16px 24px;
    margin: 36px 0;
    font-family: "Fraunces", serif;
    font-style: italic;
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.625rem);
    line-height: 1.4;
    color: var(--foreground);
}
.pullquote cite {
    display: block;
    margin-top: 14px;
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
}
.pullquote cite::before { content: "- "; }

/* ============================================
   TABLE
   ============================================ */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--card);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    font-size: 0.9375rem;
}
.data-table th, .data-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border-soft);
}
.data-table th {
    background: var(--background-deep);
    color: var(--primary);
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(232, 181, 71, 0.04); }
.data-table .highlight-col { background: rgba(232, 181, 71, 0.08); color: var(--primary); font-weight: 700; }

/* ============================================
   HERO PATTERN
   ============================================ */
.hero {
    position: relative;
    padding: 40px 0 56px;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .hero { padding: 64px 0 96px; }
}

.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-content { position: relative; z-index: 2; }
.hero-headline {
    font-size: clamp(2rem, 4.5vw + 0.5rem, 3.25rem);
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero-subline {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    margin: 0 0 28px;
    line-height: 1.55;
    max-width: 540px;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-mascot {
    position: relative;
    text-align: center;
}
.hero-mascot img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)) drop-shadow(0 0 80px rgba(232,181,71,0.2));
}

.hero-bg-bokeh {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle 200px at 10% 20%, rgba(232, 181, 71, 0.15), transparent),
        radial-gradient(circle 240px at 80% 60%, rgba(255, 203, 107, 0.1), transparent),
        radial-gradient(circle 160px at 50% 90%, rgba(22, 33, 67, 0.4), transparent);
    pointer-events: none;
    z-index: 1;
}

.hero-stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    padding-top: 8px;
}
.hero-stat-mini {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.hero-stat-mini-num {
    font-family: "Fraunces", serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--primary);
}
.hero-stat-mini-lbl {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-top: 4px;
    font-weight: 600;
}

/* ============================================
   PROSE / SEO TEXT
   ============================================ */
.prose {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--foreground);
}
.prose h2 { margin-top: 1.4em; }
.prose h3 { margin-top: 1.6em; margin-bottom: 0.6em; }
.prose p { margin-bottom: 1.2em; color: var(--foreground); }
.prose a { color: var(--primary); text-decoration: underline; text-decoration-color: rgba(232, 181, 71, 0.4); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--primary); }
.prose ul, .prose ol { margin-bottom: 1.2em; }
.prose ul li, .prose ol li { margin-bottom: 0.5em; }
.prose strong { color: var(--primary); }

/* ============================================
   TILE LINK CARDS (explore-pages, internal links)
   ============================================ */
.tile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 768px) {
    .tile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
}
@media (min-width: 1024px) {
    .tile-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .tile-grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
}

.tile-card {
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--foreground);
    text-decoration: none;
    transition: all 220ms ease;
    min-height: 160px;
}
.tile-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    color: var(--foreground);
    box-shadow: 0 16px 40px -12px rgba(232, 181, 71, 0.3);
}
.tile-card-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 4px;
}
.tile-card-title {
    font-family: "Fraunces", serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}
.tile-card-desc {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}
.tile-card-arrow {
    margin-top: auto;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 600ms ease, transform 600ms ease;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .btn-pulse::after { animation: none; }
    .coin-bokeh::before, .coin-bokeh::after { animation: none; }
}

/* ============================================
   CATEGORY TABS (spiele.html)
   ============================================ */
.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 12px;
    margin: 0 -20px 28px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
}
.cat-tab {
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--card);
    border: 1px solid var(--border-soft);
    color: var(--muted-foreground);
    font-family: "Manrope", sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 220ms ease;
    min-height: 48px;
    white-space: nowrap;
}
.cat-tab:hover {
    color: var(--foreground);
    border-color: var(--primary);
}
.cat-tab.is-active {
    background: var(--gold-grad);
    color: var(--primary-foreground);
    border-color: transparent;
    box-shadow: 0 6px 18px -6px rgba(232, 181, 71, 0.6);
}
@media (min-width: 768px) {
    .category-tabs {
        flex-wrap: wrap;
        justify-content: center;
        overflow: visible;
        margin: 0 0 36px;
        padding: 4px 0;
    }
}
.cat-panel { animation: fadeInPanel 320ms ease; }
@keyframes fadeInPanel {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   STUB PAGE (lounge.html)
   ============================================ */
.stub-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: radial-gradient(ellipse at center, #162143 0%, #0B1226 70%);
}
.stub-inner {
    text-align: center;
    max-width: 480px;
    position: relative;
    z-index: 2;
}
.stub-inner img {
    max-width: 220px;
    margin: 0 auto 24px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)) drop-shadow(0 0 60px rgba(232,181,71,0.25));
}
.stub-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}
.stub-coin {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-grad);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.4),
                inset 0 -2px 4px rgba(0,0,0,0.2),
                0 4px 16px -2px rgba(232, 181, 71, 0.5);
}
.stub-coin-mono {
    font-family: "Fraunces", serif;
    font-style: italic;
    font-weight: 700;
    color: var(--primary-foreground);
    font-size: 1.375rem;
    line-height: 1;
}
.stub-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-align: left;
}
.stub-name {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.375rem;
    color: var(--foreground);
}
.stub-sub {
    font-family: "Manrope", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-top: 3px;
}
.stub-message {
    font-family: "Fraunces", serif;
    font-size: 1.625rem;
    font-weight: 500;
    color: var(--foreground);
    margin: 24px 0 8px;
}
.stub-dots span {
    display: inline-block;
    opacity: 0.2;
    animation: stubDot 1.4s infinite;
}
.stub-dots span:nth-child(2) { animation-delay: 0.2s; }
.stub-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes stubDot {
    0%, 80%, 100% { opacity: 0.2; }
    40% { opacity: 1; color: var(--primary); }
}
.stub-sub-text {
    color: var(--muted-foreground);
    font-size: 1rem;
    margin: 0 0 8px;
}
.stub-spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--border-soft);
    border-top-color: var(--primary);
    margin: 16px auto 0;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 32px; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 12px; }
.gap-3 { gap: 20px; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }

/* Two column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
@media (min-width: 1024px) {
    .two-col { grid-template-columns: 1fr 1fr; gap: 56px; }
    .two-col-reverse > :first-child { order: 2; }
}

/* Visually hidden */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Prevent body scroll when mobile menu open */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   VIP PAGE - Ladder, Earning, Perks, Entry
   ============================================ */
.vip-ladder {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
}
.vip-ladder-rope {
    position: absolute;
    left: 28px;
    top: 12px;
    bottom: 12px;
    width: 3px;
    background: linear-gradient(180deg,
        rgba(232, 181, 71, 0.1) 0%,
        rgba(232, 181, 71, 0.6) 20%,
        rgba(232, 181, 71, 0.6) 80%,
        rgba(232, 181, 71, 0.1) 100%);
    border-radius: 3px;
    pointer-events: none;
}
@media (min-width: 768px) {
    .vip-ladder-rope { left: 50%; transform: translateX(-50%); }
}

.vip-ladder-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.vip-tier {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 18px 18px 18px 76px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 220ms ease;
}
.vip-tier:hover {
    border-color: rgba(232, 181, 71, 0.4);
    transform: translateX(4px);
}
.vip-tier-num {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--background-deep);
    border: 2px solid var(--border-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Fraunces", serif;
    font-weight: 700;
    color: var(--muted-foreground);
    font-size: 1rem;
    z-index: 2;
}
.vip-tier-body { flex: 1; min-width: 0; }
.vip-tier-group {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}
.vip-tier-name {
    font-family: "Fraunces", serif;
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 2px 0 4px;
    color: var(--foreground);
}
.vip-tier-perk {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.45;
}
.vip-tier-badge {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-grad);
    color: var(--primary-foreground);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 0 0 4px rgba(232, 181, 71, 0.18);
}

.vip-tier-bronze .vip-tier-group { color: #C68A3A; }
.vip-tier-silver .vip-tier-group { color: #C8CDD9; }
.vip-tier-gold .vip-tier-group { color: var(--primary); }
.vip-tier-platinum .vip-tier-group { color: #E8E6F0; }
.vip-tier-diamond .vip-tier-group { color: #9FE3FF; }

.vip-tier-milestone {
    background: linear-gradient(135deg, var(--card) 0%, var(--card-elevated) 100%);
    border-color: rgba(232, 181, 71, 0.5);
    box-shadow: 0 0 0 1px rgba(232, 181, 71, 0.25), 0 8px 24px -12px rgba(232, 181, 71, 0.4);
}
.vip-tier-milestone .vip-tier-num {
    background: var(--gold-grad);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: 0 0 14px rgba(232, 181, 71, 0.4);
}

@media (min-width: 768px) {
    .vip-ladder-list { gap: 14px; }
    .vip-tier {
        width: calc(50% - 28px);
        padding: 18px 22px 18px 76px;
    }
    .vip-tier:nth-child(odd) {
        align-self: flex-start;
        margin-right: auto;
    }
    .vip-tier:nth-child(even) {
        align-self: flex-end;
        margin-left: auto;
    }
    .vip-tier:nth-child(odd):hover { transform: translateX(-4px); }
    .vip-tier:nth-child(even):hover { transform: translateX(4px); }
}

/* Earning Mechanics */
.earning-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}
@media (min-width: 768px) {
    .earning-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
}
.earning-step {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 32px 24px 24px;
    overflow: hidden;
}
.earning-step-num {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: "Fraunces", serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: rgba(232, 181, 71, 0.55);
    line-height: 1;
}
.earning-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(232, 181, 71, 0.12);
    font-size: 1.75rem;
    margin-bottom: 14px;
}
.earning-step h3 {
    font-family: "Fraunces", serif;
    font-size: 1.25rem;
    margin: 0 0 8px;
}
.earning-step p {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.55;
    margin: 0;
}
.earning-step a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

/* Perks grid */
.perks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 640px) {
    .perks-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}
@media (min-width: 1024px) {
    .perks-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
}
.perk-card {
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 26px 22px;
    transition: all 220ms ease;
}
.perk-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 16px 40px -12px rgba(232, 181, 71, 0.3);
}
.perk-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gold-grad);
    color: var(--primary-foreground);
    font-size: 1.5rem;
    margin-bottom: 14px;
    box-shadow: 0 6px 16px -6px rgba(232, 181, 71, 0.5);
}
.perk-card h3 {
    font-family: "Fraunces", serif;
    font-size: 1.125rem;
    margin: 0 0 8px;
    color: var(--foreground);
}
.perk-card p {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.55;
    margin: 0;
}
.perk-card a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

/* Entry callout */
.entry-callout {
    background: linear-gradient(135deg, var(--card) 0%, var(--card-elevated) 100%);
    border: 1px solid rgba(232, 181, 71, 0.4);
    border-radius: 24px;
    padding: 36px 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}
.entry-callout::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 203, 107, 0.18), transparent 65%);
    pointer-events: none;
}
@media (min-width: 1024px) {
    .entry-callout {
        grid-template-columns: 1.4fr 1fr;
        padding: 56px 48px;
    }
}
.entry-content { position: relative; z-index: 1; }
.entry-content .lead { color: var(--muted-foreground); }
.entry-list {
    list-style: none;
    margin: 18px 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--foreground);
}
.entry-list li {
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
}
.entry-list li::before {
    content: "🔑";
    position: absolute;
    left: 0;
    top: 1px;
}
.entry-number {
    text-align: center;
    position: relative;
    z-index: 1;
}
.entry-big {
    display: block;
    font-family: "Fraunces", serif;
    font-weight: 700;
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1;
}
.entry-big-label {
    display: block;
    margin-top: 10px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

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