/* ==========================================================================
   BAZÊ — Design System
   Tons claros/brancos + vermelho Bazê. Premium, jovem, com capricho.
   ========================================================================== */

:root {
    /* Cores da marca */
    --red: #E4002B;
    --red-600: #C60026;
    --red-700: #A8001F;
    --red-soft: #FFE5EB;
    --red-glow: rgba(228, 0, 43, .25);

    --ink: #14161B;
    --ink-2: #3A3F4B;
    --muted: #6B7280;
    --line: #ECEEF2;
    --line-2: #E2E5EA;

    --white: #FFFFFF;
    --paper: #F7F8FA;
    --paper-2: #F1F3F7;

    --ok: #12B76A;
    --warn: #F79009;

    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(16,18,27,.06), 0 1px 3px rgba(16,18,27,.05);
    --shadow-md: 0 8px 24px rgba(16,18,27,.08);
    --shadow-lg: 0 24px 60px rgba(16,18,27,.12);
    --shadow-red: 0 14px 40px rgba(228,0,43,.28);

    /* Raio */
    --r-sm: 12px;
    --r-md: 18px;
    --r-lg: 28px;
    --r-pill: 999px;

    /* Tipografia */
    --font-head: "Space Grotesk", "Sora", system-ui, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    --container: 1160px;
    --nav-h: 74px;
}

/* ------------------------------- Reset ---------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.1; margin: 0 0 .4em; letter-spacing: -.02em; font-weight: 700; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }

/* ------------------------------ Layout ---------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 92px 0; position: relative; }
.section--tint { background: var(--paper); }
.section--dark { background: var(--ink); color: #fff; }
.center { text-align: center; }
.stack-sm > * + * { margin-top: 10px; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-head); font-weight: 600; font-size: .78rem;
    letter-spacing: .14em; text-transform: uppercase; color: var(--red);
    background: var(--red-soft); padding: 7px 14px; border-radius: var(--r-pill);
}
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-top: 18px; }
.section-lead { color: var(--muted); font-size: 1.08rem; max-width: 620px; }
.section-lead-centered { margin-inline: auto; }
.empty-state-muted { color: var(--muted); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; }

/* ------------------------------ Buttons --------------------------------- */
.btn {
    --bg: var(--red); --fg: #fff;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-head); font-weight: 600; font-size: 1rem;
    padding: 14px 26px; border-radius: var(--r-pill); border: 0; cursor: pointer;
    background: var(--bg); color: var(--fg); transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
    box-shadow: var(--shadow-red); white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 46px rgba(228,0,43,.36); }
.btn:active { transform: translateY(0); }
.btn--ghost { --bg: transparent; --fg: var(--ink); box-shadow: none; border: 1.5px solid var(--line-2); }
.btn--ghost:hover { --bg: var(--paper); box-shadow: var(--shadow-sm); border-color: var(--red); color: var(--red); }
.btn--light { --bg: #fff; --fg: var(--red); box-shadow: var(--shadow-md); }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn--block { width: 100%; }

/* ------------------------------ Navbar ---------------------------------- */
.nav {
    position: sticky; top: 0; z-index: 50; height: var(--nav-h);
    display: flex; align-items: center;
    background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 9px 14px; border-radius: var(--r-pill); font-weight: 500; color: var(--ink-2); font-size: .96rem; transition: .15s; }
.nav-links a:hover { background: var(--paper); color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 48px; height: 48px; background: #fff; border: 2px solid var(--red); border-radius: 12px; cursor: pointer; padding: 8px 10px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.menu-open { overflow: hidden; }

/* Logo Bazê */
.logo { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; letter-spacing: -.03em; }
.logo-mark {
    width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--red), var(--red-700));
    color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
    box-shadow: var(--shadow-red); position: relative; overflow: hidden;
}
.logo-mark::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.5), transparent 55%); }
.logo b { color: var(--red); }

