:root {
    --bg: #050505;
    --felt: #0b1a12;
    --paper: #0e0e0e;
    --line: rgba(255,255,255,0.08);
    --red: #dc2626;
    --red-bright: #ef4444;
    --red-dark: #7f1d1d;
    --gold: #d4a017;
    --gold-light: #f5d060;
    --pix: #32bcad;
    --text: #f4f0e8;
    --muted: #8a867c;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Barlow', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    font-size: 16px;
    overflow-x: hidden;
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
    position: relative;
    z-index: 2;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(5,5,5,0.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.header::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), var(--gold), var(--red), transparent);
    opacity: .55;
}

.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
    font-size: 20px;
    letter-spacing: .06em;
    color: #fff;
    background: linear-gradient(145deg, var(--red-bright), var(--red-dark));
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 0 24px rgba(220,38,38,.45);
}

.brand-name {
    font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
    font-size: 28px;
    letter-spacing: .08em;
    line-height: 1;
}

.brand-name small {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: .28em;
    color: var(--gold);
    font-weight: 600;
    margin-top: 2px;
}

.nav { display: flex; gap: 28px; }
.nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color .15s;
}
.nav a:hover { color: var(--gold-light); }

.header-btns { display: flex; gap: 8px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--line);
    color: var(--text);
    background: transparent;
    transition: transform .2s, filter .2s, box-shadow .2s, border-color .2s;
    position: relative;
    overflow: hidden;
}
.btn:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-1px); }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-fill {
    background: linear-gradient(180deg, var(--red-bright), var(--red-dark));
    border-color: #b91c1c;
    color: #fff;
    box-shadow: 0 8px 28px rgba(220,38,38,.35);
}
.btn-fill:hover { filter: brightness(1.08); color: #fff; }
.btn-gold {
    background: linear-gradient(180deg, #ffe08a, var(--gold));
    border-color: #b8860b;
    color: #1a0a00;
    box-shadow: 0 8px 28px rgba(212,160,23,.35);
}
.btn-gold:hover { filter: brightness(1.05); color: #1a0a00; }
.btn-pix {
    background: linear-gradient(180deg, #4fd4c6, var(--pix));
    border-color: #1f9e92;
    color: #022;
    font-weight: 800;
}
.btn-pix:hover { filter: brightness(1.06); color: #022; }

.btn-gold::after, .btn-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.28) 50%, transparent 60%);
    transform: translateX(-120%);
    animation: shine 4.5s ease-in-out infinite;
}
@keyframes shine {
    0%, 70% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding: 56px 0 72px;
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hero-felt {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 72% 48%, rgba(20, 16, 8, .9), transparent 62%),
        radial-gradient(ellipse 55% 45% at 18% 75%, rgba(60, 8, 8, .4), transparent 55%),
        linear-gradient(180deg, #070707 0%, #0a0a0a 45%, #050505 100%);
}

.hero-veil {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
    opacity: .7;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: glowPulse 6s ease-in-out infinite;
}
.hero-glow--red {
    width: 480px; height: 480px;
    top: -10%; left: -8%;
    background: rgba(220,38,38,.28);
}
.hero-glow--gold {
    width: 420px; height: 420px;
    right: 5%; bottom: 5%;
    background: rgba(212,160,23,.12);
    animation-delay: -3s;
}
@keyframes glowPulse {
    0%, 100% { opacity: .7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

.hero-spark {
    position: absolute;
    left: var(--x); top: var(--y);
    width: 4px; height: 4px;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold-light);
    animation: spark 3.2s ease-in-out infinite;
    animation-delay: var(--d);
}
@keyframes spark {
    0%, 100% { opacity: .15; transform: scale(.6); }
    50% { opacity: 1; transform: scale(1.4); }
}

.hero-floor {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.75));
    z-index: 1;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.hero-brand, .cta-brand {
    font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
    font-size: clamp(48px, 8vw, 92px);
    letter-spacing: .06em;
    line-height: .9;
    margin-bottom: 12px;
    text-shadow: 0 4px 40px rgba(0,0,0,.6);
}
.hero-brand span, .cta-brand span {
    color: var(--gold-light);
    text-shadow: 0 0 40px rgba(240,192,64,.35);
}

.hero h1 {
    font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 5.2vw, 58px);
    line-height: .95;
    letter-spacing: .02em;
    margin-bottom: 18px;
    color: #e8e2d6;
}
.hero h1 em {
    font-style: normal;
    color: var(--red-bright);
    text-shadow: 0 0 48px rgba(239,68,68,.4);
}

.hero-lead {
    font-size: 17px;
    color: var(--muted);
    max-width: 420px;
    margin-bottom: 28px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* WHEEL STAGE */
.hero-stage {
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at 50% 48%, rgba(226,182,74,.08), transparent 58%);
    border-radius: 50%;
}

.wheel-stage {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}

.wheel-aura {
    position: absolute;
    inset: 6%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,160,23,.22), transparent 65%);
    animation: aura 4s ease-in-out infinite;
}
@keyframes aura {
    0%, 100% { transform: scale(1); opacity: .7; }
    50% { transform: scale(1.06); opacity: 1; }
}

