:root {
  --bg: #11100d;
  --bg-2: #181511;
  --paper: #f4ead6;
  --paper-2: #e4d5b9;
  --ink: #191713;
  --muted: #7f745f;
  --line: rgba(25, 23, 19, 0.16);
  --line-dark: rgba(244, 234, 214, 0.16);
  --panel: #211d18;
  --panel-2: #2c251d;
  --green: #49a078;
  --green-2: #9fd8b6;
  --copper: #c96f42;
  --gold: #dfb85b;
  --red: #cf5d67;
  --blue: #7d9be6;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--paper);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-width: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 10px 0;
  background: rgba(17, 16, 13, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--copper), var(--green));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: var(--paper-2);
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
}

.nav .nav-action {
  padding: 0 12px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 34px;
  align-items: center;
  padding: 54px 0 42px;
}

.hero.media-led {
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  min-height: calc(100vh - 72px);
  padding: 42px 0 38px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(223, 184, 91, 0.34);
  border-radius: 999px;
  color: #f3d991;
  background: rgba(223, 184, 91, 0.08);
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  color: var(--paper);
  font-size: 64px;
  line-height: 0.98;
  font-weight: 860;
}

.page-title {
  margin: 0 0 14px;
  font-size: 48px;
  line-height: 1.05;
}

.hero-copy {
  max-width: 640px;
  color: var(--paper-2);
  font-size: 19px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--paper);
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.button.primary {
  border-color: rgba(73, 160, 120, 0.9);
  background: var(--green);
  color: #07110c;
}

.button.copper {
  border-color: rgba(201, 111, 66, 0.9);
  background: var(--copper);
  color: #160b06;
}

.button:focus-visible,
.check-item input:focus-visible,
.select:focus-visible {
  outline: 3px solid rgba(125, 155, 230, 0.58);
  outline-offset: 2px;
}

.media-hero {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
  background: #070806;
  box-shadow: var(--shadow);
}

.media-hero > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
}

.media-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 6, 0.05), rgba(7, 8, 6, 0.7)),
    linear-gradient(90deg, rgba(7, 8, 6, 0.28), transparent 58%);
  pointer-events: none;
}

.media-hero-panel {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 12px;
  align-items: end;
}

.media-hero-title {
  padding: 14px;
  border: 1px solid rgba(244, 234, 214, 0.22);
  border-radius: 8px;
  background: rgba(17, 16, 13, 0.78);
  backdrop-filter: blur(12px);
}

.media-hero-title strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
}

.media-hero-title span,
.media-caption {
  display: block;
  margin-top: 6px;
  color: var(--paper-2);
  font-size: 13px;
}

.video-thumb-link {
  position: relative;
  min-height: 102px;
  border: 1px solid rgba(244, 234, 214, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: #080806;
}

.video-thumb-link img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.92;
}

.play-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 32px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.media-source {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.media-source a {
  color: #f1c96b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.game-media {
  padding: 46px 0;
  background: #0c0e0c;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.video-panel,
.media-frame,
.screenshot-card,
.side-media {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(244, 234, 214, 0.055);
  overflow: hidden;
}

.video-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.video-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--paper-2);
  font-size: 13px;
  font-weight: 760;
}

.video-panel-head a {
  flex: 0 0 auto;
  color: #f1c96b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #000;
}

.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-player .video-embed {
  position: absolute;
  inset: 0;
  height: 100%;
}

.video-poster {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #060605;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.5)),
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.68));
}

.video-play-copy {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  gap: 3px;
}

.video-play-copy strong {
  color: #fff;
  font-size: 20px;
  line-height: 1.12;
}

.video-play-copy span {
  color: var(--paper-2);
  font-size: 13px;
}

.video-player.is-playing .video-poster {
  display: none;
}

.media-stack {
  display: grid;
  gap: 12px;
}

.media-frame {
  min-height: 236px;
  position: relative;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 236px;
  object-fit: cover;
}

.media-frame .media-caption,
.screenshot-card .media-caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  margin: 0;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(17, 16, 13, 0.76);
  color: var(--paper-2);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.screenshot-card {
  position: relative;
  min-height: 176px;
}

.screenshot-card img {
  width: 100%;
  height: 100%;
  min-height: 176px;
  object-fit: cover;
  transition: transform 180ms ease;
}

.screenshot-card:hover img {
  transform: scale(1.025);
}

.side-media {
  margin-top: 14px;
}

.side-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.side-media .media-caption {
  margin: 0;
  padding: 10px 12px;
  color: var(--paper-2);
}

.hero-visual {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: linear-gradient(180deg, #29231c, #181511);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-head {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--paper-2);
  font-size: 13px;
  font-weight: 760;
}

.visual-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green-2);
  box-shadow: 0 0 18px rgba(159, 216, 182, 0.68);
}

