/* ============================================
   BEEF CASINO - Neon Glamour Design System
   ============================================ */

:root {
    --background: #faf9f6;
    --foreground: #2a1a1d;
    --card: #ffffff;
    --card-foreground: #2a1a1d;
    --primary: #7a1f2b;
    --primary-foreground: #ffffff;
    --secondary: #f5f5f4;
    --secondary-foreground: #2a1a1d;
    --muted: #e7e5e4;
    --muted-foreground: #595959;
    --accent: #d97706;
    --accent-foreground: #000000;
    --border: #d6d3d1;
    --ring: #7a1f2b;
}

/* Brief mandates dark neon aesthetic - promote dark tokens to default */
:root {
    --background: #0a0608;
    --background-elevated: #14080d;
    --foreground: #fafaf9;
    --card: #1a0d14;
    --card-elevated: #221019;
    --card-foreground: #fafaf9;
    --primary: #e91e89;
    --primary-glow: #ff1493;
    --primary-foreground: #ffffff;
    --secondary: #1a0d14;
    --secondary-foreground: #fafaf9;
    --muted: #2a1a22;
    --muted-foreground: #b8a8b0;
    --accent: #fde047;
    --accent-glow: #fef08a;
    --accent-foreground: #000000;
    --border: #3a2530;
    --border-bright: #5a3545;
    --ring: #e91e89;

    --font-heading: "Unbounded", system-ui, sans-serif;
    --font-body: "Outfit", system-ui, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --section-y: 3.75rem;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-glow-magenta: 0 0 24px rgba(233, 30, 137, 0.45), 0 0 48px rgba(233, 30, 137, 0.2);
    --shadow-glow-yellow: 0 0 24px rgba(253, 224, 71, 0.5), 0 0 48px rgba(253, 224, 71, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.6);

    --max-width: 1280px;
    --transition: 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (min-width: 1024px) {
    :root { --section-y: 7.5rem; }
}

/* ============================================
   OVERFLOW SAFETY
   ============================================ */
*, *::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 { max-width: 100%; overflow-x: auto; }
.table-wrapper { max-width: 100%; overflow-x: auto; min-width: 0; }
p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; }
section { overflow: clip; }

/* ============================================
   BASE
   ============================================ */
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(233, 30, 137, 0.12), transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(253, 224, 71, 0.06), transparent 50%);
    background-attachment: fixed;
}

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

h1 { font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem); font-weight: 600; }
h4 { font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.375rem); font-weight: 600; }

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

a {
    color: var(--primary-glow);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--accent); text-decoration: underline; }

ul, ol { padding-left: 1.25rem; margin: 0 0 var(--space-md); }
li { margin-bottom: 0.4rem; }

img { display: block; }

::selection { background: var(--primary); color: #fff; }

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

.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;
}

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

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

.section { padding: var(--section-y) 0; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 6, 8, 0.92);
    border-bottom: 1px solid var(--border);
}

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

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--foreground);
    text-decoration: none;
    letter-spacing: -0.03em;
}
.site-brand:hover { text-decoration: none; color: var(--foreground); }

.brand-mark {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-glow-magenta);
    position: relative;
}
.brand-chip {
    width: 14px; height: 14px;
    background: var(--background);
    border-radius: 3px;
    transform: rotate(45deg);
}
.brand-text { white-space: nowrap; }
.brand-accent { color: var(--primary-glow); }

/* Desktop nav */
.primary-nav { display: none; }

@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
        align-items: center;
        gap: var(--space-lg);
    }
    .nav-list {
        display: flex;
        list-style: none;
        padding: 0; margin: 0;
        gap: 1.25rem;
    }
    .nav-list a {
        color: var(--foreground);
        font-family: var(--font-body);
        font-weight: 500;
        font-size: 0.95rem;
        padding: 0.5rem 0;
        position: relative;
    }
    .nav-list a:hover {
        color: var(--primary-glow);
        text-decoration: none;
    }
    .nav-list a::after {
        content: "";
        position: absolute;
        left: 0; bottom: -2px;
        width: 0; height: 2px;
        background: var(--primary-glow);
        box-shadow: 0 0 8px var(--primary-glow);
        transition: width var(--transition);
    }
    .nav-list a:hover::after { width: 100%; }

    .nav-actions { display: flex; gap: 0.625rem; }
}

/* Mobile menu toggle */
.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--foreground);
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

/* Mobile drawer */
@media (max-width: 1023px) {
    .primary-nav {
        display: none;
        position: fixed;
        top: 64px;
        left: 0; right: 0; bottom: 0;
        background: var(--background);
        z-index: 999;
        padding: var(--space-lg) var(--space-md);
        overflow-y: auto;
        flex-direction: column;
        gap: var(--space-lg);
    }
    .primary-nav.is-open { display: flex; }

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        list-style: none;
        padding: 0; margin: 0;
        gap: 0;
    }
    .nav-list li { margin: 0; }
    .nav-list a {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: 0.75rem 0;
        color: var(--foreground);
        font-family: var(--font-heading);
        font-weight: 500;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--border);
    }
    .nav-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: var(--space-md);
    }
    .nav-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    letter-spacing: 0.01em;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    color: var(--primary-foreground);
}
.btn-primary:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow: var(--shadow-glow-magenta);
    text-decoration: none;
    color: var(--primary-foreground);
}