/* ------------------------------- Hero ----------------------------------- */
.hero { position: relative; padding: clamp(64px, 9vw, 118px) 0 clamp(72px, 9vw, 120px); overflow: hidden; background: var(--white); }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-blob {
    position: absolute; border-radius: 50%; filter: blur(46px); opacity: .6;
    animation: float 14s ease-in-out infinite;
}
.hero-blob.b1 { width: 460px; height: 460px; top: -140px; right: -90px; background: radial-gradient(circle, var(--red-soft), transparent 70%); }
.hero-blob.b2 { width: 380px; height: 380px; bottom: -160px; left: -100px; background: radial-gradient(circle, #FFF0D6, transparent 70%); animation-delay: -5s; }
.hero-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 46px 46px; opacity: .35; mask-image: radial-gradient(circle at 50% 40%, #000, transparent 78%); }

.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-eyebrow { margin-bottom: 22px; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); display: inline-block; }
.hero-title { font-size: clamp(2.4rem, 6vw, 4.3rem); font-weight: 700; }
.hero-title .hl { color: var(--red); position: relative; white-space: nowrap; }
.hero-title .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .28em; background: var(--red-soft); z-index: -1; border-radius: 4px; }
.hero-sub { font-size: 1.18rem; color: var(--ink-2); max-width: 520px; margin: 20px 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; border-radius: var(--r-pill); background: var(--paper); border: 1px solid var(--line); font-size: .88rem; font-weight: 500; color: var(--ink-2); }
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }

