/* ============================================================
   VOID BREAKOUT — LANDING PAGE STYLESHEET
   Dark Cinematic · Gold/Crimson/Void Palette
   ============================================================ */

   :root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dim: rgba(201,168,76,0.15);
    --crimson: #B22234;
    --crimson-glow: rgba(178,34,52,0.4);
    --void: #050507;
    --void-2: #0C0C10;
    --void-3: #141418;
    --void-4: #1C1C22;
    --ash: #9090A0;
    --smoke: #5A5A6A;
    --white: #F4F1EC;
    --white-dim: rgba(244,241,236,0.55);
    --font-display: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --font-impact: 'Bebas Neue', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--void);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ── Particle Canvas ── */
#particleCanvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ── Noise Overlay ── */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
}

/* ── Vignette ── */
.vignette {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.75) 100%);
}

/* ============================================================
   HEADER
   ============================================================ */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    transition: background 0.4s var(--ease-in-out), border-color 0.4s;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(5,5,7,0.9);
    backdrop-filter: blur(16px);
    border-color: rgba(201,168,76,0.12);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-mark {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    font-size: 1.4rem;
    color: var(--gold);
    filter: drop-shadow(0 0 8px var(--gold));
    animation: pulseGold 3s ease-in-out infinite;
}

@keyframes pulseGold {
    0%, 100% { filter: drop-shadow(0 0 6px var(--gold)); }
    50% { filter: drop-shadow(0 0 14px var(--gold-light)); }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--white);
}

nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--ash);
    text-decoration: none;
    transition: color 0.25s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-out-expo);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid rgba(201,168,76,0.1);
    background: rgba(5,5,7,0.97);
    gap: 1.2rem;
}

.mobile-nav .nav-link {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    nav { display: none; }
    .nav-toggle { display: flex; }
    .mobile-nav.open { display: flex; }
    .header-inner { padding: 1rem 1.25rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(900px, 130vw);
    height: min(900px, 130vw);
    background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 65%);
    pointer-events: none;
    animation: heroBreath 6s ease-in-out infinite;
}

@keyframes heroBreath {
    0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%,-50%) scale(1.12); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 760px;
    text-align: center;
}

/* ── Eyebrow ── */
.eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.eyebrow-line {
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow-line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* ── Hero Title ── */
.hero-title {
    font-family: var(--font-impact);
    font-size: clamp(4.5rem, 13vw, 11rem);
    line-height: 0.88;
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
    display: block;
}

.title-line {
    display: block;
    color: var(--white);
    position: relative;
}

.title-line.accent {
    color: transparent;
    -webkit-text-stroke: 2px var(--gold);
    text-shadow: 0 0 80px rgba(201,168,76,0.3);
    animation: strokePulse 4s ease-in-out infinite;
}

@keyframes strokePulse {
    0%, 100% { text-shadow: 0 0 60px rgba(201,168,76,0.25); }
    50% { text-shadow: 0 0 120px rgba(201,168,76,0.5); }
}

/* ── Hero Description ── */
.hero-desc {
    font-size: 1rem;
    color: var(--white-dim);
    line-height: 1.9;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    letter-spacing: 0.02em;
}

/* ── CTA ── */
.cta-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 2.2rem;
    background: linear-gradient(135deg, var(--gold) 0%, #A8882A 100%);
    border-radius: 4px;
    text-decoration: none;
    color: var(--void);
    font-weight: 700;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(201,168,76,0.35); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(-1px); }

.btn-primary.large { padding: 1.2rem 2.8rem; gap: 1.5rem; }

.btn-icon {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
    animation: nudgeDown 2s ease-in-out infinite;
}

@keyframes nudgeDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

.btn-label {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.btn-label small {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    opacity: 0.75;
    text-transform: uppercase;
}

.btn-label strong {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
}

.btn-glow {
    position: absolute;
    inset: 0;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(201,168,76,0.5);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(201,168,76,0.35); }
    50% { box-shadow: 0 0 60px rgba(201,168,76,0.55); }
}

.cta-note {
    font-size: 0.65rem;
    color: var(--smoke);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(201,168,76,0.3);
    padding: 0.65rem 1.5rem;
    border-radius: 2px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-ghost:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ── Stats Row ── */
.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(12,12,16,0.8);
    backdrop-filter: blur(12px);
}

.stat {
    flex: 1;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 1rem;
    gap: 0.25rem;
}

.stat-n {
    font-family: var(--font-impact);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    line-height: 1;
}

.stat-l {
    font-size: 0.6rem;
    color: var(--ash);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(201,168,76,0.12);
    flex-shrink: 0;
}

/* ── Orbit ── */
.game-orbit {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    pointer-events: none;
}

@media (max-width: 1100px) { .game-orbit { display: none; } }

.orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(201,168,76,0.15);
    animation: orbitRotate 25s linear infinite;
}

