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

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

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img, video, iframe, embed, object, svg { max-width: 100%; height: auto; }
[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }
pre, code { max-width: 100%; overflow-x: auto; }
.table-wrapper { max-width: 100%; overflow-x: auto; }
p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; }
section { overflow: clip; position: relative; }

a { color: var(--primary); text-decoration: none; transition: color .22s ease; }
a:hover { color: var(--accent); }

ul { padding: 0; margin: 0; list-style: none; }

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

/* ============================================
   TYPOGRAPHY - Cinzel display + Manrope body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Cinzel", "Times New Roman", serif;
    margin: 0 0 .5em;
    line-height: 1.2;
    letter-spacing: .01em;
}
h1 { font-size: clamp(2rem, 5vw + .5rem, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw + .5rem, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 1.5vw + .5rem, 1.875rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { margin: 0 0 1.2em; }

.gold-text {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(245,197,66,.18);
}

.section-title { text-align: center; margin-bottom: var(--space-lg); }
.section-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .8rem;
    font-weight: 600;
    color: var(--accent);
    font-family: "Manrope", sans-serif;
    margin-bottom: var(--space-sm);
}

/* ============================================
   LAYOUT - containers & sections
   ============================================ */
.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--space-md);
}
@media (min-width: 1024px) {
    .container { padding: 0 var(--space-lg); }
}

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

