:root {
    --paper: #f3efe5;
    --paper-soft: #faf7ef;
    --paper-deep: #e8e1d4;
    --ink: #11110f;
    --ink-soft: #24231f;
    --muted: #706b61;
    --line: #c9c1b2;
    --line-dark: #35332e;
    --red: #e63d2f;
    --red-dark: #bb2f24;
    --green: #28734f;
    --gold: #c18c2f;
    --shadow: 14px 16px 0 rgba(17, 17, 15, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    min-width: 300px;
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(90deg, transparent calc(50% - .5px), rgba(17,17,15,.045) 50%, transparent calc(50% + .5px)),
        linear-gradient(rgba(17,17,15,.025) 1px, transparent 1px),
        var(--paper);
    background-size: auto, 100% 84px, auto;
    font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
::selection { color: #fff; background: var(--red); }

.skip-link {
    position: fixed;
    top: -90px;
    left: 18px;
    z-index: 100;
    padding: 11px 16px;
    color: #fff;
    background: var(--ink);
}
.skip-link:focus { top: 18px; }

.site-head {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    min-height: 78px;
    align-items: stretch;
    justify-content: space-between;
    border-bottom: 1px solid var(--ink);
    background: rgba(243, 239, 229, .95);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    min-width: 350px;
    align-items: center;
    gap: 13px;
    padding: 16px clamp(22px, 3.6vw, 62px);
    color: #fff;
    background: var(--ink);
    text-decoration: none;
}
.brand img { width: 38px; height: 38px; object-fit: contain; }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-size: 1.3rem; letter-spacing: .17em; }
.brand small { margin-top: 6px; color: #aaa69c; font: 700 .58rem/1.2 ui-monospace, monospace; letter-spacing: .16em; }

.site-head nav { display: flex; align-items: stretch; }
.site-head nav a {
    position: relative;
    display: grid;
    min-width: 136px;
    place-items: center;
    padding: 0 22px;
    border-left: 1px solid var(--line);
    font-size: .86rem;
    font-weight: 800;
    text-decoration: none;
}
.site-head nav a::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: -1px;
    left: 22px;
    height: 4px;
    transform: scaleX(0);
    background: var(--red);
    transition: transform .18s ease;
}
.site-head nav a:hover,
.site-head nav a:focus-visible,
.site-head nav a.is-active { color: var(--red); background: rgba(255,255,255,.34); }
.site-head nav a:hover::after,
.site-head nav a:focus-visible::after,
.site-head nav a.is-active::after { transform: scaleX(1); }

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: .75rem;
}
.breadcrumbs a { text-underline-offset: 4px; }

.game-main,
.index-main {
    width: min(1540px, calc(100% - 64px));
    margin: 0 auto;
    padding: 34px 0 92px;
}

.game-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(410px, .76fr) minmax(0, 1.24fr);
    min-height: 650px;
    overflow: hidden;
    border: 1px solid var(--ink);
    border-top: 5px solid var(--red);
    background: var(--paper-soft);
    box-shadow: var(--shadow);
    animation: dossier-in .55s cubic-bezier(.2,.8,.2,1) both;
}

