    :root {
      --orange: #ff5722;
      --paper: #eeeeee;
      --ink: #050505;
      --surface: #111111;
      --surface-2: #181818;
      --muted: #a9a9a9;
      --line: rgba(238, 238, 238, 0.2);
      --line-strong: rgba(238, 238, 238, 0.42);
      --max: 1480px;
      --rail: 246px;
      --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
      --sans: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
      --mono: "DejaVu Sans Mono", "Liberation Mono", Consolas, monospace;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background:
        radial-gradient(circle at 68% 0, rgba(255, 87, 34, 0.065), transparent 24rem),
        var(--ink);
      color: var(--paper);
      font-family: var(--sans);
      font-size: 17px;
      line-height: 1.66;
    }
    body::before {
      position: fixed;
      inset: 0;
      z-index: -1;
      background-image: radial-gradient(rgba(238, 238, 238, 0.08) 0.8px, transparent 0.8px);
      background-size: 20px 20px;
      mask-image: linear-gradient(to bottom, black, transparent 72rem);
      content: "";
      pointer-events: none;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-underline-offset: 0.18em; }
    a:hover { color: var(--orange); }
    button, summary { font: inherit; }
    :focus-visible { outline: 3px solid var(--paper); outline-offset: 4px; }
    .skip-link {
      position: fixed;
      left: 1rem;
      top: -6rem;
      z-index: 100;
      padding: 0.75rem 1rem;
      background: var(--paper);
      color: var(--ink);
      font-weight: 800;
    }
    .skip-link:focus { top: 1rem; }
    .visually-hidden {
      position: absolute !important;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .reading-progress {
      position: fixed;
      inset: 0 auto auto 0;
      z-index: 90;
      width: 0;
      height: 3px;
      background: var(--orange);
    }

    .masthead {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--line);
      background: rgba(5, 5, 5, 0.95);
      backdrop-filter: blur(14px);
    }
    .masthead__inner {
      display: grid;
      grid-template-columns: var(--rail) 1fr auto;
      align-items: stretch;
      width: min(100%, var(--max));
      min-height: 92px;
      margin: auto;
      border-inline: 1px solid var(--line);
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0 1.15rem;
      color: var(--paper);
      text-decoration: none;
    }
    .brand__mark {
      width: 70px;
      height: 70px;
      flex: 0 0 70px;
      image-rendering: pixelated;
    }
    .brand__name {
      font: 800 clamp(1.15rem, 2.1vw, 2rem)/1 var(--display);
      letter-spacing: 0.025em;
      white-space: nowrap;
    }
    .masthead__nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(1rem, 3vw, 3.3rem);
      padding: 0 1rem;
    }
    .masthead__nav a {
      position: relative;
      padding: 2rem 0;
      color: var(--paper);
      font-size: 0.88rem;
      text-decoration: none;
    }
    .masthead__nav a[aria-current="page"]::after {
      position: absolute;
      inset: auto 0 1.3rem;
      height: 3px;
      background: var(--orange);
      content: "";
    }
    .menu-button {
      display: none;
      align-self: center;
      margin-right: 1rem;
      border: 1px solid var(--line);
      background: transparent;
      color: var(--paper);
      cursor: pointer;
    }

    .page {
      width: min(100%, var(--max));
      margin: auto;
      border-inline: 1px solid var(--line);
    }
    .page-grid {
      display: grid;
      grid-template-columns: var(--rail) minmax(0, 1fr);
      align-items: start;
    }
    .index-column {
      position: sticky;
      top: 92px;
      z-index: 20;
      max-height: calc(100vh - 92px);
      overflow: auto;
      background: var(--orange);
      color: var(--paper);
      clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), calc(100% - 12px) calc(100% - 34px), calc(100% - 12px) calc(100% - 24px), calc(100% - 24px) calc(100% - 24px), calc(100% - 24px) calc(100% - 12px), calc(100% - 38px) calc(100% - 12px), calc(100% - 38px) 100%, 0 100%);
    }
    .article-index summary {
      padding: 1.65rem 1.35rem 1.1rem;
      font-size: 1.15rem;
      font-weight: 900;
      line-height: 1.15;
      list-style: none;
      cursor: pointer;
    }
    .article-index summary::-webkit-details-marker { display: none; }
    .index-list {
      margin: 0;
      padding: 0 1.35rem 4.4rem;
      list-style: none;
    }
    .index-list li { border-bottom: 2px dotted rgba(238, 238, 238, 0.52); }
    .index-list a {
      display: grid;
      grid-template-columns: 2.7rem 1fr;
      gap: 0.4rem;
      padding: 1rem 0 1.15rem;
      text-decoration: none;
    }
    .index-list a:hover,
    .index-list a.is-active { color: var(--ink); }
    .index-number {
      font: 900 1.35rem/1 var(--mono);
      letter-spacing: -0.1em;
    }
    .index-number--supplement::before {
      color: var(--muted);
      content: "·";
    }
    .index-label { font-size: 0.82rem; font-weight: 800; line-height: 1.35; }

    .article { min-width: 0; }
    .hero {
      position: relative;
      padding: clamp(2.5rem, 5vw, 5rem) clamp(1.4rem, 4.2vw, 4.7rem) 2rem;
      border-bottom: 1px solid var(--line);
      overflow: hidden;
    }
    .hero::before {
      position: absolute;
      inset: 2rem auto auto 2rem;
      width: 220px;
      height: 120px;
      opacity: 0.35;
      background-image: radial-gradient(var(--orange) 1.5px, transparent 1.5px);
      background-size: 13px 13px;
      content: "";
      pointer-events: none;
    }
    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
      gap: clamp(2rem, 5vw, 5rem);
      align-items: center;
    }
    .eyebrow {
      margin: 0 0 0.85rem;
      color: var(--orange);
      font: 800 0.78rem/1 var(--mono);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .hero h1 { margin: 0; }
    .game-title {
      display: block;
      max-width: 8ch;
      font: 900 clamp(4.5rem, 9vw, 9.8rem)/0.82 var(--display);
      letter-spacing: 0.005em;
      text-transform: uppercase;
      text-wrap: balance;
    }
    .headline-detail {
      display: block;
      max-width: 25ch;
      margin-top: 1.1rem;
      font-size: clamp(1.3rem, 2.3vw, 2.25rem);
      line-height: 1.12;
      letter-spacing: -0.025em;
    }
    .headline-detail::first-line { color: var(--orange); }
    .hero-kicker {
      margin: 1rem 0 0;
      color: var(--orange);
      font: 900 clamp(1.1rem, 2vw, 1.55rem)/1 var(--mono);
      letter-spacing: -0.04em;
    }
    .hero-scope {
      margin: 0.65rem 0 0;
      color: var(--muted);
      font: 700 0.72rem/1.35 var(--mono);
      letter-spacing: 0.045em;
      text-transform: uppercase;
    }
    .hero-hook {
      max-width: 36rem;
      margin: 1.3rem 0 0;
      color: var(--paper);
      font-size: clamp(1rem, 1.25vw, 1.18rem);
      line-height: 1.55;
    }
    .hero-visual {
      position: relative;
      margin: 0;
      border: 1px solid var(--line);
      background: #090909;
      box-shadow: 18px 18px 0 rgba(255, 87, 34, 0.08);
    }
    .hero-visual::before,
    .hero-visual::after {
      position: absolute;
      z-index: 2;
      width: 18px;
      height: 18px;
      background: var(--orange);
      content: "";
    }
    .hero-visual::before { inset: -5px auto auto -5px; }
    .hero-visual::after { inset: auto -5px -5px auto; }
    .hero-visual img {
      width: 100%;
      max-height: 600px;
      aspect-ratio: 4 / 5;
      padding: clamp(0.8rem, 2vw, 1.5rem);
      object-fit: contain;
    }
    .hero-visual figcaption {
      padding: 0 1.2rem 1rem;
      color: var(--muted);
      font-size: 0.72rem;
      line-height: 1.4;
    }
    .hero-cover__toggle {
      position: relative;
      display: block;
      width: 100%;
      padding: 0;
      border: 0;
      background: transparent;
      color: inherit;
      text-align: inherit;
      cursor: pointer;
    }
    .hero-cover__toggle:focus-visible {
      outline: 3px solid var(--paper);
      outline-offset: -7px;
    }
    .hero-cover__image[hidden],
    .hero-cover__caption[hidden] { display: none; }
    .hero-cover__action {
      position: absolute;
      right: 0.8rem;
      bottom: 0.8rem;
      z-index: 3;
      padding: 0.55rem 0.7rem;
      background: var(--orange);
      color: var(--paper);
      font: 900 0.67rem/1 var(--mono);
      letter-spacing: 0.035em;
      text-transform: uppercase;
      box-shadow: 5px 5px 0 rgba(5, 5, 5, 0.72);
      pointer-events: none;
    }
    .hero-cover__toggle:hover .hero-cover__action { background: var(--paper); color: var(--ink); }

    .facts {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      margin: 2.8rem 0 0;
      border: 1px solid var(--line-strong);
      background: rgba(17, 17, 17, 0.84);
    }
    .fact {
      position: relative;
      min-height: 88px;
      padding: 1rem 1rem 1rem 3.25rem;
      border-right: 1px dotted var(--line-strong);
    }
    .fact::before {
      position: absolute;
      left: 1rem;
      top: 1.15rem;
      width: 18px;
      height: 18px;
      border: 3px solid var(--orange);
      box-shadow: 6px 6px 0 -3px var(--orange);
      content: "";
    }
    .fact dt {
      color: var(--muted);
      font: 700 0.63rem/1.2 var(--mono);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .fact dd { margin: 0.35rem 0 0; font-size: 0.82rem; font-weight: 700; line-height: 1.3; }

    .pixel-divider {
      height: 17px;
      margin: 2.2rem clamp(1.4rem, 4.2vw, 4.7rem) 0;
      opacity: 0.55;
      background: repeating-linear-gradient(90deg, transparent 0 9px, #383838 9px 20px);
      clip-path: polygon(0 20%, 7% 20%, 7% 0, 14% 0, 14% 45%, 21% 45%, 21% 20%, 62% 20%, 62% 0, 69% 0, 69% 45%, 100% 45%, 100% 75%, 83% 75%, 83% 100%, 72% 100%, 72% 75%, 0 75%);
    }
    .quick-verdict {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      padding: 1.8rem clamp(1.4rem, 4.2vw, 4.7rem) 0;
    }
    .quick-verdict > h2 { grid-column: 1 / -1; margin-bottom: 0; }
    .verdict {
      position: relative;
      padding: 1.25rem 1.25rem 1.25rem 4.7rem;
      border: 1px solid var(--orange);
      background: linear-gradient(135deg, rgba(255, 87, 34, 0.09), transparent 55%);
    }
    .verdict::before {
      position: absolute;
      left: 1rem;
      top: 1rem;
      display: grid;
      width: 2.8rem;
      height: 2.8rem;
      place-items: center;
      background: var(--orange);
      color: var(--paper);
      font: 900 2rem/1 var(--mono);
      content: "+";
    }
    .verdict--worst::before { content: "−"; }
    .verdict h3 {
      margin: 0;
      color: var(--orange);
      font: 900 1rem/1.1 var(--mono);
      text-transform: uppercase;
    }
    .verdict ul { margin: 0.7rem 0 0; padding-left: 1.1rem; font-size: 0.83rem; line-height: 1.45; }
    .verdict li + li { margin-top: 0.45rem; }

    .sections { padding: 0 clamp(1.4rem, 4.2vw, 4.7rem) 5rem; }
    .section {
      scroll-margin-top: 7rem;
      padding: clamp(3.4rem, 7vw, 6rem) 0;
      border-bottom: 1px solid var(--line);
    }
    .section-heading {
      display: grid;
      grid-template-columns: 4.2rem minmax(0, 1fr);
      gap: 0.8rem;
      align-items: start;
      margin-bottom: 2rem;
    }
    .section-number {
      color: var(--orange);
      font: 900 clamp(1.6rem, 3vw, 2.4rem)/1 var(--mono);
      letter-spacing: -0.11em;
    }
    .section h2 {
      max-width: 23ch;
      margin: 0;
      font: 900 clamp(2rem, 4vw, 3.5rem)/0.98 var(--display);
      letter-spacing: 0.015em;
      text-transform: uppercase;
      text-wrap: balance;
    }
    .section-content { max-width: 980px; margin-left: 5rem; }
    .section--lead .section-content {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
      gap: 1.1rem 3rem;
      max-width: none;
    }
    .section--lead .block--image { grid-column: 2; grid-row: 1 / span 3; margin: 0; align-self: start; }
    .section--lead .block--paragraph { grid-column: 1; }
    .block--paragraph {
      max-width: 760px;
      margin: 0 0 1.2rem;
      color: #dddddd;
      font-size: 1.04rem;
    }
    .block--subheading {
      max-width: 760px;
      margin: 3rem 0 1rem;
      color: var(--paper);
      font-size: clamp(1.35rem, 2.5vw, 2rem);
      line-height: 1.1;
    }
    .block--image {
      position: relative;
      width: min(100%, 880px);
      margin: 2.5rem 0 2.8rem;
      border: 1px solid var(--line-strong);
      background: #090909;
    }
    .block--image::after {
      position: absolute;
      right: -4px;
      bottom: -4px;
      width: 16px;
      height: 16px;
      background: var(--orange);
      content: "";
    }
    .block--image img {
      width: 100%;
      max-height: 680px;
      object-fit: contain;
      image-rendering: auto;
    }
    .block--image figcaption {
      padding: 0.85rem 1rem 1rem;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.78rem;
      line-height: 1.45;
    }
    .credit { display: block; margin-top: 0.25rem; color: var(--orange); font-family: var(--mono); }
    .note-ref { margin-left: 0.12em; font: 800 0.65em/1 var(--mono); }
    .note-ref a { color: var(--orange); text-decoration: none; }
    .term { position: relative; font-style: normal; }
    .term-help {
      position: absolute;
      left: 0;
      bottom: calc(100% + 0.45rem);
      z-index: 30;
      display: none;
      width: min(22rem, 80vw);
      padding: 0.75rem;
      border: 1px solid var(--orange);
      background: var(--surface-2);
      color: var(--paper);
      font: 0.78rem/1.45 var(--sans);
      box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.35);
    }
    .term:hover .term-help,
    .term:focus-within .term-help { display: block; }
    .technical-note {
      max-width: 760px;
      margin: 2rem 0;
      padding: 1rem 1.2rem;
      border: 1px solid var(--line-strong);
      background: var(--surface);
    }
    .technical-note summary { color: var(--orange); font-weight: 800; cursor: pointer; }
    .technical-note p:last-child { margin-bottom: 0; }

    .table-wrap { max-width: 880px; margin: 2.4rem 0; overflow-x: auto; border: 1px solid var(--line-strong); }
    .data-table { width: 100%; border-collapse: collapse; background: var(--surface); font-size: 0.9rem; }
    .data-table caption { padding: 1rem; color: var(--paper); text-align: left; font-weight: 800; }
    .data-table th, .data-table td { padding: 0.85rem 1rem; border: 1px solid var(--line); text-align: left; }
    .data-table th { color: var(--orange); font-family: var(--mono); font-size: 0.74rem; text-transform: uppercase; }

    .supplement {
      scroll-margin-top: 7rem;
      padding: 4.5rem 0;
      border-bottom: 1px solid var(--line);
    }
    .supplement > h2 {
      margin: 0 0 2rem;
      font: 900 clamp(1.8rem, 3.5vw, 3rem)/1 var(--display);
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }
    .availability__date { color: var(--orange); font: 800 0.78rem/1.4 var(--mono); }
    .glossary { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
    .glossary > div { padding: 1.2rem; border: 1px solid var(--line); background: var(--surface); }
    .glossary dt { color: var(--orange); font: 800 0.9rem/1.2 var(--mono); }
    .glossary dd { margin: 0.7rem 0 0; color: #d5d5d5; font-size: 0.88rem; }
    .notes-list { margin: 0; padding-left: 2.2rem; font-size: 0.82rem; color: #d0d0d0; }
    .notes-list li { scroll-margin-top: 7rem; padding: 0.75rem 0 0.75rem 0.4rem; border-bottom: 1px dotted var(--line); }
    .source-kind { color: var(--orange); font-family: var(--mono); font-weight: 800; }
    .backrefs { margin-left: 0.4rem; white-space: nowrap; }
    .backrefs a { color: var(--orange); }

    .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
    .link-card { display: block; padding: 1.2rem; border: 1px solid var(--line); background: var(--surface); text-decoration: none; }
    .link-card img { display: block; width: 100%; height: 220px; margin-bottom: 0.9rem; object-fit: contain; background: #090909; }
    .link-card strong { display: block; color: var(--orange); }
    .link-card span { display: block; margin-top: 0.4rem; color: var(--muted); font-size: 0.8rem; }

    .article-footer {
      padding: 2.5rem clamp(1.4rem, 4.2vw, 4.7rem) 3.5rem;
      border-top: 4px solid var(--orange);
      background: var(--surface);
      color: var(--muted);
      font-size: 0.78rem;
    }
    .article-footer p { max-width: 850px; margin: 0.5rem 0; }
    .site-footer {
      border-top: 1px solid var(--line);
      background: #020202;
    }
    .site-footer__inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1rem 2rem;
      width: min(calc(100% - 2rem), var(--max));
      margin: auto;
      padding: 2rem 1rem;
      color: var(--muted);
      font-size: 0.78rem;
    }
    .site-footer nav { display: flex; flex-wrap: wrap; gap: 1rem; }

    @media (max-width: 1180px) {
      :root { --rail: 210px; }
      .brand__mark { width: 58px; height: 58px; flex-basis: 58px; }
      .masthead__inner { min-height: 80px; }
      .index-column { top: 80px; max-height: calc(100vh - 80px); }
      .masthead__nav { gap: 1.2rem; }
      .game-title { font-size: clamp(4.2rem, 8.5vw, 7rem); }
      .section--lead .section-content { display: block; }
      .section--lead .block--image { margin: 2.5rem 0; }
    }

    @media (max-width: 860px) {
      body { font-size: 16px; }
      .masthead { position: relative; }
      .masthead__inner { grid-template-columns: 1fr auto; min-height: 76px; border-inline: 0; }
      .brand { padding-left: 0.75rem; }
      .brand__mark { width: 54px; height: 54px; flex-basis: 54px; }
      .brand__name { font-size: 1.55rem; }
      .menu-button { display: block; width: 44px; height: 44px; }
      .masthead__nav {
        position: absolute;
        inset: 76px 0 auto;
        z-index: 10;
        display: none;
        padding: 1rem;
        border-bottom: 1px solid var(--line);
        background: var(--ink);
      }
      .masthead__nav.is-open { display: grid; grid-column: 1 / -1; }
      .masthead__nav a { padding: 0.7rem; }
      .masthead__nav a[aria-current="page"]::after { inset: auto 0 0; }
      .page { border-inline: 0; }
      .page-grid { display: flex; flex-direction: column; }
      .index-column {
        position: static;
        width: 100%;
        max-height: none;
        overflow: visible;
        clip-path: none;
      }
      .article-index summary { padding: 0.85rem 1rem; font-size: 0.95rem; text-transform: uppercase; }
      .article-index summary::after { float: right; content: "+"; font-family: var(--mono); }
      .article-index[open] summary::after { content: "−"; }
      .index-list { display: grid; grid-template-columns: 1fr 1fr; padding: 0 1rem 1rem; }
      .index-list li { border-bottom: 1px dotted rgba(238, 238, 238, 0.55); }
      .index-list a { grid-template-columns: 2.2rem 1fr; padding: 0.75rem 0.45rem; }
      .hero { padding-top: 2.2rem; }
      .hero-grid { grid-template-columns: 1fr; }
      .game-title { max-width: none; font-size: clamp(4.2rem, 19vw, 7.5rem); }
      .hero-visual { width: min(100%, 520px); justify-self: center; }
      .facts { grid-template-columns: 1fr 1fr; }
      .quick-verdict { grid-template-columns: 1fr; }
      .section-content { margin-left: 0; }
    }

    @media (max-width: 560px) {
      .index-list { grid-template-columns: 1fr; }
      .hero { padding: 1.8rem 1rem 1.2rem; }
      .hero::before { display: none; }
      .game-title { font-size: clamp(3.6rem, 21vw, 5.5rem); }
      .headline-detail { font-size: 1.25rem; }
      .hero-visual img { max-height: 480px; }
      .facts { grid-template-columns: 1fr 1fr; margin-top: 1.7rem; }
      .fact { min-height: 78px; padding: 0.8rem 0.65rem 0.8rem 2.65rem; }
      .fact::before { left: 0.8rem; width: 14px; height: 14px; }
      .pixel-divider { margin-inline: 1rem; }
      .quick-verdict { padding: 1.2rem 1rem 0; }
      .verdict { padding-left: 4.25rem; }
      .sections { padding: 0 1rem 3rem; }
      .section { padding: 3.3rem 0; }
      .section-heading { grid-template-columns: 3.4rem 1fr; }
      .section h2 { font-size: 2rem; }
      .block--paragraph { font-size: 0.98rem; }
      .article-footer { padding-inline: 1rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
    }
