/* ============================================
   SLOTMAFIA CASINO - DESIGN SYSTEM
   1930s Gangster Noir / Black & Gold
   Mobile-first, dark-only
   ============================================ */

/* ============================================
   RESET & OVERFLOW PREVENTION
   ============================================ */
*,
*::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: "Inter Tight", system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image:
        radial-gradient(ellipse at top, rgba(230, 185, 74, 0.08), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(123, 31, 43, 0.10), transparent 60%),
        linear-gradient(180deg, #0a0908 0%, #0d0b09 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

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

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

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

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

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

section {
    overflow: clip;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}

a:hover {
    color: var(--gold-bright);
}

ul, ol {
    padding-left: 1.25em;
}

/* ============================================
   TYPOGRAPHY - Playfair (display) + Inter Tight (body)
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 var(--space-md);
    color: var(--gold);
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.4rem, 6vw + 1rem, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--gold-bright);
}

h2 {
    font-size: clamp(1.85rem, 3.5vw + 0.6rem, 3.25rem);
    font-weight: 800;
}

h3 {
    font-size: clamp(1.4rem, 1.5vw + 0.8rem, 2.125rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.15rem, 0.6vw + 0.9rem, 1.5rem);
    font-weight: 500;
}

p {
    margin: 0 0 1.5rem;
    color: var(--cream);
}

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

.eyebrow {
    display: inline-block;
    font-family: "Special Elite", "Courier New", monospace;
    font-size: 0.8125rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.eyebrow::before, .eyebrow::after {
    content: "-";
    margin: 0 0.5em;
    opacity: 0.6;
}

.lead {
    font-size: 1.15rem;
    color: var(--cream);
    line-height: 1.65;
}

.pull-quote {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: clamp(1.4rem, 1.2vw + 1rem, 1.75rem);
    line-height: 1.4;
    color: var(--gold-bright);
    border-left: 3px solid var(--gold);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-xl) 0;
    background: linear-gradient(90deg, rgba(230, 185, 74, 0.08), transparent);
    position: relative;
}

.pull-quote::before {
    content: """;
    position: absolute;
    top: -0.2em;
    left: 0.2em;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
}

.pull-quote cite {
    display: block;
    font-style: normal;
    font-size: 0.9rem;
    font-family: "Special Elite", monospace;
    color: var(--parchment);
    margin-top: var(--space-sm);
    letter-spacing: 0.1em;
}

.drop-cap::first-letter {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 3.5em;
    float: left;
    line-height: 0.9;
    padding: 0.05em 0.1em 0 0;
    color: var(--gold);
    font-weight: 900;
}

/* Typewriter effect (CSS-only fallback; JS adds .typewriter--play class) */
.typewriter {
    overflow: hidden;
    white-space: normal;
}

/* ============================================
   LAYOUT - container, sections, grids
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container { padding: 0 var(--space-lg); }
}

.section {
    padding: var(--space-2xl) 0;
    position: relative;
}

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

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

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--space-xl);
}

.section-header p {
    color: var(--cream);
    font-size: 1.05rem;
}

.section-header p a {
    color: var(--gold-bright);
    text-decoration: underline;
    text-decoration-color: rgba(244, 208, 111, 0.5);
    text-underline-offset: 3px;
}

.section-header p a:hover {
    text-decoration-color: var(--gold-bright);
}

/* Inline links inside callouts/paragraphs need underline for a11y (contrast w/ surrounding cream text) */
.callout a,
.callout__title + p a,
p.mb-0 a {
    text-decoration: underline;
    text-decoration-color: rgba(244, 208, 111, 0.6);
    text-underline-offset: 3px;
}

.callout a:hover,
p.mb-0 a:hover {
    text-decoration-color: var(--gold-bright);
}

/* Keyboard-accessible scroll region */
.table-wrapper:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Gold pinstripe divider with bullet motif */
.pinstripe-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin: var(--space-xl) 0;
    color: var(--gold);
}

.pinstripe-divider::before,
.pinstripe-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    max-width: 200px;
}

.pinstripe-divider__bullet {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold), 0 0 24px rgba(230, 185, 74, 0.4);
}

/* Grids */
.grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: minmax(0, 1fr);
}

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

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