@keyframes orbitRotate { to { transform: rotate(360deg); } }

.orbit-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    transform:
        rotate(var(--a))
        translateX(170px)
        rotate(calc(-1 * var(--a)));
    background: rgba(12,12,16,0.9);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -24px;
    margin-top: -24px;
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.orbit-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    animation: coreGlow 3s ease-in-out infinite;
}

@keyframes coreGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0.2); }
    50% { box-shadow: 0 0 40px rgba(201,168,76,0.4); }
}

/* ── Scroll Hint ── */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 5;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLineDrop 1.8s ease-in-out infinite;
}

@keyframes scrollLineDrop {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.01% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.scroll-hint span {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--smoke);
    text-transform: uppercase;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s var(--ease-out-expo) forwards;
    animation-delay: var(--d, 0s);
}

@keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
    position: relative;
    z-index: 2;
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, var(--void), var(--void-2));
    border-top: 1px solid rgba(201,168,76,0.08);
}

.section-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-impact);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.9;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 3.5rem;
}

.section-title em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--gold);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.08);
}

.feat-card {
    background: var(--void-2);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.feat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out-expo);
}

.feat-card:hover { background: var(--void-3); }
.feat-card:hover::after { transform: scaleX(1); }

.feat-number {
    font-family: var(--font-impact);
    font-size: 4.5rem;
    color: rgba(201,168,76,0.06);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.feat-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
}

.feat-card h3 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--white);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.feat-card p {
    font-size: 0.875rem;
    color: var(--ash);
    line-height: 1.75;
}

/* ============================================================
   GAMES STRIP
   ============================================================ */
.games-strip-section {
    position: relative;
    z-index: 2;
    padding: 6rem 0;
    background: var(--void-2);
    border-top: 1px solid rgba(201,168,76,0.08);
    overflow: hidden;
}

.games-strip-section .section-wrap {
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.games-marquee-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.games-marquee-wrap::before,
.games-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

.games-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--void-2), transparent);
}

.games-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--void-2), transparent);
}

.games-marquee {
    display: flex;
    gap: 1.5rem;
    animation: marquee 20s linear infinite;
    width: max-content;
    padding: 0.5rem 0;
}

.games-marquee:hover { animation-play-state: paused; }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.gm-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    background: var(--void-3);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 3px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s;
    cursor: default;
}

.gm-card:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.06);
    transform: translateY(-3px);
}

.gm-icon { font-size: 1.4rem; }

.gm-name {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--white);
    text-transform: uppercase;
}

.games-cta-row {
    text-align: center;
    padding: 0 2rem;
}

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.bottom-cta-section {
    position: relative;
    z-index: 2;
    padding: 8rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(201,168,76,0.08);
    background: linear-gradient(to bottom, var(--void-2), var(--void));
    overflow: hidden;
}

.bottom-cta-glow {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 65%);
    pointer-events: none;
}

.bottom-cta-wrap { position: relative; z-index: 2; }

.bottom-cta-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--crimson);
    border: 1px solid var(--crimson);
    padding: 0.4rem 1rem;
    border-radius: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 rgba(178,34,52,0); }
    50% { box-shadow: 0 0 20px rgba(178,34,52,0.3); }
}

.bottom-cta-title {
    font-family: var(--font-impact);
    font-size: clamp(3.5rem, 10vw, 9rem);
    line-height: 0.88;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.bottom-cta-sub {
    font-size: 0.9rem;
    color: var(--ash);
    letter-spacing: 0.08em;
    margin-bottom: 3rem;
}

.bottom-cta-meta {
    margin-top: 1.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--smoke);
    text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(201,168,76,0.1);
    background: var(--void);
    padding: 2rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--ash);
}

.footer-brand .logo-icon {
    font-size: 1rem;
    color: var(--gold);
    filter: none;
    animation: none;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--smoke);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.25s;
}

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

.footer-copy {
    font-size: 0.65rem;
    color: var(--smoke);
    letter-spacing: 0.08em;
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    overflow-y: auto;
}

.modal-overlay.active { display: flex; animation: modalFadeIn 0.3s ease; }

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-box {
    position: relative;
    background: var(--void-3);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    padding: 3rem;
    width: 100%;
    max-width: 520px;
    animation: modalSlide 0.35s var(--ease-out-expo);
    box-shadow: 0 30px 80px rgba(0,0,0,0.7), inset 0 1px 0 rgba(201,168,76,0.1);
    margin: auto;
}