.section-muted { background: linear-gradient(180deg, #15100a 0%, #1a1208 100%); }
.section-card { background: var(--card); }

/* Hieroglyph divider */
.hiero-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary) 20%, var(--primary) 80%, transparent);
    opacity: .55;
    margin: 0 auto;
    max-width: 800px;
    position: relative;
}
.hiero-divider::before, .hiero-divider::after {
    content: "✦"; position: absolute; top: -10px; color: var(--primary);
    font-size: 14px;
}
.hiero-divider::before { left: 50%; transform: translateX(-50%); }
.hiero-divider::after { display: none; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    font-family: "Cinzel", serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .03em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn-primary {
    background: var(--gold-grad);
    color: var(--primary-foreground);
    box-shadow: 0 6px 20px rgba(245,197,66,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,197,66,.5); color: var(--primary-foreground); }
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--primary-foreground); }
.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
    border-color: var(--secondary);
}
.btn-lg { min-height: 56px; padding: 16px 30px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

/* Shimmer sweep */
.btn-shimmer::after {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.45) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: shimmer 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes shimmer {
    0%, 70% { left: -120%; }
    100% { left: 130%; }
}

/* ============================================
   HEADER & NAV
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(21,16,10,.92);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
}
@media (min-width: 1024px) {
    .site-header { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}
.header-inner {
    height: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--foreground);
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: .04em;
}
.brand:hover { color: var(--primary); }
.brand-mark { display: inline-flex; }
.brand-text span {
    background: var(--gold-grad);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
}

.main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    padding: var(--space-lg) var(--space-md) calc(var(--space-2xl) + 80px);
    flex-direction: column;
}
.main-nav.is-open { display: flex; }

.nav-list { display: flex; flex-direction: column; align-items: stretch; gap: 4px; margin-bottom: var(--space-lg); }
.nav-list a {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0 var(--space-md);
    color: var(--foreground);
    font-family: "Cinzel", serif;
    font-size: 1.1rem;
    border-radius: var(--radius);
    border-bottom: 1px solid var(--border);
}
.nav-list a:hover { background: var(--card); color: var(--primary); }

.nav-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: var(--space-md) 0 0;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: var(--space-lg);
        padding: 0;
        background: transparent;
        overflow: visible;
    }
    .nav-list {
        flex-direction: row;
        gap: 6px;
        margin: 0;
    }
    .nav-list a {
        min-height: auto;
        padding: 8px 14px;
        font-size: .98rem;
        border: none;
        border-radius: 8px;
    }
    .nav-cta { flex-direction: row; padding: 0; }
}

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 12px 10px;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}
.menu-toggle span {
    display: block; height: 2px; width: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.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; }
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, #100a06 0%, #0a0604 100%);
    border-top: 2px solid var(--primary);
    color: var(--muted-foreground);
    padding: var(--space-2xl) 0 0;
    margin-top: var(--space-2xl);
}
.footer-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}
@media (min-width: 768px) {
    .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--space-lg); }
}
.footer-col h4 {
    font-family: "Cinzel", serif;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.footer-col ul li {
    margin-bottom: 10px;
    font-size: .95rem;
    color: var(--muted-foreground);
}
.footer-col ul a {
    color: var(--muted-foreground);
}
.footer-col ul a:hover { color: var(--primary); }

.footer-desc { font-size: .92rem; line-height: 1.65; color: var(--muted-foreground); margin: 12px 0; }

.brand-footer { margin-bottom: 4px; }

.footer-licence { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.licence-chip {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: .78rem;
    color: var(--muted-foreground);
    letter-spacing: .04em;
}

.pay-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-chip {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--foreground);
    padding: 8px 12px;
    font-size: .8rem;
    border-radius: 8px;
    font-weight: 500;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: #b8121f;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 800;
    font-size: .75rem;
    margin-right: 6px;
    vertical-align: middle;
}

.footer-bottom {
    margin-top: var(--space-xl);
    padding: var(--space-md);
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: .85rem;
    color: var(--muted-foreground);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background:
        radial-gradient(ellipse at right, rgba(245,197,66,.18) 0%, transparent 60%),
        var(--obsidian-grad);
    padding: var(--space-2xl) var(--space-md);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}
.cta-banner-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: var(--space-lg);
    text-align: center;
}
.cta-banner-title { font-size: clamp(1.8rem, 4vw + .5rem, 3.2rem); margin-bottom: var(--space-sm); }
.cta-banner-sub { font-size: 1.05rem; color: var(--foreground); max-width: 60ch; margin: 0 auto var(--space-md); }
.cta-banner-fine { font-size: .82rem; color: var(--muted-foreground); margin-top: var(--space-md); }
.cta-banner-art {
    position: relative;
    margin: 0 auto;
    max-width: 360px;
}
.cta-banner-art img { display: block; filter: drop-shadow(0 20px 40px rgba(245,197,66,.22)); }

.coin {
    position: absolute;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff5c2, #f5c542 50%, #b8860b);
    box-shadow: 0 0 18px rgba(245,197,66,.6);
    animation: float-coin 6s ease-in-out infinite;
}
.coin-1 { top: 10%; left: 8%; animation-delay: 0s; }
.coin-2 { top: 60%; left: 80%; width: 22px; height: 22px; animation-delay: 1.5s; }
.coin-3 { top: 80%; left: 12%; width: 18px; height: 18px; animation-delay: 3s; }
@keyframes float-coin {
    0%,100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-14px) rotate(180deg); }
}

@media (min-width: 768px) {
    .cta-banner-inner { grid-template-columns: 1.4fr 1fr; text-align: left; }
    .cta-banner-sub { margin-left: 0; }
}

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

.bonus-card {
    position: relative;
    background: linear-gradient(180deg, #221911 0%, #15100a 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    box-shadow: var(--shadow-card);
    min-width: 0;
}
@media (min-width: 1024px) {
    .bonus-card { padding: var(--space-lg); }
}
.bonus-card::before {
    content: "";
    position: absolute; inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px rgba(245,197,66,.18), inset 0 0 30px rgba(245,197,66,.06);
    pointer-events: none;
}
.bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,.55), 0 0 30px rgba(245,197,66,.25);
}
.bonus-icon {
    font-size: 2.4rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(245,197,66,.5));
}
.bonus-highlight {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin: 8px 0;
}
.bonus-figure {
    font-family: "Cinzel", serif;
    font-size: clamp(2.4rem, 4vw + 1rem, 3.6rem);
    font-weight: 800;
    line-height: 1;
}
.bonus-unit {
    font-family: "Cinzel", serif;
    font-size: 1.1rem;
    color: var(--primary);
}
.bonus-title { font-size: 1.25rem; margin-bottom: 8px; color: var(--foreground); }
.bonus-desc { color: var(--foreground); font-size: .98rem; margin-bottom: var(--space-md); }
.bonus-terms {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}
.bonus-tag {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--secondary);
    color: var(--secondary-foreground);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* ============================================
   GAME TILE
   ============================================ */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
}
@media (min-width: 768px) { .games-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1024px) { .games-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; } }