/* ============================================
   BUTTONS - gold CTA with pistol-shot flash
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 14px 26px;
    min-height: 48px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
    color: var(--primary-foreground);
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(230, 185, 74, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 32px rgba(230, 185, 74, 0.55), 0 0 40px rgba(230, 185, 74, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: var(--primary-foreground);
}

.btn-primary:active {
    transform: translateY(0) scale(0.99);
}

.btn-ghost {
    background: transparent;
    color: var(--gold);
    border-color: var(--border-strong);
}

.btn-ghost:hover {
    background: rgba(230, 185, 74, 0.08);
    border-color: var(--gold);
    color: var(--gold-bright);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--oxblood));
    color: #fff;
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-hover), var(--secondary));
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    min-height: 56px;
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    min-height: 40px;
    padding: 10px 18px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* Pistol-shot muzzle flash on hover */
.btn-flash::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 240, 180, 0.9), transparent 60%);
    opacity: 0;
    transform: scale(0.3);
    pointer-events: none;
    transition: none;
}

.btn-flash:hover::before {
    animation: muzzle-flash 0.45s var(--ease);
}

@keyframes muzzle-flash {
    0%   { opacity: 0; transform: scale(0.3); }
    20%  { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0; transform: scale(2); }
}

.btn-flash::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateY(-50%) skewX(-20deg);
    pointer-events: none;
}

.btn-flash:hover::after {
    animation: btn-shine 0.7s var(--ease);
}

@keyframes btn-shine {
    0%   { left: -100%; }
    100% { left: 200%; }
}

/* ============================================
   HEADER - fixed, dark glass with gold pinstripe
   ============================================ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--onyx);
    color: var(--gold-bright);
    padding: 10px 18px;
    z-index: 9999;
    border: 2px solid var(--gold);
    font-weight: 700;
    text-decoration: underline;
}
.skip-link:focus { top: 0; }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 9, 8, 0.92);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: background var(--dur) var(--ease);
}

.site-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
    opacity: 0.5;
}

.site-header.is-scrolled {
    background: rgba(10, 9, 8, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

/* Backdrop filter only on desktop to avoid trapping fixed children on mobile */
@media (min-width: 768px) {
    .site-header {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

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

@media (min-width: 768px) {
    .header-inner { padding: 0 var(--space-lg); }
}

/* Brand crest */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--gold);
    flex-shrink: 0;
}

.brand-crest {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1a1410 0%, #0a0908 100%);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(230, 185, 74, 0.3), inset 0 1px 0 rgba(230, 185, 74, 0.15);
    position: relative;
}

.brand-crest::before {
    content: "";
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(230, 185, 74, 0.3);
    border-radius: 5px;
    pointer-events: none;
}

.brand-monogram {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--gold);
    letter-spacing: -0.04em;
}

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

.brand-name {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--gold-bright);
    letter-spacing: 0.02em;
}

.brand-sub {
    font-family: "Special Elite", monospace;
    font-size: 0.7rem;
    color: var(--parchment);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Mobile menu toggle (hamburger) */
.mobile-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-strong);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1001;
    transition: all var(--dur) var(--ease);
}

.mobile-menu-toggle:hover {
    border-color: var(--gold);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all var(--dur) var(--ease);
    transform-origin: center;
}

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

/* Main nav - mobile drawer first */
.main-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    border-top: 1px solid var(--border);
    z-index: 999;
    overflow-y: auto;
    padding: var(--space-lg) var(--space-md) var(--space-3xl);
    flex-direction: column;
}

.main-nav.is-open {
    display: flex;
}

.main-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

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

.nav-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 20px;
    color: var(--cream);
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all var(--dur) var(--ease);
    position: relative;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.is-active {
    background: rgba(230, 185, 74, 0.08);
    border-color: rgba(230, 185, 74, 0.3);
    color: var(--gold);
}

.nav-link::before {
    content: "◆";
    margin-right: 12px;
    color: var(--gold);
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
    font-size: 0.7em;
}

.nav-link:hover::before,
.nav-link.is-active::before {
    opacity: 1;
}

.nav-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.nav-actions .btn {
    width: 100%;
}