.modal-box.wide-modal { max-width: 860px; }

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--ash);
    font-size: 0.85rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(201,168,76,0.15);
    border-color: rgba(201,168,76,0.4);
    color: var(--gold);
    transform: rotate(90deg);
}

/* Download Modal */
.download-modal { text-align: center; }

.modal-header-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
    animation: nudgeDown 2s ease-in-out infinite;
}

.download-modal h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.modal-sub {
    font-size: 0.8rem;
    color: var(--ash);
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
}

.dl-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gold) 0%, #A8882A 100%);
    color: var(--void);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 3px;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.dl-primary-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,168,76,0.35); }

.dl-size {
    font-size: 0.65rem;
    background: rgba(0,0,0,0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    letter-spacing: 0.05em;
    font-weight: 400;
}

.dl-note {
    font-size: 0.72rem;
    color: var(--smoke);
    line-height: 1.7;
    max-width: 340px;
    margin: 0 auto;
}

/* Wide Modal Common */
.modal-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.modal-label {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.modal-box h2 {
    font-family: var(--font-impact);
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    color: var(--white);
}

.modal-footer-note {
    font-size: 0.78rem;
    color: var(--smoke);
    text-align: center;
    font-style: italic;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* Games Grid */
.modal-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.modal-game-card {
    background: var(--void-4);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 3px;
    padding: 1.5rem;
    transition: all 0.3s;
    cursor: default;
}

.modal-game-card:hover {
    border-color: rgba(201,168,76,0.35);
    background: rgba(201,168,76,0.04);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.mgc-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.modal-game-card h3 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.modal-game-card p {
    font-size: 0.8rem;
    color: var(--ash);
    line-height: 1.7;
}

/* Sections (About, Fair Play) */
.modal-sections {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modal-section-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--void-4);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 3px;
    transition: all 0.3s;
}

.modal-section-item:hover {
    border-color: rgba(201,168,76,0.15);
    background: rgba(201,168,76,0.03);
}

.msi-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
    margin-top: 2px;
}

.modal-section-item h3 {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.modal-section-item p {
    font-size: 0.82rem;
    color: var(--ash);
    line-height: 1.75;
}

.modal-guarantee {
    margin-top: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(178,34,52,0.04) 100%);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 3px;
    text-align: center;
}

.modal-guarantee h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.modal-guarantee p {
    font-size: 0.83rem;
    color: var(--ash);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.modal-guarantee em {
    font-size: 0.78rem;
    color: var(--smoke);
    font-style: italic;
}

/* Support Modal */
.support-hero-block {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(201,168,76,0.07), rgba(178,34,52,0.04));
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

.shb-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

.support-hero-block h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.support-hero-block p {
    font-size: 0.82rem;
    color: var(--ash);
    margin-bottom: 1.25rem;
}

.support-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(201,168,76,0.3);
    padding: 0.6rem 1.25rem;
    border-radius: 2px;
    transition: all 0.3s;
}

.support-email-btn:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
}

.faq-list { gap: 0; }

.faq-item {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.25s;
}

.faq-item:last-child { border-bottom: none; }
.faq-item:hover { background: rgba(201,168,76,0.03); padding-left: 1.75rem; }

.faq-item h4 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.faq-item p {
    font-size: 0.8rem;
    color: var(--ash);
    line-height: 1.7;
}

/* ============================================================
   SCROLL REVEAL (Intersection Observer)
   ============================================================ */
.js-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.js-reveal.visible {
    opacity: 1;
    transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .hero { padding: 100px 1.25rem 70px; }

    .hero-title { line-height: 0.9; }

    .hero-desc { font-size: 0.9rem; }
    .hero-desc br { display: none; }

    .stats-row { display: grid; grid-template-columns: 1fr 1fr; }
    .stat-divider { display: none; }

    .features-grid { grid-template-columns: 1fr; gap: 1px; }

    .bottom-cta-section { padding: 5rem 1.25rem; }

    .modal-box { padding: 2rem 1.5rem; max-width: 100%; }
    .modal-box.wide-modal { max-width: 100%; }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .modal-games-grid { grid-template-columns: 1fr; }

    .section-title { margin-bottom: 2rem; }
}

@media (max-width: 480px) {
    .eyebrow { font-size: 0.58rem; gap: 0.6rem; }
    .eyebrow-line { width: 24px; }

    .btn-primary { padding: 0.85rem 1.75rem; gap: 1rem; }
    .btn-label strong { font-size: 0.9rem; }

    .stats-row .stat { padding: 1rem 0.5rem; }
    .stat-n { font-size: 1.6rem; }

    .modal-section-item { flex-direction: column; gap: 0.75rem; }
    .msi-icon { width: auto; }
}