.wheel-bulbs {
    position: absolute;
    inset: 4%;
    border-radius: 50%;
    border: 3px solid #2a2110;
    box-shadow:
        0 0 0 6px #1a1508,
        inset 0 0 30px rgba(212,160,23,.15);
    background:
        radial-gradient(circle at 50% 2%, #f5d060 0 5px, transparent 6px),
        radial-gradient(circle at 85% 15%, #f5d060 0 4px, transparent 5px),
        radial-gradient(circle at 98% 50%, #f5d060 0 5px, transparent 6px),
        radial-gradient(circle at 85% 85%, #f5d060 0 4px, transparent 5px),
        radial-gradient(circle at 50% 98%, #f5d060 0 5px, transparent 6px),
        radial-gradient(circle at 15% 85%, #f5d060 0 4px, transparent 5px),
        radial-gradient(circle at 2% 50%, #f5d060 0 5px, transparent 6px),
        radial-gradient(circle at 15% 15%, #f5d060 0 4px, transparent 5px);
    animation: bulbs 1.2s steps(2) infinite;
}
@keyframes bulbs {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.35); }
}

.wheel-pointer {
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid var(--gold-light);
    z-index: 8;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,.8));
}

.wheel-rim {
    position: relative;
    width: 78%;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 10px;
    background: linear-gradient(145deg, #f0c040, #8a6a10 40%, #f5d060 70%, #5c4510);
    box-shadow:
        0 20px 50px rgba(0,0,0,.7),
        inset 0 2px 4px rgba(255,255,255,.35);
}

.wheel-disc {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background: conic-gradient(
        from 0deg,
        #b91c1c 0deg 45deg,
        #0a0a0a 45deg 90deg,
        #dc2626 90deg 135deg,
        #0a0a0a 135deg 180deg,
        #b91c1c 180deg 225deg,
        #0a0a0a 225deg 270deg,
        #ef4444 270deg 315deg,
        #0a0a0a 315deg 360deg
    );
    box-shadow: inset 0 0 40px rgba(0,0,0,.55);
    animation: spinWheel 18s linear infinite;
}
@keyframes spinWheel { to { transform: rotate(360deg); } }

.wheel-seg-label {
    position: absolute;
    left: 50%; top: 50%;
    width: 1px; height: 1px;
    transform: rotate(var(--a)) translateY(-105px);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #fff;
    text-shadow: 0 1px 3px #000;
    pointer-events: none;
}
.wheel-seg-label.small { color: #888; font-size: 14px; }
.wheel-seg-label.jack { color: var(--gold-light); font-size: 22px; }

.wheel-hub {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f5d060, #8a6a10);
    display: grid;
    place-items: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.4);
    z-index: 5;
}
.wheel-hub span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: #1a0a00;
    letter-spacing: .05em;
}

.wheel-caption {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--red-bright);
    box-shadow: 0 0 10px var(--red-bright);
    animation: pulse 1.4s ease infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

/* TICKER + JACKPOT */
.ticker {
    background: #0a0a0a;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    white-space: nowrap;
}
.ticker-track {
    display: inline-block;
    padding: 11px 0;
    animation: ticker 45s linear infinite;
    font-size: 13px;
    color: var(--muted);
}
.ticker-track span { padding: 0 36px; }
.ticker-track .win { color: var(--gold-light); font-weight: 600; }
.ticker-track .dot { color: var(--red); }
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.jackpot-bar {
    background: linear-gradient(90deg, #3b0a0a, #120808, #3b0a0a);
    border-bottom: 1px solid rgba(212,160,23,.25);
    padding: 14px 0;
    text-align: center;
}
.jackpot-bar p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
}
.jackpot-bar strong {
    color: var(--gold-light);
    font-size: 26px;
    letter-spacing: .04em;
    margin-left: 10px;
    text-shadow: 0 0 24px rgba(240,192,64,.45);
}

/* JOGOS */
.jogos {
    padding: 88px 0 72px;
    background:
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(220,38,38,.08), transparent 60%),
        var(--bg);
}

.section-head { margin-bottom: 40px; max-width: 520px; }
.section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.section-head h2, .wins-head h2, .pix-copy h2 {
    font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 5vw, 52px);
    letter-spacing: .03em;
    line-height: 1;
    margin-bottom: 10px;
}
.section-head p, .pix-copy > p { color: var(--muted); font-size: 16px; }

.jogos-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}
.jogo.featured { grid-row: 1 / 3; }

.jogo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(165deg, #141414, #0c0c0c);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.jogo:hover {
    transform: translateY(-4px);
    border-color: rgba(212,160,23,.45);
    box-shadow: 0 20px 50px rgba(0,0,0,.45), 0 0 0 1px rgba(212,160,23,.15);
}

.jogo-visual {
    position: relative;
    min-height: 160px;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.jogo.featured .jogo-visual { min-height: 320px; }

.jogo-visual--roleta {
    background:
        radial-gradient(circle at 50% 40%, rgba(212,160,23,.2), transparent 50%),
        linear-gradient(160deg, #1a0a0a, #0a1210 60%, #0a0a0a);
}
.jogo-visual--mystery {
    background: linear-gradient(160deg, #1a1028, #0d0a14);
}
.jogo-visual--scratch {
    background: linear-gradient(160deg, #1a1408, #0f0c06);
}
.jogo-visual--bicho {
    background: linear-gradient(160deg, #0a1a10, #061208);
}

.jogo-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--red);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 10px;
    z-index: 2;
}

.mini-wheel {
    position: relative;
    width: 180px; height: 180px;
}
.jogo.featured .mini-wheel { width: 240px; height: 240px; }
.mini-wheel-disc {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: conic-gradient(#dc2626 0 45deg, #111 45deg 90deg, #dc2626 90deg 135deg, #111 135deg 180deg, #dc2626 180deg 225deg, #111 225deg 270deg, #dc2626 270deg 315deg, #111 315deg 360deg);
    border: 8px solid #d4a017;
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
    animation: spinWheel 14s linear infinite;
}
.mini-wheel-hub {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #f5d060;
}

.mystery-box-art {
    position: relative;
    width: 90px; height: 80px;
    transform-style: preserve-3d;
    animation: boxFloat 3s ease-in-out infinite;
}
@keyframes boxFloat {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50% { transform: translateY(-8px) rotate(4deg); }
}
.mb-body {
    position: absolute; bottom: 0; left: 0; right: 0; height: 52px;
    background: linear-gradient(180deg, #7c3aed, #4c1d95);
    border: 2px solid #c4b5fd;
    box-shadow: 0 8px 24px rgba(124,58,237,.4);
}
.mb-lid {
    position: absolute; top: 8px; left: -4px; right: -4px; height: 22px;
    background: linear-gradient(180deg, #a78bfa, #6d28d9);
    border: 2px solid #ddd6fe;
    transform-origin: bottom;
}
.mb-ribbon {
    position: absolute; left: 50%; top: 8px; bottom: 0;
    width: 14px; margin-left: -7px;
    background: linear-gradient(180deg, #fbbf24, #d97706);
}

.scratch-art {
    width: 140px; height: 90px;
    border: 3px solid #d4a017;
    background: linear-gradient(135deg, #2a2210, #1a1508);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}
.scratch-foil {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(135deg, #c0c0c0 0 8px, #e8e8e8 8px 16px);
    opacity: .55;
    animation: foil 2.8s ease-in-out infinite;
}
@keyframes foil {
    0%, 100% { clip-path: inset(0 0 0 0); }
    50% { clip-path: inset(0 0 0 45%); }
}
.scratch-art span {
    position: relative;
    z-index: 1;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--gold-light);
}

.bicho-art {
    text-align: center;
    padding: 16px 28px;
    border: 2px solid rgba(212,160,23,.4);
    background: rgba(0,0,0,.35);
}
.bicho-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--gold-light);
    line-height: 1;
}
.bicho-name {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-size: 14px;
    color: #9ae6b4;
}

.jogo-meta { padding: 20px 22px 24px; }
.jogo-meta h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: .04em;
    margin-bottom: 6px;
}
.jogo-meta p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 14px;
}
.jogo-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-light);
}
.jogo-cta::after { content: ' →'; }

/* WINS */
.wins {
    padding: 64px 0 80px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, #080808, #050505);
}
.wins-head { margin-bottom: 28px; }
.wins-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.win-item {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 16px;
    background: #101010;
    border: 1px solid var(--line);
}
.win-item strong { display: block; font-size: 14px; }
.win-item span { font-size: 12px; color: var(--muted); }
.win-item em {
    font-style: normal;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: #4ade80;
}
.win-game {
    width: 48px; height: 48px;
    border-radius: 4px;
}
.win-game--roleta { background: conic-gradient(#dc2626 0 25%, #111 0 50%, #dc2626 0 75%, #111 0); border: 2px solid var(--gold); border-radius: 50%; }
.win-game--scratch { background: repeating-linear-gradient(135deg, #999 0 4px, #ccc 4px 8px); }
.win-game--mystery { background: linear-gradient(135deg, #7c3aed, #4c1d95); }
.win-game--bicho { background: linear-gradient(135deg, #166534, #052e16); }

/* PIX */
.pix-strip {
    padding: 88px 0;
    background:
        radial-gradient(ellipse 40% 50% at 85% 50%, rgba(50,188,173,.12), transparent 60%),
        #070707;
    border-top: 1px solid var(--line);
}
.pix-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
}
.pix-steps {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pix-steps li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    font-weight: 600;
}
.pix-steps span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--pix);
    letter-spacing: .04em;
    min-width: 40px;
}

.pix-device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.phone {
    width: 240px;
    background: linear-gradient(160deg, #1c1c1e, #0a0a0a);
    border: 2px solid #333;
    border-radius: 28px;
    padding: 14px 12px 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(50,188,173,.15);
    position: relative;
}
.phone-notch {
    width: 72px; height: 8px;
    background: #222;
    border-radius: 8px;
    margin: 0 auto 16px;
}
.phone-screen {
    background: #0b1514;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(50,188,173,.25);
}
.phone-label {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--pix);
    margin-bottom: 14px;
}
.phone-qr {
    width: 120px; height: 120px;
    margin: 0 auto 14px;
    background:
        linear-gradient(#32bcad 0 0) 0 0 / 20% 20%,
        linear-gradient(#32bcad 0 0) 100% 0 / 20% 20%,
        linear-gradient(#32bcad 0 0) 0 100% / 20% 20%,
        linear-gradient(#111 0 0);
    background-repeat: no-repeat;
    background-color: #e8fff9;
    border: 4px solid #fff;
    animation: qrPulse 2.4s ease-in-out infinite;
}
@keyframes qrPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(50,188,173,.3); }
    50% { box-shadow: 0 0 0 10px rgba(50,188,173,0); }
}
.phone-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #fff;
}
.phone-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* CTA FINAL */
.cta-final {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid var(--line);
}
.cta-glow {
    position: absolute;
    left: 50%; top: 40%;
    transform: translate(-50%, -50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(220,38,38,.25), transparent 65%);
    pointer-events: none;
}
.cta-final h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 7vw, 72px);
    letter-spacing: .04em;
    margin-bottom: 10px;
}
.cta-final > .wrap > p { color: var(--muted); margin-bottom: 28px; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* FOOTER */
.footer {
    border-top: 1px solid var(--line);
    padding: 48px 0 28px;
    background: #050505;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
}
.footer-about {
    font-size: 14px;
    color: var(--muted);
    max-width: 360px;
}
.footer-about strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--text);
    letter-spacing: .06em;
    margin-bottom: 8px;
}
.footer-badges { display: flex; gap: 8px; margin-top: 16px; }
.badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid var(--line);
}
.badge--pix { color: var(--pix); border-color: rgba(50,188,173,.4); }
.badge--18 { color: var(--red-bright); border-color: rgba(220,38,38,.4); }
.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 12px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-legal {
    grid-column: 1 / -1;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    color: #555;
}
.footer-legal a { color: inherit; opacity: .5; }

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay { transition-delay: .15s; }

/* RESPONSIVE */
@media (max-width: 960px) {
    .nav { display: none; }
    .hero-inner, .pix-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero { min-height: auto; padding: 40px 0 56px; text-align: center; }
    .hero-lead { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stage { order: -1; }
    .wheel-stage { width: min(100%, 320px); }
    .jogos-grid { grid-template-columns: 1fr 1fr; }
    .jogo.featured { grid-row: auto; grid-column: 1 / -1; }
    .jogo.featured .jogo-visual { min-height: 220px; }
    .wins-rail { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    .jogos-grid, .wins-rail { grid-template-columns: 1fr; }
    .header-btns .btn:not(.btn-fill) { display: none; }
    .footer-inner { grid-template-columns: 1fr; }
}

/* ========== PREVIEWS DOS JOGOS REAIS ========== */
.lp-preview {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.lp-preview .rw-scene,
.lp-preview .mbox-wrap,
.lp-preview .scratch-scene {
    margin: 0;
    max-width: none;
}

.lp-preview .rw-title,
.lp-preview .rw-hint,
.lp-preview .rw-sound,
.lp-preview .rw-result,
.lp-preview .mbox-title,
.lp-preview .mbox-hint,
.lp-preview .mbox-result,
.lp-preview .scratch-title,
.lp-preview .scratch-hint,
.lp-preview .scratch-result {
    display: none !important;
}

/* Hero: mesma roleta do jogo, tamanho um pouco menor */
.lp-preview--hero {
    width: 100%;
    max-width: 480px;
}
.lp-preview--hero .rw-scene {
    width: 100%;
    max-width: 480px;
}
.lp-preview--hero .rw-wheel-box {
    --rw-size: min(440px, 82vw);
}
.lp-preview--hero .wheel-caption {
    position: static;
    transform: none;
    margin-top: 18px;
}

/* Aura dourada atrás da roleta do hero */
.lp-preview--hero .rw-scene--landing::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 48%;
    width: 78%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 182, 74, 0.22) 0%, rgba(226, 182, 74, 0.06) 45%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: lpHeroAura 3.2s ease-in-out infinite;
}
@keyframes lpHeroAura {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
}

.lp-preview--card {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Roleta no card — tamanho real, sem scale (evita labels tortos) */
.lp-preview--roulette .rw-wheel-box {
    --rw-size: min(300px, 56vw);
}
.jogo.featured .jogo-visual--roleta {
    min-height: 360px;
    padding: 28px 0 12px;
    background:
        radial-gradient(circle at 50% 45%, rgba(226, 182, 74, 0.12), transparent 55%),
        linear-gradient(160deg, #121212, #080808);
}

.lp-spin-slow {
    animation: lpWheelSpin 22s linear infinite !important;
    transition: none !important;
}
@keyframes lpWheelSpin {
    to { transform: rotate(360deg); }
}

/* Caixa misteriosa no card — scale do original (mantém proporção idêntica) */
.lp-preview--mystery {
    height: 210px;
    overflow: hidden;
}
.lp-preview--mystery .mbox-wrap {
    width: 340px;
    max-width: none;
    transform: scale(0.58);
    transform-origin: center 62%;
}
.lp-preview--mystery .mbox-scene {
    width: 340px;
    height: 340px;
}
.lp-preview--mystery .mbox-glow {
    opacity: 0.4;
}

/* Raspadinha no card */
.lp-preview--scratch {
    padding: 16px 14px;
}
.lp-preview--scratch .scratch-scene {
    max-width: 260px;
    margin: 0 auto;
}
.lp-preview--scratch .scratch-card-wrap {
    animation: scratchFloaty 5s ease-in-out infinite;
}
.lp-preview--scratch .scratch-notch {
    background: #0a0a0a;
}
.lp-scratch-foil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.35), transparent 40%),
        repeating-linear-gradient(135deg, #c8c8c8 0 6px, #eaeaea 6px 12px);
    clip-path: polygon(38% 0, 100% 0, 100% 100%, 55% 100%);
    pointer-events: none;
    z-index: 3;
}

.mini-wheel, .mystery-box-art, .scratch-art { display: none; }