/* Tablet+ - inline nav */
@media (min-width: 1024px) {
    .mobile-menu-toggle { display: none; }

    .main-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        flex: 1;
        background: transparent;
        border: none;
        padding: 0;
        overflow: visible;
        gap: var(--space-lg);
    }

    .main-nav::before { display: none; }

    .nav-list {
        flex-direction: row;
        align-items: center;
        margin: 0;
        gap: 4px;
    }

    .nav-link {
        font-family: "Inter Tight", sans-serif;
        font-size: 0.95rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        min-height: 40px;
        padding: 8px 14px;
        color: var(--cream);
    }

    .nav-link::before { display: none; }

    .nav-link::after {
        content: "";
        position: absolute;
        bottom: 4px;
        left: 14px;
        right: 14px;
        height: 2px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform var(--dur) var(--ease);
    }

    .nav-link:hover::after,
    .nav-link.is-active::after {
        transform: scaleX(1);
    }

    .nav-actions {
        flex-direction: row;
        padding: 0;
        border: none;
        gap: 12px;
    }

    .nav-actions .btn { width: auto; }
}

/* Header spacer - push body below fixed header */
main#main-content {
    padding-top: var(--header-height);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #06060a;
    border-top: 2px solid var(--gold);
    color: var(--cream);
    margin-top: var(--space-3xl);
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-md) var(--space-md);
}

@media (min-width: 768px) {
    .footer-inner { padding: var(--space-3xl) var(--space-lg) var(--space-md); }
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: var(--space-2xl);
    }
}

.footer-brand .brand { margin-bottom: var(--space-md); }

.footer-tagline {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: var(--gold);
    font-size: 1.05rem;
    margin-bottom: var(--space-md);
}

.footer-license {
    font-family: "Special Elite", monospace;
    font-size: 0.8rem;
    color: var(--muted-foreground);
    letter-spacing: 0.08em;
}

.footer-heading {
    font-family: "Playfair Display", serif;
    font-size: 1.05rem;
    color: var(--gold);
    margin: 0 0 var(--space-md);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

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

.footer-links a {
    color: var(--cream);
    font-size: 0.95rem;
    transition: color var(--dur) var(--ease);
}

.footer-links a:hover { color: var(--gold); }

.payment-logos {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pay-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 32px;
    padding: 0 10px;
    background: rgba(230, 185, 74, 0.08);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.04em;
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: var(--space-sm);
}

.badge-18, .badge-license, .badge-ssl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.badge-18 {
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 2px solid #fff;
}

.badge-license, .badge-ssl {
    background: rgba(46, 204, 139, 0.12);
    color: var(--jade);
    border: 1px solid rgba(46, 204, 139, 0.4);
}

.footer-bottom {
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   STICKY MOBILE CTA - appears after hero scroll
   ============================================ */
.sticky-cta {
    position: fixed;
    left: var(--space-md);
    right: var(--space-md);
    bottom: var(--space-md);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: var(--primary-foreground);
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 24px rgba(230, 185, 74, 0.4);
    z-index: 998;
    opacity: 0;
    transform: translateY(120%);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    text-decoration: none;
}

.sticky-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-label { font-size: 0.85rem; }
.sticky-cta-amount { font-size: 0.9rem; font-weight: 800; }

@media (max-width: 1023px) {
    .sticky-cta { display: flex; }
}

/* ============================================
   COMPONENT - info_card
   ============================================ */
.info-card {
    background: linear-gradient(180deg, var(--card-elevated) 0%, var(--card) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
    pointer-events: none;
}

.info-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    pointer-events: none;
    background: radial-gradient(ellipse at top, rgba(230, 185, 74, 0.04), transparent 70%);
}

.info-card:hover {
    transform: translateY(-4px) rotate(-0.5deg) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(230, 185, 74, 0.4), 0 0 32px rgba(230, 185, 74, 0.15);
}

.info-card__media {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--muted);
}

.info-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.info-card:hover .info-card__media img {
    transform: scale(1.06);
}

.info-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 9, 8, 0.7));
    pointer-events: none;
}

.info-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--secondary);
    color: #fff;
    font-family: "Inter Tight", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

.info-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

@media (min-width: 768px) {
    .info-card__body { padding: 28px; }
}