.game-tile {
    display: block;
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    color: var(--foreground);
    min-width: 0;
}
.game-tile:hover {
    transform: scale(1.04);
    border-color: var(--accent);
    box-shadow: 0 14px 30px rgba(0,0,0,.55), 0 0 0 1px var(--accent);
    color: var(--foreground);
}
.game-art {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #0c0805;
}
.game-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.play-badge {
    position: absolute;
    bottom: 8px; right: 8px;
    width: 36px; height: 36px;
    background: var(--gold-grad);
    color: var(--primary-foreground);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(0,0,0,.5);
}
.game-tag {
    position: absolute;
    top: 8px; left: 8px;
    background: #b8121f;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.game-meta { padding: 10px 12px; }
.game-title {
    font-family: "Cinzel", serif;
    font-size: .95rem;
    margin: 0 0 2px;
    color: var(--foreground);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.game-provider {
    font-size: .78rem;
    color: var(--muted-foreground);
}

/* ============================================
   PROVIDER STRIP
   ============================================ */
.provider-strip {
    background:
        repeating-linear-gradient(45deg, rgba(245,197,66,.03) 0 2px, transparent 2px 14px),
        var(--bronze-grad);
    padding: var(--space-xl) var(--space-md);
    text-align: center;
}
.provider-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    max-width: 600px;
    margin: 0 auto var(--space-md);
}
.provider-strip .provider-divider:last-child { margin: var(--space-md) auto 0; }
.provider-title {
    font-family: "Cinzel", serif;
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}
.provider-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-md) var(--space-lg);
    max-width: var(--maxw);
    margin: 0 auto;
}
.provider-logo {
    font-family: "Cinzel", serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--foreground);
    opacity: .68;
    transition: opacity .22s ease, color .22s ease, transform .22s ease;
    letter-spacing: .04em;
    white-space: nowrap;
}
.provider-logo:hover { opacity: 1; color: var(--primary); transform: translateY(-2px); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
    border-bottom: 1px solid var(--border);
    background: transparent;
}
.faq-item[open] { background: rgba(245,197,66,.04); }
.faq-q {
    list-style: none;
    cursor: pointer;
    padding: var(--space-md) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    font-family: "Cinzel", serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--foreground);
    transition: color .22s ease;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q-text {
    background: var(--gold-grad);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
    flex: 1;
}
.faq-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform .25s ease, background .22s ease;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--primary); color: var(--primary-foreground); }
.faq-a { padding: 0 0 var(--space-md); color: var(--foreground); }
.faq-a p { margin: 0; line-height: 1.7; }

/* ============================================
   TESTIMONIAL CARD
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }

.testimonial-card {
    position: relative;
    background: linear-gradient(180deg, #221911 0%, #1a130c 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md) var(--space-md);
    box-shadow: var(--shadow-card);
    min-width: 0;
}
.quote-mark {
    position: absolute;
    top: 4px; left: 14px;
    font-family: "Cinzel", serif;
    font-size: 4rem;
    color: var(--primary);
    line-height: 1;
    opacity: .65;
}
.testimonial-quote {
    font-style: italic;
    color: var(--foreground);
    margin: 0 0 var(--space-md);
    line-height: 1.65;
}
.testimonial-stars {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}
.scarab-star { margin-right: 2px; }
.testimonial-attr {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: var(--space-md);
}
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold-grad);
    color: var(--primary-foreground);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Cinzel", serif;
    font-weight: 700;
    border: 2px solid var(--primary);
    overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name {
    font-family: "Cinzel", serif;
    font-variant: small-caps;
    letter-spacing: .06em;
    color: var(--muted-foreground);
    font-size: .92rem;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    background:
        repeating-linear-gradient(0deg, rgba(245,197,66,.03) 0 1px, transparent 1px 8px),
        var(--bronze-grad);
    padding: var(--space-lg) var(--space-md);
}
.trust-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    max-width: var(--maxw);
    margin: 0 auto;
}
.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(21,16,10,.7);
    border: 1px solid var(--primary);
    border-radius: 999px;
    color: var(--foreground);
    font-size: .88rem;
    font-weight: 500;
}
.trust-chip:nth-child(2) { animation: pulse-glow 2.4s ease-in-out infinite; }
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,66,.45); }
    50% { box-shadow: 0 0 0 8px rgba(245,197,66,0); }
}
.trust-icon {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--gold-grad);
    color: var(--primary-foreground);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .85rem;
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */
.tldr-box {
    background: linear-gradient(135deg, rgba(245,197,66,.08), rgba(245,197,66,.02));
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
}
.tldr-box h4 {
    color: var(--primary);
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .85rem;
    margin-bottom: 8px;
}
.tldr-box p:last-child { margin-bottom: 0; }

.callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    color: var(--foreground);
}
.callout a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-underline-offset: 3px;
}
.callout a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.callout-warning { border-left-color: var(--secondary); background: rgba(230,57,80,.06); }
.callout-success { border-left-color: var(--accent); }

.stat-highlight {
    text-align: center;
    padding: var(--space-md);
}
.stat-highlight .stat-num {
    display: block;
    font-family: "Cinzel", serif;
    font-size: clamp(2rem, 4vw + 1rem, 3.2rem);
    font-weight: 800;
    background: var(--gold-grad);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
    line-height: 1;
}
.stat-highlight .stat-label {
    display: block;
    margin-top: 6px;
    color: var(--muted-foreground);
    font-size: .92rem;
    letter-spacing: .04em;
}
.stat-highlight .stat-source {
    display: block;
    margin-top: 4px;
    font-size: .78rem;
    color: var(--muted-foreground);
    opacity: .8;
}

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