.btn-accent {
    background: #ffe600;
    color: #000000;
    font-weight: 700;
}
.btn-accent:hover {
    transform: translateY(-1px) scale(1.05);
    box-shadow: var(--shadow-glow-yellow);
    text-decoration: none;
    color: #000000;
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border-bright);
}
.btn-ghost:hover {
    border-color: var(--primary-glow);
    color: var(--primary-glow);
    text-decoration: none;
}

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

.btn-glow { position: relative; isolation: isolate; }
.btn-glow::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    background: inherit;
    filter: blur(14px);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition);
    pointer-events: none;
}
.btn-glow:hover::before { opacity: 0.6; }

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 0 rgba(233, 30, 137, 0); }
    50% { box-shadow: var(--shadow-glow-magenta); }
}

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

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--primary);
    border-radius: 999px;
    color: var(--primary-glow);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}
.hero-eyebrow::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--primary-glow);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-glow);
}

.hero h1 {
    margin-bottom: var(--space-md);
}
.hero h1 .neon {
    color: var(--accent);
    text-shadow: 0 0 18px rgba(253, 224, 71, 0.6);
}
.hero h1 .neon-magenta {
    color: var(--primary-glow);
    text-shadow: 0 0 18px rgba(233, 30, 137, 0.6);
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    max-width: 56ch;
    margin-bottom: var(--space-lg);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}
.hero-stat {
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(26, 13, 20, 0.6);
}
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 12px rgba(253, 224, 71, 0.4);
    display: block;
}
.hero-stat-label {
    font-size: 0.82rem;
    color: var(--muted-foreground);
}

.hero-media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, rgba(233, 30, 137, 0.15), rgba(253, 224, 71, 0.08));
    box-shadow: 0 30px 80px rgba(233, 30, 137, 0.25);
}
.hero-media img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 6, 8, 0.6));
    pointer-events: none;
}

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

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

.neon-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

@media (min-width: 1024px) {
    .neon-card { padding: var(--space-lg); }
}

.neon-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-magenta);
}

.neon-card-media {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-md);
    aspect-ratio: 16/10;
    background: var(--muted);
}
.neon-card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}
.neon-card:hover .neon-card-media img { transform: scale(1.05); }

.neon-card-badge {
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-glow-yellow);
}

.neon-card-body { display: flex; flex-direction: column; flex: 1; }

.neon-card-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-glow);
    margin-bottom: 0.5rem;
}

.neon-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.neon-card-highlight {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 16px rgba(253, 224, 71, 0.5);
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.neon-card-desc {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    flex: 1;
}

.neon-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md);
}
.neon-card-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
    color: var(--foreground);
}
.neon-card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    text-shadow: 0 0 6px rgba(253, 224, 71, 0.5);
}

.neon-card-meta {
    font-size: 0.82rem;
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
    padding: 0.5rem 0.75rem;
    background: var(--muted);
    border-radius: var(--radius-sm);
}

.neon-card .btn { width: 100%; margin-top: auto; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
    list-style: none;
    cursor: pointer;
    padding: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--foreground);
    transition: background var(--transition), color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: rgba(233, 30, 137, 0.06); color: var(--primary-glow); }

.faq-icon {
    width: 28px; height: 28px;
    flex-shrink: 0;
    position: relative;
    background: rgba(253, 224, 71, 0.1);
    border-radius: 50%;
    transition: transform var(--transition);
    box-shadow: 0 0 12px rgba(253, 224, 71, 0.25);
}
.faq-icon::before, .faq-icon::after {
    content: "";
    position: absolute;
    background: var(--accent);
    top: 50%; left: 50%;
    transition: transform var(--transition);
}
.faq-icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--muted-foreground);
    font-size: 0.98rem;
}
.faq-answer p { margin: 0; }

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.comparison-table caption {
    caption-side: top;
    text-align: left;
    padding: var(--space-sm) var(--space-md);
    color: var(--muted-foreground);
    font-size: 0.9rem;
}
.comparison-table th, .comparison-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
@media (min-width: 1024px) {
    .comparison-table th, .comparison-table td { padding: var(--space-md) var(--space-lg); }
}
.comparison-table thead th {
    background: var(--card-elevated);
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    border-bottom: 2px solid var(--primary);
}
.comparison-table tbody tr {
    transition: background var(--transition), box-shadow var(--transition);
}
.comparison-table tbody tr:hover {
    background: rgba(233, 30, 137, 0.08);
    box-shadow: inset 0 0 0 1px var(--primary);
}
.comparison-table tbody th[scope="row"] {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--foreground);
}
.comparison-table .row-highlight {
    background: rgba(253, 224, 71, 0.06);
}
.comparison-table .row-highlight th[scope="row"] { color: var(--accent); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    margin: var(--section-y) auto;
    padding: var(--space-2xl) var(--space-md);
    background:
        radial-gradient(ellipse at top, rgba(253, 224, 71, 0.15), transparent 60%),
        linear-gradient(135deg, rgba(233, 30, 137, 0.35), rgba(122, 31, 43, 0.6));
    border: 1px solid var(--primary);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: calc(var(--max-width) - var(--space-lg));
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(233, 30, 137, 0.4), transparent 70%);
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.cta-banner-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    color: #ffffff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
    margin-bottom: var(--space-md);
}