.info-card__meta {
    font-family: "Special Elite", monospace;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.info-card__title {
    margin: 0;
    font-size: 1.35rem;
    color: var(--gold);
    line-height: 1.2;
}

.info-card__desc {
    margin: 0;
    color: var(--cream);
    font-size: 0.95rem;
    line-height: 1.55;
}

.info-card__cta {
    align-self: flex-start;
    margin-top: auto;
}

/* Variants */
.info-card--featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, #221a0e 0%, var(--card) 100%);
}

.info-card--featured::before {
    height: 3px;
    background: var(--gold);
    opacity: 1;
}

.info-card--vip {
    background: linear-gradient(180deg, #2a1d0a 0%, #161311 100%);
}

/* ============================================
   COMPONENT - cta_banner
   ============================================ */
.cta-banner {
    position: relative;
    padding: var(--space-2xl) var(--space-md);
    margin: var(--space-2xl) 0;
    background:
        radial-gradient(ellipse at center, rgba(230, 185, 74, 0.15), transparent 60%),
        linear-gradient(135deg, #0a0908 0%, #1a1208 50%, #0a0908 100%);
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    overflow: hidden;
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-banner { padding: var(--space-3xl) var(--space-xl); }
}

.cta-banner::before,
.cta-banner::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(280px, 80%);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-banner::before { top: 16px; }
.cta-banner::after { bottom: 16px; }

.cta-banner__smoke {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 200px 80px at 20% 100%, rgba(230, 185, 74, 0.08), transparent),
        radial-gradient(ellipse 240px 100px at 80% 100%, rgba(193, 39, 45, 0.06), transparent);
    pointer-events: none;
}

.cta-banner__inner {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    z-index: 2;
}

@media (min-width: 1024px) {
    .cta-banner__inner {
        max-width: var(--max-width);
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
    .cta-banner__content { text-align: left; max-width: 720px; }
}

.cta-banner__headline {
    font-size: clamp(1.85rem, 3.5vw + 0.6rem, 3rem);
    color: var(--gold-bright);
    margin: 0 0 var(--space-sm);
    text-shadow: 0 2px 24px rgba(230, 185, 74, 0.3);
}

.cta-banner__subline {
    color: var(--cream);
    font-size: 1.1rem;
    margin: 0 0 var(--space-lg);
}

.cta-banner__microcopy {
    font-family: "Special Elite", monospace;
    font-style: italic;
    font-size: 0.8rem;
    color: var(--muted-foreground);
    margin: var(--space-sm) 0 0;
}

.cta-banner__mascot {
    flex-shrink: 0;
    width: min(280px, 60%);
    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.6));
}

.cta-banner__mascot img { width: 100%; height: auto; }

/* ============================================
   COMPONENT - stat_block
   ============================================ */
.stat-block {
    padding: var(--space-xl) var(--space-md);
    background: linear-gradient(180deg, var(--background-alt) 0%, var(--background) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.stat-block::before, .stat-block::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.stat-block::before { top: 0; }
.stat-block::after { bottom: 0; }

.stat-block__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.stat-block__heading {
    margin: 0;
    font-size: clamp(1.5rem, 2vw + 0.7rem, 2.25rem);
}

.stat-block__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-2xl);
    max-width: var(--max-width);
    margin: 0 auto;
}

@media (min-width: 640px) {
    .stat-block__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-xl);
    }
}

@media (min-width: 1024px) {
    .stat-block__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .stat-block__grid > * + * {
        border-left: 1px solid var(--border);
        padding-left: var(--space-lg);
    }
}

.stat-cell {
    text-align: center;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-cell__bullet {
    color: var(--gold);
    font-size: 0.75rem;
    margin-bottom: 4px;
    filter: drop-shadow(0 0 8px rgba(230, 185, 74, 0.6));
}

.stat-cell__number {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 3vw + 1rem, 3.75rem);
    font-weight: 900;
    color: var(--gold-bright);
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(230, 185, 74, 0.25);
}