.route-map {
  position: relative;
  min-height: 330px;
  padding: 18px;
  background:
    linear-gradient(rgba(244, 234, 214, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 234, 214, 0.06) 1px, transparent 1px),
    #211d18;
  background-size: 38px 38px;
}

.map-path {
  position: absolute;
  inset: 56px 62px 86px 54px;
  border: 2px dashed rgba(223, 184, 91, 0.55);
  border-left-color: transparent;
  border-bottom-color: rgba(73, 160, 120, 0.64);
  transform: skew(-8deg);
}

.map-node {
  position: absolute;
  width: 112px;
  min-height: 54px;
  display: grid;
  align-content: center;
  padding: 8px 10px;
  border: 1px solid rgba(244, 234, 214, 0.24);
  border-radius: 8px;
  background: rgba(17, 16, 13, 0.84);
  color: var(--paper);
  font-size: 12px;
  font-weight: 780;
}

.map-node span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.node-start {
  left: 24px;
  top: 34px;
}

.node-class {
  right: 28px;
  top: 58px;
}

.node-loot {
  left: 44px;
  bottom: 72px;
}

.node-extract {
  right: 42px;
  bottom: 30px;
  border-color: rgba(73, 160, 120, 0.7);
}

.mini-panel {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mini-stat {
  min-height: 64px;
  padding: 10px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(244, 234, 214, 0.055);
}

.mini-stat strong {
  display: block;
  font-size: 18px;
}

.mini-stat span {
  color: var(--paper-2);
  font-size: 12px;
}

.band {
  padding: 46px 0;
}

.band.paper {
  background: var(--paper);
  color: var(--ink);
}

.band.paper .section-kicker,
.band.paper .muted,
.band.paper .fact-card p,
.band.paper .guide-card p {
  color: var(--muted);
}

.section-head {
  max-width: 820px;
  margin-bottom: 22px;
}

.section-kicker {
  margin-bottom: 8px;
  color: #f3d991;
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.section-head h2 {
  margin-bottom: 10px;
  font-size: 36px;
  line-height: 1.08;
}

.muted {
  color: var(--paper-2);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 14px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-card,
.fact-card,
.tool-panel,
.source-list,
.callout,
.table-wrap {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(244, 234, 214, 0.055);
}

.band.paper .guide-card,
.band.paper .fact-card,
.band.paper .tool-panel,
.band.paper .source-list,
.band.paper .callout,
.band.paper .table-wrap {
  border-color: var(--line);
  background: rgba(25, 23, 19, 0.04);
}

.guide-card,
.fact-card {
  padding: 18px;
}

.guide-card .tag,
.fact-card .tag {
  color: var(--green-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.band.paper .guide-card .tag,
.band.paper .fact-card .tag {
  color: #2d7d60;
}

.guide-card h3,
.fact-card h3 {
  margin: 8px 0;
  font-size: 21px;
  line-height: 1.18;
}

.guide-card p,
.fact-card p {
  margin-bottom: 0;
  color: var(--paper-2);
}

.page-hero {
  padding: 46px 0 26px;
}

.game-cover-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background: #050604;
}

.game-cover-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.game-cover-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 4, 0.18), rgba(5, 6, 4, 0.58) 50%, rgba(5, 6, 4, 0.92)),
    linear-gradient(90deg, rgba(5, 6, 4, 0.92), rgba(5, 6, 4, 0.54) 52%, rgba(5, 6, 4, 0.78));
}

.game-cover-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: end;
  padding-top: 76px;
  padding-bottom: 42px;
}

.cover-copy {
  max-width: 760px;
}