.pull-quote {
    font-family: "Cinzel", serif;
    font-size: clamp(1.25rem, 1.5vw + .5rem, 1.7rem);
    line-height: 1.4;
    color: var(--primary);
    border-left: 3px solid var(--primary);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    font-style: italic;
}
.pull-quote cite { display: block; margin-top: 10px; font-size: .9rem; color: var(--muted-foreground); font-style: normal; }

/* Tables */
.table-wrapper {
    margin: var(--space-md) 0;
    border-radius: var(--radius);
    overflow-x: auto;
    border: 1px solid var(--border);
}
.table-wrapper:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
table.realz-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    color: var(--foreground);
    font-size: .94rem;
}
.realz-table thead {
    background: linear-gradient(180deg, #2a1f14 0%, #1f1810 100%);
}
.realz-table th {
    text-align: left;
    padding: 14px 16px;
    color: var(--primary);
    font-family: "Cinzel", serif;
    font-size: .9rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--primary);
}
.realz-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.realz-table tbody tr:hover { background: rgba(245,197,66,.04); }
.realz-table .recommended { background: rgba(245,197,66,.07); }
.realz-table .recommended td:first-child { border-left: 3px solid var(--primary); }

/* Lists */
.feature-list {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
}
.feature-list li {
    position: relative;
    padding: 8px 0 8px 32px;
    color: var(--foreground);
}
.feature-list li::before {
    content: "✦";
    position: absolute;
    left: 0; top: 8px;
    color: var(--primary);
    font-size: 1rem;
}

/* SEO text block */
.seo-block {
    max-width: 820px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}
.seo-block h2, .seo-block h3 { margin-top: var(--space-lg); }
.seo-block p { color: var(--foreground); }
.seo-block a { color: var(--primary); text-decoration: underline; text-decoration-color: rgba(245,197,66,.4); }
.seo-block a:hover { color: var(--accent); text-decoration-color: var(--accent); }

/* Inline links inside muted text need underline for distinguishability */
.text-muted a { text-decoration: underline; text-decoration-color: rgba(245,197,66,.5); text-underline-offset: 3px; }
.text-muted a:hover { text-decoration-color: var(--accent); }

/* ============================================
   HERO (page-specific shared base)
   ============================================ */
.hero {
    position: relative;
    background:
        radial-gradient(ellipse at top right, rgba(245,197,66,.18) 0%, transparent 55%),
        radial-gradient(ellipse at bottom left, rgba(230,57,80,.12) 0%, transparent 50%),
        var(--obsidian-grad);
    padding: var(--space-2xl) 0 var(--space-xl);
    overflow: hidden;
}
@media (min-width: 1024px) {
    .hero { padding: var(--space-3xl) 0 var(--space-2xl); }
}
.hero-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}
@media (min-width: 1024px) {
    .hero-inner { grid-template-columns: 1.15fr 1fr; gap: var(--space-2xl); }
}
.hero-text { text-align: center; }
@media (min-width: 1024px) { .hero-text { text-align: left; } }
.hero h1 { margin-bottom: var(--space-md); }
.hero-lead { font-size: 1.1rem; color: var(--foreground); margin-bottom: var(--space-md); max-width: 56ch; margin-left: auto; margin-right: auto; }
@media (min-width: 1024px) { .hero-lead { margin-left: 0; } }
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: var(--space-md) 0;
}
@media (min-width: 1024px) { .hero-actions { justify-content: flex-start; } }
.hero-art {
    position: relative;
    margin: 0 auto;
    max-width: 520px;
}
.hero-art img { display: block; width: 100%; height: auto; filter: drop-shadow(0 25px 50px rgba(0,0,0,.6)); }
.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: var(--space-md);
}
@media (min-width: 1024px) { .hero-bullets { justify-content: flex-start; } }
.hero-bullet {
    background: rgba(21,16,10,.6);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .85rem;
    color: var(--foreground);
}
.hero-bullet strong { color: var(--primary); }

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

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

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.mt-md { margin-top: var(--space-md); }
.mb-md { margin-bottom: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }

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

/* ============================================
   GAMES CATEGORY TABS
   ============================================ */
.tabs-bar {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 4px 14px;
    margin-bottom: var(--space-md);
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
    -webkit-overflow-scrolling: touch;
}
.tabs-bar::-webkit-scrollbar { height: 6px; }
.tabs-bar::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
.tab-btn {
    flex-shrink: 0;
    min-height: 44px;
    padding: 10px 18px;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--foreground);
    border-radius: 999px;
    font-family: "Cinzel", serif;
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .04em;
    cursor: pointer;
    white-space: nowrap;
    transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.is-active {
    background: var(--gold-grad);
    border-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 4px 14px rgba(245,197,66,.35);
}
@media (min-width: 768px) {
    .tabs-bar { flex-wrap: wrap; justify-content: center; overflow-x: visible; }
}
.game-card-wrap { display: contents; }
.game-card-wrap.is-hidden { display: none; }