.stat-cell__label {
    font-family: "Inter Tight", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.stat-cell__source {
    font-family: "Special Elite", monospace;
    font-size: 0.72rem;
    color: var(--muted-foreground);
    letter-spacing: 0.06em;
    margin-top: 4px;
}

/* ============================================
   COMPONENT - faq_accordion
   ============================================ */
.faq-accordion {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.faq-accordion__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.faq-accordion__heading {
    margin: 0;
}

.faq-accordion__list {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.faq-accordion__list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.faq-row {
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: background var(--dur) var(--ease);
}

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

.faq-row[open] {
    background: rgba(230, 185, 74, 0.04);
}

.faq-row[open]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--secondary));
    box-shadow: 0 0 12px rgba(230, 185, 74, 0.5);
}

.faq-row__q {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gold);
    line-height: 1.35;
    transition: color var(--dur) var(--ease);
    min-height: 48px;
}

.faq-row__q::-webkit-details-marker { display: none; }
.faq-row__q::marker { content: ""; }

.faq-row__q:hover { color: var(--gold-bright); }

.faq-row__q-text { flex: 1; }

.faq-row__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: relative;
    transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}

.faq-row__icon::before,
.faq-row__icon::after {
    content: "";
    position: absolute;
    background: var(--gold);
    border-radius: 1px;
}

.faq-row__icon::before {
    top: 50%; left: 6px; right: 6px; height: 2px; transform: translateY(-50%);
}

.faq-row__icon::after {
    left: 50%; top: 6px; bottom: 6px; width: 2px; transform: translateX(-50%);
    transition: transform var(--dur) var(--ease);
}

.faq-row[open] .faq-row__icon {
    background: rgba(230, 185, 74, 0.12);
    transform: rotate(180deg);
}

.faq-row[open] .faq-row__icon::after {
    transform: translateX(-50%) scaleY(0);
}

.faq-row__a {
    padding: 0 24px 24px;
    color: var(--cream);
    font-size: 1rem;
    line-height: 1.65;
}

.faq-row__a p { margin: 0; }

/* ============================================
   ENGAGEMENT PATTERNS - TL;DR, callouts, quotes
   ============================================ */
.tldr-box {
    background: linear-gradient(135deg, rgba(230, 185, 74, 0.08), rgba(193, 39, 45, 0.04));
    border: 1px solid var(--gold);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    position: relative;
}

.tldr-box__label {
    display: inline-block;
    font-family: "Special Elite", monospace;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.tldr-box ul, .tldr-box ol {
    margin: 0;
    padding-left: 1.25rem;
}

.tldr-box li {
    margin-bottom: 6px;
    color: var(--cream);
}

.callout {
    background: var(--card);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
}

.callout--warning { border-left-color: var(--secondary); }
.callout--success { border-left-color: var(--jade); }

.callout__title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 8px;
    font-size: 1.1rem;
}

/* Stat highlight (inline) */
.stat-highlight {
    display: inline-flex;
    flex-direction: column;
    padding: 12px 18px;
    background: rgba(230, 185, 74, 0.08);
    border: 1px solid var(--gold);
    border-radius: var(--radius-sm);
}

.stat-highlight__value {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--gold-bright);
    line-height: 1;
}

.stat-highlight__label {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* ============================================
   TABLES - vintage contract paper
   ============================================ */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: var(--space-lg) 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--card);
    min-width: 0;
    max-width: 100%;
}

table.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 480px;
}

table.data-table thead {
    background: linear-gradient(180deg, #1a1410, #110d0a);
}

table.data-table th {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: var(--gold);
    text-align: left;
    padding: 14px 18px;
    border-bottom: 2px solid var(--gold);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

table.data-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--cream);
    vertical-align: middle;
}

table.data-table tbody tr:hover {
    background: rgba(230, 185, 74, 0.04);
}

table.data-table tbody tr:last-child td {
    border-bottom: none;
}

.table-recommended {
    background: rgba(230, 185, 74, 0.06) !important;
    position: relative;
}

.table-recommended td:first-child {
    border-left: 3px solid var(--gold);
}