.cover-status {
  border: 1px solid rgba(244, 234, 214, 0.22);
  border-radius: 8px;
  background: rgba(17, 16, 13, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.cover-status-head {
  padding: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.cover-status-head span,
.status-row span {
  display: block;
  color: var(--paper-2);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.cover-status-head strong {
  display: block;
  margin-top: 4px;
  color: var(--paper);
  font-size: 24px;
  line-height: 1.12;
}

.status-list {
  display: grid;
}

.status-row {
  display: grid;
  gap: 4px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(244, 234, 214, 0.1);
}

.status-row:last-child {
  border-bottom: 0;
}

.status-row strong {
  color: var(--paper);
  line-height: 1.25;
}

.discover-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 20px;
  align-items: stretch;
  padding: 28px 0;
}

.discover-panel,
.launch-brief {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(244, 234, 214, 0.055);
  overflow: hidden;
}

.discover-panel details {
  border-bottom: 1px solid rgba(244, 234, 214, 0.11);
}

.discover-panel details:last-child {
  border-bottom: 0;
}

.discover-panel summary {
  min-height: 58px;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
}

.discover-panel summary::marker {
  color: var(--gold);
}

.discover-panel summary span {
  color: var(--green-2);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.discover-panel summary strong {
  color: var(--paper);
}

.discover-links {
  display: grid;
  gap: 8px;
  padding: 0 16px 16px 160px;
}

.discover-links a {
  color: var(--paper-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.launch-brief {
  padding: 18px;
}

.launch-brief h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.1;
}

.launch-brief p {
  margin-bottom: 0;
  color: var(--paper-2);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--paper-2);
  font-size: 13px;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.status-item {
  min-height: 76px;
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(244, 234, 214, 0.055);
}

.status-item span {
  display: block;
  color: var(--paper-2);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.status-item strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: start;
}

.content-layout > *,
.discover-stack > *,
.path-grid > *,
.faq-grid > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.media-layout > *,
.media-grid > *,
.game-cover-content > * {
  min-width: 0;
}

.article {
  color: var(--paper);
  min-width: 0;
}

.article h2 {
  margin: 34px 0 12px;
  font-size: 30px;
  line-height: 1.12;
}

.article h3 {
  margin: 24px 0 8px;
  font-size: 22px;
}

.article p,
.article li {
  color: var(--paper-2);
  font-size: 16px;
}

.article a {
  color: #f1c96b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article ul,
.article ol {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.toc {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(244, 234, 214, 0.055);
}

.toc strong {
  color: var(--paper);
  font-size: 13px;
  text-transform: uppercase;
}

.toc a {
  color: var(--paper-2);
  font-size: 14px;
}

.callout {
  padding: 16px;
  margin: 18px 0;
}

.callout strong {
  color: var(--paper);
}

.table-wrap {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line-dark);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--paper);
  font-size: 13px;
  text-transform: uppercase;
}

td {
  color: var(--paper-2);
}

.checklist-app {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.tool-panel {
  padding: 16px;
}

.progress-ring {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: conic-gradient(var(--green) calc(var(--progress, 0) * 1%), rgba(244, 234, 214, 0.12) 0);
}

.progress-inner {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--line-dark);
}

.progress-inner strong {
  font-size: 26px;
}

.check-group {
  margin-bottom: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
}

.check-group h2 {
  margin: 0;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(244, 234, 214, 0.055);
  font-size: 18px;
}

.check-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(244, 234, 214, 0.08);
  cursor: pointer;
}

.check-item:last-child {
  border-bottom: 0;
}

.check-item input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--green);
}

.check-copy strong {
  display: block;
  color: var(--paper);
}

.check-copy span {
  display: block;
  color: var(--paper-2);
  font-size: 14px;
}

.source-list {
  padding: 16px;
}

.source-list ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.source-list a {
  color: #f1c96b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.path-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.path-card,
.faq-card {
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(244, 234, 214, 0.055);
}

.path-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.path-icon {
  width: 58px;
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(73, 160, 120, 0.5);
  border-radius: 8px;
  color: var(--green-2);
  background: rgba(73, 160, 120, 0.1);
  font-size: 12px;
  font-weight: 860;
}

.path-card h3,
.faq-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.16;
}

.path-card p,
.faq-card p {
  margin: 0;
  color: var(--paper-2);
}

.site-footer {
  padding: 30px 0 46px;
  border-top: 1px solid var(--line-dark);
  color: var(--paper-2);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 960px) {
  h1 {
    font-size: 52px;
  }

  .hero,
  .hero.media-led,
  .media-layout,
  .content-layout,
  .checklist-app,
  .game-cover-content,
  .discover-stack {
    grid-template-columns: 1fr;
  }

  .hero.media-led {
    min-height: 0;
  }

  .media-hero {
    min-height: 460px;
  }

  .toc {
    position: static;
  }

  .grid-4,
  .status-strip,
  .path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-cover-hero {
    min-height: auto;
  }

  .cover-status {
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 24px, 1180px);
  }

  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  h1,
  .page-title {
    font-size: 38px;
  }

  .hero {
    padding-top: 34px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .media-grid,
  .status-strip,
  .mini-panel,
  .path-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .game-cover-content {
    padding-top: 34px;
    padding-bottom: 24px;
  }

  .game-cover-shade {
    background:
      linear-gradient(180deg, rgba(5, 6, 4, 0.2), rgba(5, 6, 4, 0.82) 40%, rgba(5, 6, 4, 0.96)),
      linear-gradient(90deg, rgba(5, 6, 4, 0.82), rgba(5, 6, 4, 0.72));
  }

  .discover-panel summary {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 12px 14px;
  }

  .discover-links {
    padding: 0 14px 14px;
  }

  .path-card,
  .faq-card {
    min-height: 0;
  }

  .media-hero {
    min-height: 420px;
  }

  .media-hero-panel {
    grid-template-columns: 1fr;
  }

  .video-thumb-link {
    min-height: 88px;
  }

  .route-map {
    min-height: 430px;
  }

  .map-node {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-bottom: 10px;
  }

  .map-path {
    display: none;
  }

  .mini-panel {
    position: static;
    margin-top: 6px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