/* Hero visual card */
.hero-visual { position: relative; min-width: 0; }
.hero-card {
    background: #fff; border-radius: var(--r-lg); border: 1px solid var(--line);
    box-shadow: var(--shadow-lg); padding: 22px; position: relative; width: 100%; max-width: 100%;
    transform: rotate(1.4deg); transition: transform .3s ease;
}
.hero-card:hover { transform: rotate(0); }
.hero-screen { aspect-ratio: 16/10; border-radius: var(--r-md); background: linear-gradient(135deg, #14161B, #2A2E38); position: relative; overflow: hidden; display: grid; place-items: center; }
.hero-screen .play { width: 76px; height: 76px; border-radius: 50%; background: var(--red); display: grid; place-items: center; box-shadow: var(--shadow-red); animation: pulse 2.4s ease-in-out infinite; }
.hero-screen .play::before { content: ""; border-style: solid; border-width: 13px 0 13px 21px; border-color: transparent transparent transparent #fff; margin-left: 5px; }
.hero-screen .scan { position: absolute; left: 0; right: 0; height: 40%; top: 0; background: linear-gradient(180deg, rgba(228,0,43,.25), transparent); animation: scan 3.5s linear infinite; }
.hero-card-row { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.hero-card-row .t { font-family: var(--font-head); font-weight: 600; }
.hero-badge { position: absolute; padding: 11px 16px; border-radius: 14px; background: #fff; box-shadow: var(--shadow-md); font-family: var(--font-head); font-weight: 600; font-size: .9rem; display: flex; align-items: center; gap: 8px; }
.hero-badge.top { top: -18px; left: -22px; animation: float 6s ease-in-out infinite; }
.hero-badge.bot { bottom: -20px; right: -14px; animation: float 6s ease-in-out infinite -3s; }
.hero-badge .ico { width: 26px; height: 26px; border-radius: 8px; background: var(--red-soft); display: grid; place-items: center; }

/* ------------------------------ Cards ----------------------------------- */
.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
    box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
    overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------------------------- História ---------------------------------- */
.story { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.story-visual { position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg); background: linear-gradient(150deg, var(--red), var(--red-700)); box-shadow: var(--shadow-red); overflow: hidden; display: grid; place-items: center; }
.story-visual .big-b { font-family: var(--font-head); font-weight: 700; font-size: clamp(7rem, 18vw, 13rem); color: rgba(255,255,255,.16); }
.story-visual .tag { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(255,255,255,.14); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.25); color: #fff; border-radius: var(--r-md); padding: 16px 18px; }
.story-visual .tag .k { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; opacity: .8; }
.story-visual .tag-title { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; }
.story-visual .tag-owner { opacity: .85; font-size: .9rem; }
.story-body :is(p) { color: var(--ink-2); font-size: 1.08rem; }
.story-body img { display: block; max-width: 100%; height: auto; margin: 24px auto; border-radius: var(--r-md); }
.story-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 26px; }
.story-stat { min-width: 0; }
.story-stats .n { font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: var(--red); }
.story-stats .l { font-size: .9rem; color: var(--muted); }

/* ---------------------------- Vídeos ------------------------------------ */
.video-card { cursor: pointer; }
.video-thumb { position: relative; aspect-ratio: 16/9; background: #14161B; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.video-card:hover .video-thumb img { transform: scale(1.06); }
.video-thumb .pbtn { position: absolute; inset: 0; margin: auto; width: 60px; height: 60px; border-radius: 50%; background: rgba(228,0,43,.92); display: grid; place-items: center; box-shadow: var(--shadow-red); transition: .2s; }
.video-card:hover .pbtn { transform: scale(1.1); }
.video-thumb .pbtn::before { content: ""; border-style: solid; border-width: 10px 0 10px 16px; border-color: transparent transparent transparent #fff; margin-left: 4px; }
.video-thumb .feat { position: absolute; top: 12px; left: 12px; background: #fff; color: var(--red); font-weight: 600; font-size: .74rem; padding: 5px 11px; border-radius: var(--r-pill); text-transform: uppercase; letter-spacing: .08em; }
.video-meta { padding: 16px 18px 20px; }
.video-meta h3 { font-size: 1.08rem; margin: 0 0 6px; }
.video-meta p { color: var(--muted); font-size: .92rem; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Modal de vídeo */
.vmodal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; background: rgba(10,11,15,.82); backdrop-filter: blur(6px); padding: 20px; overflow: hidden; }
.vmodal.open { display: grid; }
.vmodal-inner { width: calc(100vw - 40px); max-width: 920px; min-width: 0; }
.vmodal-frame { width: 100%; max-width: 100%; aspect-ratio: 16/9; border-radius: var(--r-md); overflow: hidden; background: #000; box-shadow: var(--shadow-lg); }
.vmodal-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.vmodal-close { margin: 0 auto 14px; display: flex; }
body.video-modal-open { overflow: hidden; }

/* ---------------------------- Contato/Leads ----------------------------- */
.lead-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 34px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-family: var(--font-head); font-size: .92rem; margin-bottom: 8px; }
.input, .textarea, select.input {
    width: 100%; padding: 14px 16px; border-radius: var(--r-sm); border: 1.5px solid var(--line-2);
    font-family: var(--font-body); font-size: 1rem; background: var(--paper); transition: .15s; color: var(--ink);
}
.input:focus, .textarea:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px var(--red-glow); }
.input.is-invalid, .textarea.is-invalid { border-color: var(--red); background: #FFF7F8; }
.textarea { resize: vertical; min-height: 120px; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-error { color: var(--red); font-size: .86rem; margin-top: 6px; }
.form-alert { background: #ECFDF3; color: #027A48; border: 1px solid #A6F4C5; padding: 14px 16px; border-radius: var(--r-sm); margin-bottom: 18px; font-weight: 500; }
.lead-perks { list-style: none; padding: 0; margin: 24px 0 0; }
.lead-perks li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--ink-2); }
.lead-perks .ck { flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; background: var(--red-soft); color: var(--red); display: grid; place-items: center; font-weight: 700; font-size: .8rem; margin-top: 2px; }

/* ---------------------------- Enquetes ---------------------------------- */
.poll-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 30px; max-width: 720px; margin: 0 auto; }
.poll-options { display: grid; gap: 12px; margin-top: 20px; }
.poll-option { position: relative; display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1.5px solid var(--line-2); border-radius: var(--r-md); cursor: pointer; overflow: hidden; transition: .15s; background: #fff; }
.poll-option:hover { border-color: var(--red); }
.poll-option.voted { border-color: var(--red); }
.poll-option .thumb { width: 52px; height: 52px; border-radius: 12px; object-fit: cover; background: var(--paper-2); flex: 0 0 52px; }
.poll-option .oname { font-weight: 600; font-family: var(--font-head); z-index: 1; }
.poll-option .bar { position: absolute; inset: 0 auto 0 0; background: var(--red-soft); width: 0; transition: width .6s cubic-bezier(.2,.8,.2,1); z-index: 0; }
.poll-option .pct { margin-left: auto; font-weight: 700; font-family: var(--font-head); color: var(--red); z-index: 1; }
.poll-option .cnt { z-index: 1; }
.poll-share { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.share-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: var(--r-pill); font-weight: 600; font-size: .9rem; color: #fff; }
.share-btn.wa { background: #25D366; }
.share-btn.tg { background: #229ED9; }
.poll-note { margin-top: 16px; font-size: .88rem; color: var(--muted); }

/* ----------------------------- Jogos ------------------------------------ */
.games-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.game-card { position: relative; padding: 28px; border-radius: var(--r-lg); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; min-height: 220px; }
.game-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.game-card::before { content: ""; position: absolute; top: -40px; right: -40px; width: 150px; height: 150px; border-radius: 50%; background: var(--accent, var(--red)); opacity: .08; }
.game-ico { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; font-size: 1.7rem; background: var(--accent, var(--red)); color: #fff; box-shadow: var(--shadow-red); margin-bottom: 18px; }
.game-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.game-tag { font-size: .8rem; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.game-card p { color: var(--muted); font-size: .95rem; flex: 1; }
.game-play { margin-top: 16px; font-family: var(--font-head); font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.game-card:hover .game-play { color: var(--red); gap: 12px; }

/* ----------------------------- News ------------------------------------- */
.news-card { display: flex; flex-direction: column; height: 100%; }
.news-cover { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--red-soft), var(--paper-2)); overflow: hidden; position: relative; }
.news-cover img { width: 100%; height: 100%; object-fit: cover; }
.news-cover .ph { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: rgba(228,0,43,.35); }
.news-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.news-date { font-size: .82rem; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.news-body h3 { font-size: 1.18rem; margin-bottom: 8px; }
.news-body p { color: var(--muted); font-size: .95rem; flex: 1; }
.news-more { margin-top: 14px; font-weight: 600; color: var(--red); font-family: var(--font-head); }
.news-show-container { max-width: 760px; }
.news-back { color: var(--red); font-weight: 600; }
.news-show-date { display: block; margin: 24px 0 8px; }
.news-show-title { font-size: clamp(2rem, 5vw, 3rem); }
.news-show-cover { width: 100%; border-radius: var(--r-lg); margin: 24px 0; box-shadow: var(--shadow-md); }
.news-show-body { color: var(--ink-2); font-size: 1.1rem; }
.news-show-body img { display: block; max-width: 100%; height: auto; margin: 24px auto; border-radius: var(--r-md); }
.news-related { margin-top: 70px; }
.news-related-title { margin-bottom: 24px; }

/* ----------------------------- Footer ----------------------------------- */
.footer { background: var(--ink); color: #C9CDD6; padding: 66px 0 30px; }
.footer a { color: #C9CDD6; }
.footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .logo { color: #fff; }
.footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: .88rem; color: #8A909C; flex-wrap: wrap; gap: 10px; }

/* --------------------------- Animações ---------------------------------- */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 var(--red-glow); } 50% { box-shadow: 0 0 0 18px transparent; } }
@keyframes scan { 0% { top: -40%; } 100% { top: 100%; } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }

/* ---------------------------- Responsivo -------------------------------- */
@media (max-width: 960px) {
    .hero .container, .story, .lead-wrap { grid-template-columns: 1fr; }
    .hero-visual { order: -1; width: 100%; max-width: 460px; margin: 0 auto; }
    .story-visual { width: 100%; max-width: 380px; margin: 0 auto; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .section { padding: 64px 0; }
    .nav-links { display: flex; position: fixed; inset: var(--nav-h) 0 0; height: calc(100vh - var(--nav-h)); height: calc(100dvh - var(--nav-h)); flex-direction: column; align-items: stretch; background: #fff; padding: 24px; gap: 4px; overflow-y: auto; opacity: 0; visibility: hidden; pointer-events: none; transform: translateX(100%); transition: transform .25s ease, opacity .2s ease, visibility .25s; }
    .nav-links.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(0); }
    .nav-links a { padding: 18px 2px; border-bottom: 1px solid var(--line); border-radius: 0; font-family: var(--font-head); font-size: 1.2rem; }
    .nav-toggle { display: block; }
    .hero { padding-top: 48px; }
    .hero-visual { width: calc(100% - 28px); max-width: 390px; margin-bottom: 18px; }
    .hero-card { padding: 18px; }
    .hero-screen { width: 100%; max-width: 100%; }
    .hero-card-row .t { font-size: 1.12rem; }
    .hero-badge { display: flex; padding: 9px 12px; font-size: .8rem; }
    .hero-badge.top { top: -15px; left: -13px; }
    .hero-badge.bot { right: -13px; bottom: -16px; }
    .hero-badge .ico { width: 24px; height: 24px; }
    .story-visual { width: min(78vw, 320px); }
    .story-stats { gap: 10px; }
    .story-stats .n { font-size: 1.5rem; }
    .story-stats .l { font-size: .74rem; line-height: 1.25; }
    .vmodal { padding: 12px; }
    .vmodal-inner { width: calc(100vw - 24px); max-width: calc(100vw - 24px); }
    .vmodal-frame { border-radius: 10px; }
    .games-grid, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 720px) and (orientation: landscape) {
    .vmodal-inner { width: min(90vw, 720px); max-width: 90vw; }
}