/* ============================================
   BADGES & TAGS
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(230, 185, 74, 0.1);
    border: 1px solid var(--gold);
    border-radius: 999px;
    font-family: "Inter Tight", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.badge--jade {
    background: rgba(46, 204, 139, 0.1);
    border-color: var(--jade);
    color: var(--jade);
}

.badge--crimson {
    background: rgba(193, 39, 45, 0.12);
    border-color: var(--secondary);
    color: var(--secondary);
}

/* ============================================
   HERO LAYOUT
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero { padding: var(--space-3xl) 0; min-height: 80vh; }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(230, 185, 74, 0.12), transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(193, 39, 45, 0.08), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .hero__inner { padding: 0 var(--space-lg); }
}

@media (min-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1.1fr 1fr;
        gap: var(--space-3xl);
    }
}

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

.hero__bonus {
    display: inline-block;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 2vw + 0.8rem, 2.5rem);
    font-weight: 800;
    color: var(--gold-bright);
    background: linear-gradient(135deg, rgba(230, 185, 74, 0.15), rgba(193, 39, 45, 0.08));
    border: 1px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    margin: var(--space-md) 0;
    text-shadow: 0 2px 16px rgba(230, 185, 74, 0.3);
}

.hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.hero__visual {
    position: relative;
    aspect-ratio: 4 / 3;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #1a1208, #0a0908);
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.hero__visual canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero__visual-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   PROSE - long-form SEO text
   ============================================ */
.prose {
    max-width: 760px;
    margin: 0 auto;
    color: var(--cream);
    font-size: 1.05rem;
    line-height: 1.75;
}

.prose h2, .prose h3, .prose h4 {
    margin-top: 2em;
}

.prose h2:first-child, .prose h3:first-child {
    margin-top: 0;
}

.prose ul, .prose ol {
    margin: 1.25em 0;
    padding-left: 1.5em;
}

.prose li { margin-bottom: 0.6em; }

.prose a {
    color: var(--gold);
    border-bottom: 1px dotted var(--gold);
}

.prose a:hover {
    color: var(--gold-bright);
    border-bottom-style: solid;
}

.prose-grid {
    display: grid;
    gap: var(--space-xl);
    align-items: start;
}

@media (min-width: 1024px) {
    .prose-grid {
        grid-template-columns: 1fr 320px;
    }
}

.prose-aside {
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.prose-aside h3 {
    margin-top: 0;
}

/* ============================================
   ANIMATIONS - scroll reveal
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.animate-on-scroll[data-anim="fade-left"] { transform: translateX(-32px); }
.animate-on-scroll[data-anim="fade-left"].is-visible { transform: translateX(0); }
.animate-on-scroll[data-anim="fade-right"] { transform: translateX(32px); }
.animate-on-scroll[data-anim="fade-right"].is-visible { transform: translateX(0); }
.animate-on-scroll[data-anim="zoom"] { transform: scale(0.92); }
.animate-on-scroll[data-anim="zoom"].is-visible { transform: scale(1); }

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

/* ============================================
   GAME CATEGORY FILTERS
   ============================================ */
.game-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    position: relative;
}

.game-filters::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.game-filter {
    flex: 1 0 auto;
    min-height: 44px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--cream);
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    white-space: nowrap;
}

.game-filter:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
    background: rgba(230, 185, 74, 0.06);
}

.game-filter.is-active {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    border-color: var(--gold);
    color: var(--primary-foreground);
    box-shadow: 0 4px 16px rgba(230, 185, 74, 0.35);
}

@media (min-width: 768px) {
    .game-filter { flex: 0 0 auto; padding: 12px 22px; font-size: 0.9rem; }
}

/* ============================================
   PROVIDER LOGOS STRIP
   ============================================ */
.provider-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    position: relative;
}

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

@media (min-width: 1024px) {
    .provider-strip {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: var(--space-md);
        padding: var(--space-xl);
    }
}

.provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 8px 14px;
    background: rgba(245, 230, 200, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-align: center;
    transition: all var(--dur) var(--ease);
}

.provider-logo:hover {
    background: rgba(230, 185, 74, 0.08);
    border-color: var(--gold);
    color: var(--gold-bright);
    transform: translateY(-2px);
}

/* ============================================
   VIP HIERARCHY
   ============================================ */
.vip-ladder {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--space-lg);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    position: relative;
}

.vip-ladder__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
}

.vip-rung {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--parchment);
    transition: all var(--dur) var(--ease);
}

.vip-rung--milestone {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: var(--primary-foreground);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(230, 185, 74, 0.4);
}