.cta-banner-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.cta-banner-micro {
    margin-top: var(--space-md);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */
.callout {
    background: var(--card);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    box-shadow: -2px 0 16px rgba(233, 30, 137, 0.2);
}
.callout-accent { border-left-color: var(--accent); box-shadow: -2px 0 16px rgba(253, 224, 71, 0.2); }
.callout-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.callout-accent .callout-title { color: var(--accent); }

.tldr {
    background: linear-gradient(135deg, rgba(233, 30, 137, 0.08), rgba(253, 224, 71, 0.04));
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}
.tldr-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}
.tldr p:last-child { margin-bottom: 0; }

.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.stat-highlight-num {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 24px rgba(253, 224, 71, 0.5);
    line-height: 1;
}
.stat-highlight-label {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

.pullquote {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    line-height: 1.4;
    color: var(--foreground);
    border-left: 4px solid var(--accent);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-xl) 0;
    background: rgba(253, 224, 71, 0.04);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.pullquote cite {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin-top: var(--space-sm);
    font-style: normal;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
}
.trust-row .trust-item {
    padding: 0.6rem 1.1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--muted-foreground);
    transition: border-color var(--transition), color var(--transition);
}
.trust-row .trust-item:hover { border-color: var(--primary); color: var(--primary-glow); }

/* SEO long-form text */
.prose {
    max-width: 880px;
    margin: 0 auto;
}
.prose p, .prose ul, .prose ol { font-size: 1.02rem; }
.prose a {
    color: var(--primary-glow);
    text-decoration: underline;
    text-decoration-color: rgba(233, 30, 137, 0.4);
    text-underline-offset: 3px;
}
.prose a:hover { color: var(--accent); text-decoration-color: var(--accent); }

/* Section heading utility */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--space-xl);
}
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

/* Two-column block */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}
@media (min-width: 1024px) {
    .two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-2xl); }
    .two-col-reverse > :first-child { order: 2; }
}
.two-col-media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-bright);
}
.two-col-media img { width: 100%; height: auto; display: block; }

/* Payment strip */
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.payment-chip {
    padding: 0.7rem 1.2rem;
    background: var(--card-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--foreground);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.payment-chip:hover { border-color: var(--primary); box-shadow: 0 0 12px rgba(233, 30, 137, 0.3); }

/* Bonus code chip */
.code-chip {
    display: inline-block;
    font-family: "Courier New", monospace;
    background: var(--card-elevated);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border: 1px dashed var(--accent);
    border-radius: var(--radius-sm);
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* Sitemap list */
.sitemap-list { list-style: none; padding: 0; margin: 0; }
.sitemap-list > li {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border);
}
.sitemap-list > li:last-child { border-bottom: none; }
.sitemap-list h2 { margin-bottom: 0.5rem; font-size: clamp(1.15rem, 2vw + 0.5rem, 1.5rem); }
.sitemap-list h2 a { color: var(--foreground); }
.sitemap-list h2 a:hover { color: var(--primary-glow); }
.sitemap-list p { color: var(--muted-foreground); margin: 0; font-size: 0.98rem; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    margin-top: var(--space-3xl);
    background: #050304;
    border-top: 1px solid var(--border);
    padding: var(--space-2xl) 0 var(--space-md);
}

.footer-inner {
    max-width: var(--max-width);
    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: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; padding: 0 var(--space-lg); }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.footer-tag {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.footer-license {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.license-badge, .age-badge {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}
.license-badge {
    background: var(--card);
    color: var(--foreground);
    border: 1px solid var(--border-bright);
}
.age-badge {
    background: #b30068;
    color: #fff;
    box-shadow: 0 0 12px rgba(233, 30, 137, 0.4);
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.footer-links, .payment-list, .responsible-links {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-links li, .payment-list li, .responsible-links li {
    margin-bottom: 0.6rem;
    font-size: 0.92rem;
    color: var(--muted-foreground);
}
.footer-links a {
    color: var(--muted-foreground);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary-glow); text-decoration: none; }

.footer-note {
    color: var(--muted-foreground);
    font-size: 0.88rem;
    margin-bottom: var(--space-md);
}

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

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

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

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