.game-summary {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: clamp(38px, 4.7vw, 76px);
    border-right: 1px solid var(--ink);
    background:
        linear-gradient(135deg, transparent 0 70%, rgba(230,61,47,.045) 70%),
        var(--paper-soft);
}
.game-summary::after {
    content: "VP";
    position: absolute;
    right: 24px;
    bottom: -25px;
    color: rgba(17,17,15,.035);
    font-size: clamp(8rem, 15vw, 15rem);
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}
.game-summary > * { position: relative; z-index: 1; }
.summary-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 48px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font: 700 .6rem/1.3 ui-monospace, monospace;
    letter-spacing: .12em;
}
.summary-code b { max-width: 48%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.eyebrow { margin: 0 0 15px; color: var(--red); font: 800 .7rem/1.4 ui-monospace, monospace; letter-spacing: .14em; }
.signal { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(230,61,47,.12); }
h1, h2 { margin: 0; font-weight: 900; line-height: .98; letter-spacing: -.052em; text-wrap: balance; overflow-wrap: anywhere; }
.game-summary h1 { max-width: 720px; font-size: clamp(2.9rem, 4.65vw, 5.65rem); }
.lead { max-width: 690px; margin: 23px 0 30px; color: #5d594f; font-size: .96rem; }

.quick-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.quick-facts div { display: grid; gap: 5px; padding: 14px 15px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quick-facts span,
.proof-strip span,
.proof-strip small,
.technical-card dt,
.credit-grid dt,
.index-card dt {
    color: #8a857b;
    font: 700 .62rem/1.35 ui-monospace, monospace;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.quick-facts strong { font-size: .98rem; }
.is-ready { color: var(--green) !important; }
.is-progress { color: var(--gold) !important; }

.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 30px; }
.primary-action {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 0 21px;
    color: #fff;
    border: 1px solid var(--red);
    background: var(--red);
    box-shadow: 5px 5px 0 rgba(17,17,15,.16);
    font-weight: 850;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.primary-action:hover,
.primary-action:focus-visible { transform: translate(-2px,-2px); background: var(--red-dark); box-shadow: 8px 8px 0 rgba(17,17,15,.14); }
.text-action { color: var(--ink); font-weight: 750; text-underline-offset: 6px; }

.game-cover {
    position: relative;
    display: grid;
    min-width: 0;
    overflow: hidden;
    place-items: center;
    isolation: isolate;
    background: #171714;
}
.game-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(17,17,15,.22), transparent 22%, transparent 78%, rgba(17,17,15,.18)),
        linear-gradient(0deg, rgba(17,17,15,.45), transparent 34%);
    pointer-events: none;
}
.game-cover::after {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 3;
    border: 1px solid rgba(255,255,255,.18);
    pointer-events: none;
}
.game-cover > img {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
}
.cover-backdrop {
    z-index: 0;
    object-fit: cover;
    opacity: .72;
    filter: blur(26px) brightness(.48) saturate(1.12);
    transform: scale(1.13);
}
.cover-art {
    z-index: 1;
    padding: clamp(16px, 2.1vw, 34px);
    object-fit: contain;
    filter: drop-shadow(0 18px 25px rgba(0,0,0,.35));
    animation: cover-settle .8s cubic-bezier(.2,.8,.2,1) both;
}
.cover-code {
    position: absolute;
    right: 28px;
    bottom: 27px;
    z-index: 4;
    padding: 8px 11px;
    color: #fff;
    border-left: 4px solid var(--red);
    background: rgba(17,17,15,.86);
    font: 700 .62rem/1 ui-monospace, monospace;
    letter-spacing: .11em;
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 34px 0 0;
    color: #fff;
    border: 1px solid var(--ink);
    background: var(--ink);
}
.proof-strip div { display: grid; min-height: 116px; align-content: center; gap: 4px; padding: 22px 25px; border-right: 1px solid var(--line-dark); }
.proof-strip div:last-child { border: 0; }
.proof-strip strong { font-size: clamp(1.3rem, 2.1vw, 2.1rem); line-height: 1.1; }
.proof-strip small { color: #77736a; }

.content-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr); gap: clamp(36px, 5vw, 76px); padding: 86px 0; }
.content-section { padding: 72px 0; border-top: 1px solid var(--ink); }
.content-layout .content-section { padding: 0; border: 0; }
.section-heading { max-width: 850px; margin-bottom: 31px; }
.section-heading h2 { font-size: clamp(2.15rem, 3.5vw, 4.2rem); }
.prose { max-width: 850px; color: #4f4b43; font-size: 1rem; line-height: 1.9; }
.prose p { margin: 0 0 19px; }
.technical-card { align-self: start; padding: 29px; border: 1px solid var(--ink); background: var(--paper-soft); box-shadow: 9px 9px 0 rgba(17,17,15,.09); }
.technical-card dl { margin: 0; }
.technical-card dl div { display: grid; gap: 4px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.technical-card dd { margin: 0; font-weight: 800; overflow-wrap: anywhere; }
.technical-card > a { display: block; margin-top: 23px; color: var(--red); font-weight: 850; text-decoration: none; }

.shot-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.shot-grid img { width: 100%; aspect-ratio: 16/9; border: 1px solid var(--ink); background: var(--paper-deep); object-fit: cover; box-shadow: 7px 7px 0 rgba(17,17,15,.08); transition: transform .2s ease, box-shadow .2s ease; }
.shot-grid img:hover { transform: translateY(-3px); box-shadow: 10px 10px 0 rgba(17,17,15,.09); }
.credit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; border: 1px solid var(--ink); background: rgba(250,247,239,.55); }
.credit-grid div { min-height: 124px; padding: 23px; border-right: 1px solid var(--line); }
.credit-grid div:last-child { border: 0; }
.credit-grid dd { margin: 13px 0 0; font-size: 1.02rem; font-weight: 800; overflow-wrap: anywhere; }
.note-section .prose { padding: 23px 25px; border-left: 5px solid var(--red); background: rgba(250,247,239,.58); }
.final-cta { display: flex; align-items: end; justify-content: space-between; gap: 42px; margin-top: 8px; padding: clamp(34px, 4vw, 56px); color: #fff; border-top: 5px solid var(--red); background: var(--ink); }
.final-cta h2 { font-size: clamp(2.25rem, 3.8vw, 4.25rem); }
.final-cta p:not(.eyebrow) { max-width: 690px; color: #aaa69c; }

.index-main { padding-top: 50px; }
.index-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .34fr);
    gap: clamp(40px, 8vw, 130px);
    align-items: end;
    padding: 60px 0 72px;
    border-bottom: 1px solid var(--ink);
}
.index-intro-copy h1 { max-width: 950px; font-size: clamp(3.7rem, 6.7vw, 7.8rem); }
.index-intro-copy > p:not(.eyebrow) { max-width: 680px; margin: 25px 0 0; color: var(--muted); font-size: 1.02rem; }
.index-ledger { position: relative; display: grid; padding: 28px; border: 1px solid var(--ink); background: var(--paper-soft); box-shadow: 10px 10px 0 rgba(17,17,15,.09); }
.index-ledger::before { content: ""; position: absolute; top: -1px; left: -1px; width: 64px; height: 5px; background: var(--red); }
.index-ledger > span { color: var(--muted); font: 700 .64rem ui-monospace, monospace; letter-spacing: .12em; }
.index-ledger strong { margin-top: 12px; font-size: clamp(4rem, 7vw, 7.2rem); line-height: .9; letter-spacing: -.07em; }
.index-ledger p { margin: 12px 0 24px; font-weight: 800; }
.index-ledger small { padding-top: 14px; color: var(--muted); border-top: 1px solid var(--line); font: 700 .65rem ui-monospace, monospace; }

.index-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 42px; }
.index-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--ink); background: rgba(250,247,239,.72); transition: transform .2s ease, box-shadow .2s ease; }
.index-card:hover, .index-card:focus-within { transform: translateY(-4px); box-shadow: 9px 10px 0 rgba(17,17,15,.10); }
.index-cover {
    position: relative;
    display: grid;
    aspect-ratio: 16/10;
    overflow: hidden;
    place-items: center;
    isolation: isolate;
    border-bottom: 1px solid var(--ink);
    background: #171714;
}
.index-cover::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(0deg, rgba(17,17,15,.36), transparent 42%); pointer-events: none; }
.index-cover > img { grid-area: 1 / 1; width: 100%; height: 100%; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.index-cover-backdrop { z-index: 0; object-fit: cover; opacity: .68; filter: blur(18px) brightness(.55) saturate(1.08); transform: scale(1.13); }
.index-cover-art { z-index: 1; padding: 10px; object-fit: contain; filter: drop-shadow(0 10px 16px rgba(0,0,0,.3)); }
.index-card:hover .index-cover-backdrop { transform: scale(1.17); }
.index-card:hover .index-cover-art { transform: scale(1.018); }
.status-chip { position: absolute; top: 14px; left: 14px; z-index: 3; padding: 7px 9px; color: #fff !important; border-left: 4px solid #79756d; background: rgba(17,17,15,.9); font: 800 .59rem ui-monospace, monospace; letter-spacing: .09em; }
.status-chip.is-ready { border-left-color: #64c18d; }
.status-chip.is-progress { border-left-color: #edc15c; }
.index-card-copy { display: flex; min-height: 310px; flex: 1; flex-direction: column; padding: 22px; }
.index-meta { min-height: 2.4em; margin: 0 0 9px; color: var(--muted); font-size: .73rem; }
.index-card h2 { font-size: clamp(1.22rem, 1.45vw, 1.65rem); line-height: 1.08; letter-spacing: -.035em; }
.index-card h2 a { text-decoration: none; }
.index-card h2 a:hover, .index-card h2 a:focus-visible { color: var(--red); }
.index-card-copy > p:not(.index-meta) { display: -webkit-box; overflow: hidden; min-height: 4.5em; margin: 14px 0 0; color: var(--muted); font-size: .79rem; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.index-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: auto 0 0; padding-top: 18px; border-top: 1px solid var(--line); }
.index-card dl div { display: grid; gap: 4px; }
.index-card dd { margin: 0; font-size: .79rem; font-weight: 800; }
.index-card-action { display: flex; align-items: center; justify-content: space-between; margin-top: 17px; padding: 11px 13px; color: #fff; background: var(--ink); font-size: .76rem; font-weight: 800; text-decoration: none; }
.index-card-action:hover, .index-card-action:focus-visible { background: var(--red); }

.not-found-main { width: min(900px, calc(100% - 48px)); min-height: 68vh; margin: auto; padding: 120px 0; }
.not-found-main h1 { max-width: 800px; font-size: clamp(3.3rem, 7vw, 7.5rem); }
.not-found-main > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.not-found-main .primary-action { width: fit-content; margin-top: 28px; }

.site-foot { display: grid; grid-template-columns: auto 1fr auto; min-height: 148px; align-items: center; gap: 34px; padding: 30px clamp(24px, 5vw, 76px); color: #fff; background: var(--ink); }
.foot-brand { min-width: 0; padding: 0; }
.site-foot > p { max-width: 650px; color: #aaa69c; }
.site-foot > div { display: grid; gap: 9px; justify-items: end; font-size: .79rem; }
.site-foot a { text-underline-offset: 4px; }

@keyframes dossier-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}
@keyframes cover-settle {
    from { opacity: .76; transform: scale(1.025); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1360px) {
    .site-head nav a { min-width: auto; padding: 0 18px; }
    .game-hero { grid-template-columns: minmax(390px, .82fr) minmax(0, 1.18fr); }
    .index-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1050px) {
    .brand { min-width: 300px; }
    .game-hero { grid-template-columns: 1fr; }
    .game-summary { border-right: 0; border-bottom: 1px solid var(--ink); }
    .game-cover { min-height: 500px; }
    .content-layout { grid-template-columns: 1fr; }
    .technical-card { max-width: 720px; }
    .index-intro { grid-template-columns: minmax(0,1fr) 250px; gap: 46px; }
    .index-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .site-head { position: static; display: block; min-height: 0; }
    .brand { min-width: 0; padding: 14px 17px; }
    .brand strong { font-size: 1.05rem; }
    .site-head nav { overflow-x: auto; border-top: 1px solid var(--line); scrollbar-width: none; }
    .site-head nav::-webkit-scrollbar { display: none; }
    .site-head nav a { min-width: max-content; min-height: 46px; padding: 0 16px; border-left: 0; border-right: 1px solid var(--line); font-size: .73rem; }
    .site-head nav a::after { right: 14px; left: 14px; height: 3px; }
    .game-main, .index-main { width: min(100% - 28px, 680px); padding-top: 20px; }
    .breadcrumbs { margin-bottom: 15px; font-size: .68rem; }
    .game-hero { min-height: 0; box-shadow: 7px 8px 0 rgba(17,17,15,.10); }
    .game-cover { order: -1; min-height: 0; aspect-ratio: 16/10; }
    .game-cover::after { inset: 10px; }
    .cover-art { padding: 10px; }
    .cover-code { right: 15px; bottom: 14px; font-size: .52rem; }
    .game-summary { padding: 25px 19px 29px; border-top: 1px solid var(--ink); border-bottom: 0; }
    .summary-code { margin-bottom: 28px; }
    .game-summary h1 { font-size: clamp(2.35rem, 11.5vw, 4.15rem); }
    .lead { margin: 17px 0 23px; font-size: .87rem; }
    .quick-facts { grid-template-columns: 1fr 1fr; }
    .quick-facts div { padding: 12px; }
    .quick-facts strong { font-size: .82rem; }
    .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
    .primary-action { width: 100%; }
    .text-action { text-align: center; }
    .proof-strip { grid-template-columns: 1fr 1fr; }
    .proof-strip div { min-height: 98px; padding: 15px; border-bottom: 1px solid var(--line-dark); }
    .proof-strip div:nth-child(2) { border-right: 0; }
    .content-layout { gap: 30px; padding: 57px 0; }
    .content-section { padding: 52px 0; }
    .section-heading h2 { font-size: 2.35rem; }
    .prose { font-size: .91rem; }
    .shot-grid, .credit-grid { grid-template-columns: 1fr; }
    .credit-grid div { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .final-cta { align-items: stretch; flex-direction: column; padding: 29px 21px; }
    .index-main { padding-top: 28px; }
    .index-intro { display: block; padding: 38px 0 48px; }
    .index-intro-copy h1 { font-size: clamp(3rem, 14vw, 5.2rem); }
    .index-intro-copy > p:not(.eyebrow) { margin: 21px 0 28px; }
    .index-ledger { max-width: 310px; padding: 22px; }
    .index-ledger strong { font-size: 5rem; }
    .index-grid { grid-template-columns: 1fr; gap: 15px; margin-top: 30px; }
    .index-card-copy { min-height: 0; }
    .index-card-copy > p:not(.index-meta) { min-height: 0; }
    .site-foot { grid-template-columns: 1fr; gap: 11px; }
    .site-foot > div { justify-items: start; }
}

@media (max-width: 420px) {
    .quick-facts { grid-template-columns: 1fr; }
    .proof-strip { grid-template-columns: 1fr; }
    .proof-strip div { border-right: 0; }
    .summary-code b { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

/* VietPatch V2 — hồ sơ game biên tập, gọn và ưu tiên giữ nguyên ảnh bìa. */
.game-main {
    width: min(1680px, calc(100% - clamp(32px, 5vw, 104px)));
    padding-top: 28px;
}

.game-main .breadcrumbs {
    margin-bottom: 16px;
    font-family: ui-monospace, "JetBrains Mono", monospace;
    letter-spacing: .035em;
}

.game-main .game-hero {
    grid-template-areas: "cover summary";
    grid-template-columns: minmax(0, 1.36fr) minmax(400px, .64fr);
    min-height: 610px;
    border-top-width: 1px;
    box-shadow: 12px 14px 0 rgba(17,17,15,.08);
}

.game-main .game-cover {
    grid-area: cover;
    min-height: 610px;
    border-right: 1px solid var(--ink);
}

.game-main .game-cover::before {
    background:
        linear-gradient(90deg, rgba(17,17,15,.1), transparent 25%, transparent 74%, rgba(17,17,15,.25)),
        linear-gradient(0deg, rgba(17,17,15,.45), transparent 36%);
}

.game-main .game-cover::after { inset: 22px; }
.game-main .cover-art { padding: clamp(18px, 2.5vw, 42px); }

.game-main .game-summary {
    grid-area: summary;
    justify-content: flex-start;
    padding: clamp(38px, 4vw, 68px) clamp(30px, 3.4vw, 58px);
    border: 0;
    background:
        linear-gradient(145deg, rgba(230,61,47,.055), transparent 42%),
        var(--paper-soft);
}

.game-main .game-summary::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: var(--red);
}

.game-main .game-summary::after {
    right: -18px;
    bottom: -35px;
    font-size: clamp(8rem, 13vw, 13rem);
}

.game-main .summary-code { margin-bottom: clamp(34px, 4vh, 54px); }
.game-main .game-summary h1 {
    max-width: 620px;
    font-size: clamp(2.55rem, 3.25vw, 4.45rem);
    line-height: .96;
    letter-spacing: -.055em;
}

.game-main .lead {
    display: -webkit-box;
    overflow: hidden;
    margin: 20px 0 27px;
    font-size: .91rem;
    line-height: 1.72;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.game-main .quick-facts { background: rgba(255,255,255,.26); }
.game-main .quick-facts div { min-height: 69px; padding: 12px 14px; }
.game-main .hero-actions { margin-top: 26px; }
.game-main .primary-action { min-height: 52px; }

.game-main .proof-strip {
    margin-top: 28px;
    color: var(--ink);
    border-top: 4px solid var(--red);
    background: rgba(250,247,239,.72);
    box-shadow: 8px 9px 0 rgba(17,17,15,.07);
}

.game-main .proof-strip div { min-height: 104px; border-right-color: var(--line); }
.game-main .proof-strip small { color: var(--muted); }

.game-main .content-layout { padding: clamp(68px, 7vw, 108px) 0; }
.game-main .technical-card { position: sticky; top: 104px; }

.video-section {
    display: grid;
    grid-template-columns: minmax(280px, .34fr) minmax(0, .66fr);
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
    padding: clamp(36px, 5vw, 72px) !important;
    color: #fff;
    border-top: 5px solid var(--red) !important;
    background:
        radial-gradient(circle at 18% 20%, rgba(230,61,47,.14), transparent 34%),
        #11110f;
}

.video-kicker { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; padding-bottom: 13px; border-bottom: 1px solid #3d3b36; color: #8f8b82; font: 800 .58rem/1 ui-monospace, monospace; letter-spacing: .1em; }
.video-kicker b { display: grid; width: 28px; height: 28px; place-items: center; color: #fff; background: var(--red); }
.video-copy h2 { max-width: 580px; font-size: clamp(2rem, 3.4vw, 4.15rem); }
.video-copy > p:not(.eyebrow) { max-width: 520px; color: #aaa69c; }
.video-proof { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; color: #858178; font: 800 .57rem/1.3 ui-monospace, monospace; letter-spacing: .06em; }
.video-proof span { display: inline-flex; align-items: center; gap: 7px; }
.video-proof i { width: 7px; height: 7px; border-radius: 50%; background: #4ec286; box-shadow: 0 0 0 4px rgba(78,194,134,.12); }
.video-copy > a { display: inline-flex; gap: 16px; margin-top: 20px; color: #fff; font-weight: 800; text-decoration-color: var(--red); text-underline-offset: 6px; }
.video-stage { position: relative; padding: 28px 16px 16px; border: 1px solid #37352f; background: #080808; box-shadow: 12px 13px 0 rgba(230,61,47,.18); }
.video-stage-code { position: absolute; top: 10px; left: 16px; color: #77736b; font: 800 .51rem/1 ui-monospace, monospace; letter-spacing: .12em; }
.video-frame { position: relative; overflow: hidden; aspect-ratio: 16/9; border: 1px solid #4b4943; background: #050505; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.game-main .shot-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.game-main .final-cta { margin-top: 24px; }

.site-foot > div { max-width: 360px; }

@media (min-width: 1780px) {
    .index-main { width: min(1840px, calc(100% - 104px)); }
    .index-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .index-card-copy { min-height: 292px; }
}

@media (min-width: 2320px) {
    .index-main { width: min(2240px, calc(100% - 128px)); }
    .index-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

@media (max-width: 1180px) {
    .game-main .game-hero {
        grid-template-areas: "cover" "summary";
        grid-template-columns: 1fr;
    }
    .game-main .game-cover { min-height: 0; aspect-ratio: 16/9; border-right: 0; border-bottom: 1px solid var(--ink); }
    .game-main .game-summary { padding: 42px; }
    .game-main .game-summary h1 { max-width: 900px; }
    .video-section { grid-template-columns: 1fr; }
    .game-main .technical-card { position: static; }
}

@media (max-width: 760px) {
    .game-main { width: min(100% - 22px, 680px); padding-top: 14px; }
    .game-main .game-cover { aspect-ratio: 16/10; }
    .game-main .game-cover::after { inset: 9px; }
    .game-main .cover-art { padding: 9px; }
    .game-main .game-summary { padding: 26px 19px 30px; }
    .game-main .summary-code { margin-bottom: 25px; }
    .game-main .game-summary h1 { font-size: clamp(2.2rem, 11vw, 3.75rem); }
    .game-main .proof-strip { box-shadow: 5px 6px 0 rgba(17,17,15,.07); }
    .video-section { gap: 25px; padding: 31px 18px !important; }
    .video-copy h2 { font-size: clamp(2rem, 10vw, 3rem); }
    .game-main .shot-grid { grid-template-columns: 1fr; }
    .site-foot > div { max-width: none; }
}

/* Ultrawide dossiers: preserve the editorial composition instead of stretching the copy. */
@media (min-width: 1800px) {
    .game-main { width: min(2180px, calc(100% - 64px)); }
    .game-main .game-hero {
        grid-template-columns: minmax(0, 1.44fr) minmax(460px, 0.56fr);
        min-height: 700px;
    }
    .game-main .game-cover { min-height: 700px; }
    .game-main .game-summary { padding-inline: clamp(48px, 3vw, 76px); }
    .game-main .game-summary h1 { max-width: 720px; }
    .game-main .content-layout { grid-template-columns: minmax(0, 1.65fr) minmax(350px, 0.35fr); }
}

@media (min-width: 2400px) {
    .game-main { width: min(2680px, calc(100% - 96px)); }
    .game-main .game-hero {
        grid-template-columns: minmax(0, 1.55fr) minmax(520px, 0.45fr);
        min-height: 780px;
    }
    .game-main .game-cover { min-height: 780px; }
    .game-main .game-summary h1 { max-width: 820px; }
    .index-main { width: min(2600px, calc(100% - 96px)); }
    .index-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); }
}

@media (min-width: 3000px) {
    .game-main { width: min(3180px, calc(100% - 128px)); }
    .game-main .game-hero {
        grid-template-columns: minmax(0, 1.68fr) minmax(560px, 0.42fr);
        min-height: 860px;
    }
    .game-main .game-cover { min-height: 860px; }
    .index-main { width: min(3080px, calc(100% - 128px)); }
    .index-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
}