/* ============================================
   FORMS (basic, used sparingly)
   ============================================ */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    width: 100%;
    padding: 12px 14px;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--cream);
    font-size: 1rem;
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--card);
}

input::placeholder, textarea::placeholder {
    color: #8a7a5e;
}

/* ============================================
   UTILITY HELPERS
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-muted { color: var(--muted-foreground); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
}

/* Decorative cigar smoke particles (CSS-only fallback) */
.smoke-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.3;
}

.smoke-bg::before,
.smoke-bg::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 168, 136, 0.3), transparent 70%);
    filter: blur(40px);
    animation: drift 12s ease-in-out infinite;
}

.smoke-bg::before { top: 20%; left: 10%; }
.smoke-bg::after { top: 60%; left: 70%; animation-delay: -6s; }

@keyframes drift {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(30px, -30px); opacity: 0.6; }
}

/* ============================================
   BOSS PAGE - minimal redirect stub
   ============================================ */
.boss-stub {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    background: radial-gradient(ellipse at center, #1a1208 0%, #0a0908 70%);
    position: relative;
    z-index: 1;
}

.boss-stub__inner {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.boss-stub__don {
    position: relative;
    width: min(280px, 70vw);
    margin: var(--space-sm) 0;
    filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 32px rgba(230, 185, 74, 0.18));
}

.boss-stub__don img {
    width: 100%;
    height: auto;
    animation: don-emerge 1.2s var(--ease) both;
}

@keyframes don-emerge {
    from { opacity: 0; transform: translateY(20px); filter: brightness(0.4); }
    to   { opacity: 1; transform: translateY(0);    filter: brightness(1); }
}

.boss-stub__smoke {
    position: absolute;
    top: -20px;
    left: 55%;
    width: 60px;
    height: 120px;
    pointer-events: none;
}

.boss-stub__smoke span {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 230, 200, 0.45), transparent 70%);
    filter: blur(6px);
    animation: smoke-rise 4s ease-in-out infinite;
}

.boss-stub__smoke span:nth-child(1) { animation-delay: 0s; left: 40%; }
.boss-stub__smoke span:nth-child(2) { animation-delay: 1.3s; left: 55%; }
.boss-stub__smoke span:nth-child(3) { animation-delay: 2.6s; left: 50%; }

@keyframes smoke-rise {
    0%   { transform: translate(-50%, 0) scale(0.6); opacity: 0; }
    20%  { opacity: 0.7; }
    100% { transform: translate(-50%, -120px) scale(2); opacity: 0; }
}

.boss-stub__crest {
    width: 96px;
    height: 96px;
    margin: 0 auto var(--space-lg);
    border-radius: 16px;
    background: linear-gradient(135deg, #1a1410, #0a0908);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(230, 185, 74, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 32px rgba(230, 185, 74, 0.3); }
    50% { box-shadow: 0 8px 48px rgba(230, 185, 74, 0.6); }
}

.boss-stub__crest .brand-monogram {
    font-size: 2.2rem;
}

.boss-stub__title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: var(--gold-bright);
    margin: 0 0 var(--space-sm);
}

.boss-stub__loading {
    font-family: "Special Elite", monospace;
    color: var(--cream);
    letter-spacing: 0.1em;
}

.boss-stub__loading::after {
    content: "";
    animation: dots 1.5s steps(4) infinite;
}

@keyframes dots {
    0%   { content: ""; }
    25%  { content: "."; }
    50%  { content: ".."; }
    75%  { content: "..."; }
    100% { content: ""; }
}

.boss-stub__bar {
    width: min(320px, 80vw);
    height: 3px;
    margin-top: var(--space-md);
    background: rgba(230, 185, 74, 0.12);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.boss-stub__bar span {
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
    animation: bar-slide 1.8s var(--ease) infinite;
    box-shadow: 0 0 12px rgba(230, 185, 74, 0.6);
}

@keyframes bar-slide {
    from { left: -40%; }
    to   { left: 100%; }
}

.boss-stub .eyebrow {
    color: var(--gold);
    margin: 0;
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .site-header, .site-footer, .sticky-cta, .cta-banner { display: none; }
    body { background: white; color: black; }
}