:root {
  --bg: #0a0d10;
  --bg-deep: #07090b;
  --surface: #11161b;
  --surface-2: #171d23;
  --surface-3: #1d242b;
  --paper: #ebe8df;
  --text: #f3f1ea;
  --text-soft: #c9c8c2;
  --muted: #8f969d;
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(255, 255, 255, .2);
  --accent: #e29142;
  --accent-bright: #f5a54d;
  --accent-dark: #a95e21;
  --blue: #74a9c7;
  --green: #6fab83;
  --red: #c66f5d;
  --yellow: #c9aa5b;
  --shell: 1240px;
  --wide: 1380px;
  --narrow: 820px;
  --header-h: 74px;
  --radius: 4px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 6%, rgba(69, 105, 127, .13), transparent 31%),
    radial-gradient(circle at 86% 22%, rgba(226, 145, 66, .07), transparent 24%),
    linear-gradient(180deg, #0a0d10 0%, #0b0f13 55%, #090c0f 100%);
}
body.menu-open, body.search-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: #14100b; }

h1, h2, h3, h4, p, ul, ol, dl, figure { margin-top: 0; }
h1, h2, h3, h4 {
  margin-bottom: .5em;
  font-family: "Arial Narrow", "Franklin Gothic Medium", "Segoe UI", sans-serif;
  line-height: 1.05;
  letter-spacing: -.035em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.65rem, 6vw, 5.9rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 3.5vw, 3.35rem); font-weight: 850; }
h3 { font-size: clamp(1.18rem, 2vw, 1.65rem); font-weight: 800; }
p { color: var(--text-soft); }
small { color: var(--muted); }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.shell-wide { width: min(calc(100% - 32px), var(--wide)); margin-inline: auto; }
.shell-narrow { width: min(calc(100% - 48px), var(--narrow)); margin-inline: auto; }
.section-space { padding-block: clamp(72px, 9vw, 126px); }
.section-muted {
  background: #0e1317;
  border-block: 1px solid var(--line);
}
.section-rule { width: 52px; height: 3px; margin-bottom: 20px; background: var(--accent); }
.sr-only, .hidden-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--paper);
  color: #111;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--accent-bright);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.category {
  display: inline-block;
  color: var(--accent-bright);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 14px;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.meta-line > * + *::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin-right: 14px;
  vertical-align: middle;
  border-radius: 50%;
  background: rgba(255,255,255,.36);
}
.media-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(7, 9, 11, .82);
  color: #e4e2dc;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .icon-button:focus-visible, .filter-button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 2px solid var(--accent-bright); outline-offset: 3px; }
.button-accent { background: linear-gradient(135deg, var(--accent-bright), var(--accent)); color: #171008; box-shadow: 0 10px 28px rgba(226,145,66,.18); }
.button-accent:hover { background: #ffb35f; }
.button-secondary { border-color: var(--line-strong); background: rgba(255,255,255,.045); color: var(--text); }
.button-secondary:hover { border-color: rgba(255,255,255,.36); background: rgba(255,255,255,.08); }
.button-ghost { border-color: var(--line); background: transparent; color: var(--text-soft); }
.button-ghost:hover { border-color: var(--accent); color: var(--text); }
.button-small { min-height: 40px; padding: 9px 16px; font-size: .7rem; }
.button-full { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.text-link span { color: var(--accent); transition: transform .18s ease; }
.text-link:hover span { transform: translateX(4px); }

/* Header */
.site-status {
  position: relative;
  z-index: 102;
  min-height: 34px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
  color: #9ea4a9;
  font-size: .66rem;
  font-weight: 750;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.status-row { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.status-left, .status-right { display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.status-left strong { color: #d6d8d7; }
.status-right a { color: #d8dad8; }
.status-right a:hover { color: var(--accent-bright); }
.status-separator { width: 1px; height: 12px; background: var(--line-strong); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(226,145,66,.12); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 13, 16, .91);
  backdrop-filter: blur(18px) saturate(130%);
}
.header-row { height: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 45px; height: 45px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { color: #f4f2eb; font-size: 1.03rem; font-weight: 950; letter-spacing: .03em; }
.brand-copy em { color: var(--accent-bright); font-style: normal; }
.brand-copy small { margin-top: 5px; color: #7d858c; font-size: .57rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.main-nav { justify-self: center; display: flex; align-items: stretch; height: 100%; }
.main-nav a { position: relative; display: flex; align-items: center; padding: 0 14px; color: #b6bbc0; font-size: .74rem; font-weight: 850; letter-spacing: .045em; text-transform: uppercase; }
.main-nav a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: -1px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-button {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255,255,255,.025);
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease;
}
.icon-button:hover { border-color: var(--line-strong); background: rgba(255,255,255,.06); }
.icon-button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 4px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

/* Section headings */
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 36px; }
.section-head > div { max-width: 810px; }
.section-head h2 { margin-bottom: 10px; }
.section-head p { max-width: 720px; margin-bottom: 0; color: var(--muted); }

/* Home lead */
.home-lead { padding-top: 26px; }
.feature-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(300px, .96fr); gap: 12px; }
.feature-side { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; }
.feature-card { position: relative; min-height: 270px; overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.feature-main { min-height: 590px; }
.feature-media, .feature-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.feature-media img { object-fit: cover; transition: transform .7s cubic-bezier(.2,.65,.25,1); }
.feature-card:hover .feature-media img { transform: scale(1.035); }
.feature-shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(5,7,8,.08) 20%, rgba(5,7,8,.38) 52%, rgba(5,7,8,.96) 100%); }
.feature-small .feature-shade { background: linear-gradient(180deg, rgba(5,7,8,.06) 5%, rgba(5,7,8,.84) 100%); }
.feature-copy { position: absolute; z-index: 2; left: clamp(22px, 4vw, 48px); right: clamp(22px, 4vw, 48px); bottom: clamp(22px, 4vw, 42px); }
.feature-copy h1, .feature-copy h2 { max-width: 900px; margin: 13px 0 13px; font-size: clamp(2.25rem, 4.5vw, 4.55rem); }
.feature-copy h1 a:hover, .feature-copy h2 a:hover { color: #fff; }
.feature-copy p { max-width: 780px; margin-bottom: 0; color: #d2d1cb; font-size: 1.02rem; }
.feature-small .feature-copy { left: 22px; right: 22px; bottom: 20px; }
.feature-small .feature-copy h1, .feature-small .feature-copy h2 { margin: 10px 0 0; font-size: clamp(1.45rem, 2.2vw, 2rem); }
.feature-card .meta-line { color: #bbbdbd; }
.headline-strip { display: grid; grid-template-columns: auto 1fr; align-items: stretch; margin-top: 12px; border: 1px solid var(--line); background: #0d1115; }
.headline-label { display: flex; align-items: center; padding: 12px 18px; background: var(--accent); color: #130d07; font-size: .68rem; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.headline-items { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); }
.headline-items a { min-width: 0; padding: 11px 16px; border-left: 1px solid var(--line); color: #c7c9c8; font-size: .73rem; line-height: 1.35; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.headline-items a strong { margin-right: 8px; color: var(--accent-bright); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.headline-items a:hover { color: #fff; background: rgba(255,255,255,.025); }

/* News and sidebars */
.home-columns { display: grid; grid-template-columns: minmax(0, 1.75fr) minmax(300px, .75fr); align-items: start; gap: clamp(38px, 6vw, 78px); }
.news-list { border-top: 1px solid var(--line); }
.news-row { display: grid; grid-template-columns: 230px minmax(0,1fr); gap: 24px; padding-block: 25px; border-bottom: 1px solid var(--line); }
.news-row-media { position: relative; min-height: 142px; overflow: hidden; background: var(--surface); }
.news-row-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.news-row:hover .news-row-media img { transform: scale(1.035); }
.news-row-copy h3 { margin: 8px 0 9px; font-size: clamp(1.38rem, 2.2vw, 2rem); }
.news-row-copy h3 a:hover { color: var(--accent-bright); }
.news-row-copy p { margin-bottom: 14px; color: var(--muted); }
.home-sidebar { display: grid; gap: 18px; }
.sidebar-card { padding: 27px; border: 1px solid var(--line); background: var(--surface); }
.sidebar-card h2 { font-size: 1.8rem; }
.game-facts dl { margin: 22px 0 20px; }
.game-facts dl div { display: grid; grid-template-columns: 1fr 1.2fr; gap: 12px; padding: 9px 0; border-top: 1px solid var(--line); }
.game-facts dl div:last-child { border-bottom: 1px solid var(--line); }
.game-facts dt { color: var(--muted); font-size: .73rem; font-weight: 800; text-transform: uppercase; }
.game-facts dd { margin: 0; color: var(--text); font-size: .82rem; font-weight: 750; text-align: right; }
.small-note { color: #777f86; font-size: .73rem; }
.status-key { display: grid; gap: 16px; margin: 17px 0 0; padding: 0; list-style: none; }
.status-key li { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 11px; color: var(--muted); font-size: .78rem; }
.source-badge { display: inline-flex; align-items: center; justify-content: center; min-height: 24px; padding: 4px 7px; border: 1px solid currentColor; font-size: .58rem; font-weight: 900; letter-spacing: .07em; line-height: 1; text-transform: uppercase; white-space: nowrap; }
.status-confirmed { color: #75c08e; background: rgba(75,155,101,.09); }
.status-progress { color: #76aaca; background: rgba(76,135,171,.1); }
.status-target { color: #d0ab5f; background: rgba(183,142,56,.1); }
.status-concept { color: #bc8bbd; background: rgba(145,82,149,.1); }
.sidebar-promo { display: grid; gap: 8px; padding: 27px; border: 1px solid rgba(226,145,66,.32); background: linear-gradient(145deg, rgba(226,145,66,.14), rgba(226,145,66,.02)); }
.sidebar-promo strong { font-family: "Arial Narrow", "Segoe UI", sans-serif; font-size: 1.7rem; line-height: 1.05; }
.sidebar-promo span:not(.eyebrow) { color: var(--muted); font-size: .83rem; }
.sidebar-promo b { margin-top: 10px; color: var(--accent-bright); font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; }

/* Game focus */
.game-focus { border-block: 1px solid var(--line); background: #0e1317; }
.game-focus-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); align-items: center; gap: clamp(42px, 7vw, 92px); }
.game-focus-media { position: relative; }
.game-focus-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border: 1px solid var(--line); box-shadow: var(--shadow); }
.image-caption { margin: 12px 0 0; color: #7e858b; font-size: .72rem; }
.image-caption strong { color: #b6b9b8; }
.game-focus-copy h2 { max-width: 670px; }
.game-focus-copy > p { max-width: 660px; }
.focus-points { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 28px; border: 1px solid var(--line); background: var(--line); }
.focus-points div { padding: 17px; background: var(--surface); }
.focus-points strong { display: block; margin-bottom: 4px; color: #efeee8; font-size: .83rem; }
.focus-points span { color: var(--muted); font-size: .75rem; }

/* Cards */
.story-grid, .guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.story-card, .guide-card { display: flex; min-width: 0; flex-direction: column; border: 1px solid var(--line); background: var(--surface); transition: transform .2s ease, border-color .2s ease, background-color .2s ease; }
.story-card:hover, .guide-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.22); background: var(--surface-2); }
.story-media, .guide-media { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #0c1013; }
.story-media img, .guide-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.story-card:hover img, .guide-card:hover img { transform: scale(1.045); }
.story-copy, .guide-copy { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.story-copy h3, .guide-copy h3 { margin: 10px 0 8px; }
.story-copy h3 a:hover, .guide-copy h3 a:hover { color: var(--accent-bright); }
.story-copy p, .guide-copy p { margin-bottom: 18px; color: var(--muted); font-size: .9rem; }
.guide-copy .text-link { margin-top: auto; }
.guide-grid-wide { grid-template-columns: repeat(3, minmax(0,1fr)); }

/* Peoples */
.peoples-home { overflow: hidden; background: #090c0f; border-block: 1px solid var(--line); }
.people-strip { display: grid; grid-auto-columns: minmax(220px, 1fr); grid-auto-flow: column; gap: 12px; overflow-x: auto; padding: 4px 0 16px; scroll-snap-type: x mandatory; scrollbar-color: var(--accent) var(--surface); }
.people-card { position: relative; min-width: 0; scroll-snap-align: start; border: 1px solid var(--line); background: var(--surface); overflow: hidden; }
.people-number { position: absolute; z-index: 3; top: 13px; left: 13px; color: rgba(255,255,255,.66); font-size: .66rem; font-weight: 900; letter-spacing: .12em; }
.people-media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #d8d5cd; }
.people-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(8,10,12,.82) 100%); pointer-events: none; }
.people-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s ease; }
.people-card:hover .people-media img { transform: scale(1.035); }
.people-copy { padding: 18px; }
.people-copy h3 { margin: 8px 0 1px; font-size: 1.65rem; }
.people-copy strong { color: #d5d5d0; font-size: .78rem; }
.people-copy p { margin: 11px 0 0; color: var(--muted); font-size: .78rem; }
.people-grid-full { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 15px; margin-top: 46px; }
.people-grid-full .people-card:nth-child(n+5) { grid-column: span 1; }

/* Media */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.video-card { border: 1px solid var(--line); background: var(--surface); }
.video-card > div { padding: 22px 24px 24px; }
.video-card h3 { margin: 8px 0 7px; font-size: 1.7rem; }
.video-card p { margin-bottom: 0; color: var(--muted); }
.video-poster { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; padding: 0; border: 0; background: #000; cursor: pointer; }
.video-poster img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform .4s ease, opacity .3s ease; }
.video-poster:hover img { transform: scale(1.03); opacity: 1; }
.play-button { position: absolute; left: 50%; top: 50%; display: grid; width: 70px; height: 70px; place-items: center; padding-left: 4px; transform: translate(-50%, -50%); border: 1px solid rgba(255,255,255,.6); border-radius: 50%; background: rgba(7,9,11,.68); color: #fff; font-size: 1.2rem; backdrop-filter: blur(10px); }
.video-poster iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Community and newsletter */
.community-panel { display: grid; grid-template-columns: minmax(0,1fr) minmax(0, .92fr); align-items: stretch; min-height: 470px; border: 1px solid var(--line); background: var(--surface); }
.community-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 6vw, 74px); }
.community-copy h2 { max-width: 620px; }
.community-copy p { max-width: 600px; }
.community-media { min-height: 420px; }
.community-media img { width: 100%; height: 100%; object-fit: cover; }
.newsletter-wrap { padding-top: 0; }
.newsletter-block { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr); align-items: center; gap: clamp(34px, 7vw, 90px); padding: clamp(35px, 6vw, 68px); border: 1px solid rgba(226,145,66,.24); background: linear-gradient(125deg, rgba(226,145,66,.13), rgba(116,169,199,.05) 65%, rgba(255,255,255,.02)); }
.newsletter-block h2 { max-width: 650px; }
.newsletter-block p { max-width: 610px; margin-bottom: 0; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.newsletter-form input[type="email"] { min-width: 0; height: 50px; padding: 0 15px; border: 1px solid var(--line-strong); border-radius: 2px; background: rgba(5,7,9,.58); color: #fff; }
.consent { display: flex; grid-column: 1 / -1; gap: 9px; align-items: flex-start; color: #8f969d; font-size: .69rem; line-height: 1.45; }
.consent input { margin-top: 3px; accent-color: var(--accent); }

/* Page hero */
.page-hero { position: relative; min-height: clamp(420px, 52vw, 650px); display: flex; align-items: end; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero-media, .page-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero-media img { object-fit: cover; object-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,9,11,.96) 0%, rgba(7,9,11,.81) 43%, rgba(7,9,11,.3) 76%, rgba(7,9,11,.48) 100%), linear-gradient(180deg, rgba(7,9,11,.05), rgba(7,9,11,.85)); }
.page-hero-copy { position: relative; z-index: 2; padding-block: clamp(70px, 9vw, 118px) clamp(55px, 7vw, 86px); }
.page-hero-copy h1 { max-width: 960px; margin-bottom: 18px; font-size: clamp(3rem, 6.6vw, 6.7rem); }
.page-hero-copy > p { max-width: 780px; margin-bottom: 0; color: #c8c9c6; font-size: clamp(1rem, 1.6vw, 1.2rem); }
.visual-credit { position: absolute; right: 24px; bottom: 16px; z-index: 3; color: rgba(255,255,255,.55); font-size: .58rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 34px; color: #8c949a; font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--accent-bright); }
.breadcrumbs span[aria-hidden] { color: #555d64; }

/* Filters */
.filter-bar { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 32px; padding-bottom: 19px; border-bottom: 1px solid var(--line); }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 7px; }
.filter-button { min-height: 35px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 2px; background: transparent; color: #a8adb1; font-size: .68rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; }
.filter-button:hover, .filter-button.active { border-color: var(--accent); background: rgba(226,145,66,.09); color: #fff; }
.inline-search { display: flex; min-width: 290px; align-items: center; gap: 9px; padding: 0 12px; border: 1px solid var(--line); background: var(--surface); }
.inline-search svg { width: 17px; height: 17px; fill: none; stroke: #81898f; stroke-width: 1.8; }
.inline-search input { width: 100%; height: 40px; border: 0; outline: 0; background: transparent; color: #fff; }
.inline-search.large { min-width: 0; width: 100%; }
.no-results { padding: 50px; border: 1px dashed var(--line-strong); color: var(--muted); text-align: center; }

/* Game page */
.overview-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: clamp(44px, 8vw, 110px); align-items: start; }
.overview-copy h2 { max-width: 760px; }
.overview-copy p { max-width: 730px; font-size: 1.03rem; }
.facts-panel { border-top: 3px solid var(--accent); background: var(--surface); }
.facts-panel > div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.facts-panel span { color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.facts-panel strong { color: #efeee9; font-size: .82rem; text-align: right; }
.facts-panel p { margin: 0; padding: 15px 18px; color: #777f85; font-size: .68rem; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.pillar-grid article { min-height: 230px; padding: 28px; background: var(--surface); }
.pillar-grid article > span { color: var(--accent); font-size: .68rem; font-weight: 900; letter-spacing: .1em; }
.pillar-grid h3 { margin: 32px 0 10px; font-size: 1.6rem; }
.pillar-grid p { margin-bottom: 0; color: var(--muted); font-size: .88rem; }
.media-proof-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: clamp(40px, 7vw, 90px); align-items: center; }
.media-proof-grid img { width: 100%; border: 1px solid var(--line); }
.evidence-list { display: grid; gap: 1px; margin: 27px 0 0; padding: 1px; background: var(--line); list-style: none; }
.evidence-list li { display: grid; grid-template-columns: auto 1fr; gap: 17px; padding: 18px; background: var(--surface); }
.evidence-list strong { display: block; margin-bottom: 3px; }
.evidence-list p { margin: 0; color: var(--muted); font-size: .83rem; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.spec-grid article { padding: 28px; border: 1px solid var(--line); background: var(--surface); }
.spec-grid dl { margin: 16px 0 0; }
.spec-grid dl div { display: grid; grid-template-columns: .75fr 1.25fr; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.spec-grid dt { color: var(--muted); font-size: .74rem; font-weight: 800; text-transform: uppercase; }
.spec-grid dd { margin: 0; color: #e3e1dc; font-size: .82rem; }

/* Peoples page */
.intro-columns { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 8vw, 100px); align-items: start; }
.intro-columns p { font-size: 1.02rem; }
.rivalry-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 8vw, 100px); }
.rivalry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rivalry-grid article { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; min-height: 135px; padding: 20px; border: 1px solid var(--line); background: var(--surface); }
.rivalry-grid article > div:last-child { text-align: right; }
.rivalry-grid strong { display: block; color: #f0efe9; font-size: 1.05rem; }
.rivalry-grid span { color: var(--muted); font-size: .72rem; }
.rivalry-grid b { color: var(--accent); font-size: .65rem; letter-spacing: .09em; }
.rivalry-grid .neutral { grid-template-columns: 1fr; grid-column: 1 / -1; min-height: 100px; border-color: rgba(226,145,66,.28); }
.rivalry-grid .neutral div { text-align: left !important; }
.image-grid { display: grid; grid-template-columns: repeat(7, minmax(150px,1fr)); gap: 10px; overflow-x: auto; padding-bottom: 12px; }
.image-grid figure { position: relative; min-width: 150px; margin: 0; border: 1px solid var(--line); background: #d8d5cd; }
.image-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.image-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 12px 10px; background: linear-gradient(transparent, rgba(8,10,12,.94)); color: #fff; font-size: .74rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.credit-line { margin: 12px 0 0; color: #737b81; font-size: .68rem; }

/* Article */
.article-page { padding-bottom: 0; }
.article-header { padding-top: clamp(70px, 9vw, 120px); padding-bottom: 42px; }
.article-header h1 { margin: 18px 0 20px; font-size: clamp(3rem, 6.2vw, 6.3rem); }
.article-deck { max-width: 800px; color: #bfc2c2; font-size: clamp(1.08rem, 1.8vw, 1.3rem); }
.article-hero { margin-bottom: 58px; }
.article-hero img { width: 100%; max-height: 720px; object-fit: cover; border: 1px solid var(--line); }
.article-hero figcaption { display: flex; gap: 9px; margin-top: 9px; color: #747c82; font-size: .67rem; }
.article-hero figcaption span { color: var(--accent); font-weight: 800; text-transform: uppercase; }
.article-grid { display: grid; grid-template-columns: minmax(0, 790px) minmax(260px, 330px); justify-content: space-between; gap: 70px; padding-bottom: clamp(80px, 10vw, 140px); }
.article-content { min-width: 0; }
.development-note { display: grid; grid-template-columns: auto 1fr; gap: 16px; margin-bottom: 42px; padding: 17px 19px; border-left: 3px solid var(--accent); background: rgba(226,145,66,.07); }
.development-note strong { color: #fff; font-size: .78rem; }
.development-note span { color: #a8adaf; font-size: .78rem; }
.article-section { margin-bottom: 48px; }
.article-section h2 { margin-bottom: 19px; font-size: clamp(2rem, 3.4vw, 3.05rem); }
.article-section p { color: #c4c5c2; font-size: 1.03rem; line-height: 1.82; }
.article-section .article-lead { color: #ebe9e3; font-size: 1.22rem; line-height: 1.72; }
.article-section ul { display: grid; gap: 10px; margin: 21px 0 0; padding: 0; list-style: none; }
.article-section li { position: relative; padding-left: 23px; color: #c7c8c4; }
.article-section li::before { content: ""; position: absolute; left: 0; top: .68em; width: 8px; height: 2px; background: var(--accent); }
.article-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 40px 0 54px; }
.article-gallery figure { margin: 0; border: 1px solid var(--line); background: var(--surface); }
.article-gallery img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.article-gallery figcaption { display: flex; justify-content: space-between; gap: 10px; padding: 10px 12px; color: #8b9297; font-size: .68rem; }
.article-gallery figcaption span { color: var(--accent); font-weight: 800; text-transform: uppercase; }
.article-source { margin-top: 64px; padding: 30px; border: 1px solid var(--line); background: var(--surface); }
.article-source h2 { font-size: 1.9rem; }
.article-source p { max-width: 650px; color: var(--muted); }
.article-sidebar { display: grid; align-content: start; gap: 18px; }
.sticky-card { position: sticky; top: calc(var(--header-h) + 24px); }
.article-sidebar .check-list { margin: 10px 0 22px; }
.related-section { padding-block: clamp(70px, 9vw, 120px); border-top: 1px solid var(--line); background: #0e1317; }

/* Lists */
.check-list, .cross-list { display: grid; gap: 12px; margin: 20px 0; padding: 0; list-style: none; }
.check-list li, .cross-list li { position: relative; padding-left: 26px; color: #bec1c0; font-size: .87rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.cross-list li::before { content: "×"; position: absolute; left: 0; color: var(--red); font-weight: 900; }

/* Wiki */
.wiki-layout { display: grid; grid-template-columns: 245px minmax(0,1fr); gap: 48px; align-items: start; }
.wiki-sidebar .sidebar-card { padding: 18px; }
.wiki-category-buttons { display: grid; gap: 5px; }
.wiki-category-buttons .filter-button { display: flex; justify-content: space-between; width: 100%; text-align: left; }
.wiki-category-buttons .filter-button span { color: #6f777d; }
.wiki-filter { margin-bottom: 18px; }
.result-count { color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; white-space: nowrap; }
.wiki-list { border-top: 1px solid var(--line); }
.wiki-entry { border-bottom: 1px solid var(--line); background: transparent; }
.wiki-entry[hidden] { display: none; }
.wiki-entry summary { display: grid; grid-template-columns: minmax(0,1fr) auto auto; gap: 18px; align-items: center; padding: 22px 0; cursor: pointer; list-style: none; }
.wiki-entry summary::-webkit-details-marker { display: none; }
.wiki-entry summary h2 { margin: 4px 0 0; font-size: 1.55rem; }
.details-arrow { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--line); color: var(--accent); transition: transform .2s ease; }
.wiki-entry[open] .details-arrow { transform: rotate(45deg); }
.wiki-entry-body { padding: 0 78px 24px 0; }
.wiki-entry-body p { max-width: 820px; color: #b8bcbb; }

/* Directory / forms */
.empty-directory { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; min-height: 230px; padding: 38px; border: 1px dashed var(--line-strong); background: rgba(255,255,255,.018); }
.empty-mark { color: rgba(226,145,66,.38); font-family: "Arial Narrow", sans-serif; font-size: 4.8rem; font-weight: 900; line-height: 1; }
.empty-directory h2 { margin-bottom: 9px; }
.empty-directory p { max-width: 720px; margin-bottom: 0; }
.guild-grid, .recruitment-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.guild-card, .recruitment-card { padding: 25px; border: 1px solid var(--line); background: var(--surface); }
.form-layout { display: grid; grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr); gap: clamp(40px, 8vw, 100px); align-items: start; }
.site-form { display: grid; gap: 17px; padding: clamp(24px, 4vw, 40px); border: 1px solid var(--line); background: var(--surface); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.site-form label:not(.consent) { display: grid; gap: 7px; color: #d5d6d3; font-size: .72rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.site-form input, .site-form select, .site-form textarea { width: 100%; border: 1px solid var(--line-strong); border-radius: 2px; background: #0b0f12; color: #fff; }
.site-form input, .site-form select { height: 47px; padding: 0 13px; }
.site-form textarea { resize: vertical; padding: 13px; line-height: 1.55; }
.site-form input::placeholder, .site-form textarea::placeholder { color: #60696f; }
.site-form select { color-scheme: dark; }
.site-form .button { justify-self: start; }

/* Timeline */
.timeline-layout { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); gap: clamp(46px, 8vw, 105px); align-items: start; }
.timeline-intro { position: sticky; top: calc(var(--header-h) + 30px); }
.timeline-intro .status-key { margin-top: 30px; }
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 11px; bottom: 20px; width: 1px; background: var(--line-strong); }
.timeline-item { position: relative; padding: 0 0 48px 20px; }
.timeline-marker { position: absolute; left: -33px; top: 8px; width: 12px; height: 12px; border: 2px solid var(--accent); border-radius: 50%; background: var(--bg); box-shadow: 0 0 0 5px rgba(226,145,66,.08); }
.timeline-date { margin-bottom: 7px; color: var(--muted); font-size: .71rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.timeline-item h2 { margin: 9px 0 8px; font-size: 1.9rem; }
.timeline-item p { max-width: 680px; color: var(--muted); }

/* Join */
.join-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(300px,.8fr); gap: clamp(44px, 8vw, 100px); align-items: start; }
.role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 34px; border: 1px solid var(--line); background: var(--line); }
.role-grid article { padding: 24px; background: var(--surface); }
.role-grid article > span { color: var(--accent); font-size: .68rem; font-weight: 900; }
.role-grid h3 { margin: 18px 0 7px; }
.role-grid p { margin: 0; color: var(--muted); font-size: .83rem; }
.join-links { display: grid; gap: 12px; }
.join-link { display: grid; gap: 7px; padding: 23px; border: 1px solid var(--line); background: var(--surface); }
.join-link.primary { border-color: rgba(226,145,66,.32); background: linear-gradient(135deg, rgba(226,145,66,.12), var(--surface)); }
.join-link > span { color: var(--accent-bright); font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.join-link strong { font-size: 1.1rem; }
.join-link small { line-height: 1.5; }
.join-link:hover { border-color: var(--line-strong); }

/* FAQ / About / Credits */
.faq-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.faq-list details { background: var(--surface); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 22px 24px; color: #efeee9; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--accent); font-size: 1.4rem; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; padding: 0 24px 24px; margin: 0; color: var(--muted); }
.about-grid, .credits-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.about-grid article, .credits-grid article { padding: 30px; border: 1px solid var(--line); background: var(--surface); }
.about-grid h2, .credits-grid h2 { font-size: 2rem; }
.source-list { display: grid; gap: 9px; margin: 18px 0; padding: 0; list-style: none; }
.source-list a { color: #c8cac8; font-size: .85rem; }
.source-list a:hover { color: var(--accent-bright); }

/* Plain/legal */
.plain-page { min-height: 70vh; padding-block: clamp(70px, 10vw, 130px); }
.plain-page h1 { max-width: 900px; margin-bottom: 42px; }
.legal-content { padding-top: 8px; }
.legal-content h2 { margin-top: 42px; font-size: 1.8rem; }
.legal-content p { color: #b9bcba; }
.legal-content a { color: var(--accent-bright); text-decoration: underline; text-underline-offset: 3px; }
.thanks-page { min-height: 70vh; display: grid; place-items: center; padding: 60px 24px; }
.thanks-card { width: min(100%, 650px); padding: clamp(34px, 7vw, 70px); border: 1px solid var(--line); background: var(--surface); text-align: center; }
.thanks-card img { margin: 0 auto 24px; }
.thanks-card h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.not-found { position: relative; min-height: calc(100vh - 108px); display: grid; place-items: center; overflow: hidden; }
.not-found-media, .not-found-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.not-found-media img { object-fit: cover; filter: saturate(.65) brightness(.55); }
.not-found::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle, rgba(7,9,11,.25), rgba(7,9,11,.92)); }
.not-found-copy { position: relative; z-index: 2; width: min(calc(100% - 48px), 760px); text-align: center; }
.not-found-copy > span { color: var(--accent); font-size: 7rem; font-weight: 950; line-height: 1; opacity: .65; }
.not-found-copy h1 { font-size: clamp(2.6rem, 6vw, 5.6rem); }
.not-found-copy p { font-size: 1.05rem; }
.not-found-copy .button-row { justify-content: center; }

/* Search */
.search-layer { position: fixed; inset: 0; z-index: 1000; }
.search-layer[hidden] { display: none; }
.search-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(4,6,7,.82); backdrop-filter: blur(10px); cursor: default; }
.search-panel { position: relative; z-index: 2; width: min(calc(100% - 32px), 780px); max-height: min(82vh, 760px); margin: 7vh auto 0; overflow: hidden; border: 1px solid var(--line-strong); background: #0f1418; box-shadow: 0 35px 100px rgba(0,0,0,.65); }
.search-panel-head { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 24px 25px 16px; }
.search-panel-head h2 { margin: 0; font-size: 2rem; }
.search-field { display: flex; align-items: center; gap: 11px; margin: 0 25px; padding: 0 14px; border: 1px solid var(--line-strong); background: #090d10; }
.search-field svg { width: 20px; height: 20px; fill: none; stroke: #92999e; stroke-width: 1.8; }
.search-field input { min-width: 0; flex: 1; height: 54px; border: 0; outline: 0; background: transparent; color: #fff; font-size: 1rem; }
.search-field kbd { padding: 4px 7px; border: 1px solid var(--line); background: var(--surface); color: #777f84; font-size: .62rem; }
.search-help { padding: 10px 25px 16px; color: #697177; font-size: .69rem; }
.search-results { max-height: 485px; overflow: auto; border-top: 1px solid var(--line); }
.search-empty { padding: 30px 25px; color: var(--muted); }
.search-result { display: grid; grid-template-columns: auto 1fr auto; gap: 15px; align-items: start; padding: 17px 25px; border-bottom: 1px solid var(--line); }
.search-result:hover { background: rgba(255,255,255,.035); }
.search-result-type { min-width: 90px; color: var(--accent-bright); font-size: .62rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.search-result strong { display: block; margin-bottom: 3px; }
.search-result p { margin: 0; color: #81898f; font-size: .75rem; line-height: 1.5; }
.search-result > span:last-child { color: #70787e; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: #07090b; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 50px; padding-block: 66px; }
.footer-brand p { max-width: 430px; margin: 22px 0 0; color: #777f85; font-size: .8rem; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 8px; }
.footer-grid h2 { margin-bottom: 10px; color: #aeb3b6; font-family: inherit; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a:not(.brand) { color: #777f85; font-size: .78rem; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 18px; border-top: 1px solid var(--line); }
.footer-bottom p { max-width: 760px; margin: 0; color: #555e64; font-size: .62rem; }
.footer-bottom div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 13px; }
.footer-bottom a { color: #626a70; font-size: .62rem; }

/* Tablet */
@media (max-width: 1080px) {
  .main-nav a { padding-inline: 9px; font-size: .68rem; }
  .main-nav a::after { left: 9px; right: 9px; }
  .brand-copy small { display: none; }
  .feature-main { min-height: 530px; }
  .home-columns { grid-template-columns: minmax(0,1.4fr) minmax(280px,.7fr); gap: 38px; }
  .story-grid, .guide-grid, .guide-grid-wide { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .people-grid-full { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .image-grid { grid-template-columns: repeat(7, 190px); }
  .article-grid { gap: 38px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; grid-template-columns: repeat(5, auto); }
  .pillar-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* Mobile nav breakpoint */
@media (max-width: 900px) {
  :root { --header-h: 66px; }
  .site-status { display: none; }
  .shell, .shell-narrow { width: min(calc(100% - 30px), var(--shell)); }
  .header-row { grid-template-columns: auto auto 1fr; gap: 12px; }
  .menu-toggle { display: block; order: 2; }
  .brand { order: 1; }
  .header-actions { order: 3; justify-self: end; }
  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    height: auto;
    display: grid;
    justify-self: stretch;
    padding: 12px 15px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(9,12,15,.985);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .2s ease;
  }
  .main-nav a { min-height: 46px; padding: 0 10px; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  body.menu-open .main-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .feature-main { min-height: 560px; }
  .feature-small { min-height: 300px; }
  .headline-items { grid-template-columns: 1fr 1fr; }
  .home-columns, .game-focus-grid, .community-panel, .newsletter-block, .overview-grid, .media-proof-grid, .intro-columns, .rivalry-layout, .form-layout, .timeline-layout, .join-grid { grid-template-columns: 1fr; }
  .home-sidebar { grid-template-columns: 1fr 1fr; }
  .home-sidebar .sidebar-promo { grid-column: 1 / -1; }
  .game-focus-media { order: 2; }
  .community-media { min-height: 350px; }
  .newsletter-form { grid-template-columns: 1fr auto; }
  .video-grid { grid-template-columns: 1fr; }
  .people-grid-full { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .rivalry-grid { grid-template-columns: 1fr; }
  .rivalry-grid .neutral { grid-column: auto; }
  .article-grid { grid-template-columns: 1fr; }
  .article-sidebar { grid-template-columns: 1fr 1fr; }
  .sticky-card, .timeline-intro { position: static; }
  .wiki-layout { grid-template-columns: 1fr; }
  .wiki-sidebar .sticky-card { position: static; }
  .wiki-category-buttons { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; display: grid; grid-template-columns: none; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .shell-wide { width: 100%; }
  .section-space { padding-block: 66px; }
  .brand img { width: 40px; height: 40px; }
  .brand-copy strong { font-size: .9rem; }
  .header-actions .button { display: none; }
  .header-actions { gap: 7px; }
  .feature-grid { gap: 9px; }
  .feature-side { grid-template-columns: 1fr; gap: 9px; }
  .feature-main { min-height: 500px; }
  .feature-small { min-height: 310px; }
  .feature-copy { left: 20px; right: 20px; bottom: 24px; }
  .feature-copy h1, .feature-copy h2 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .feature-copy p { display: none; }
  .feature-small .feature-copy h1, .feature-small .feature-copy h2 { font-size: 1.8rem; }
  .headline-strip { grid-template-columns: 1fr; }
  .headline-label { min-height: 36px; justify-content: center; }
  .headline-items { grid-template-columns: 1fr; }
  .headline-items a { border-left: 0; border-top: 1px solid var(--line); }
  .section-head { align-items: start; flex-direction: column; margin-bottom: 28px; }
  .news-row { grid-template-columns: 120px minmax(0,1fr); gap: 14px; padding-block: 18px; }
  .news-row-media { min-height: 120px; }
  .news-row-copy h3 { font-size: 1.25rem; }
  .news-row-copy p, .news-row-copy .text-link { display: none; }
  .news-row-copy .meta-line span:last-child { display: none; }
  .home-sidebar { grid-template-columns: 1fr; }
  .home-sidebar .sidebar-promo { grid-column: auto; }
  .focus-points, .role-grid { grid-template-columns: 1fr; }
  .story-grid, .guide-grid, .guide-grid-wide { grid-template-columns: 1fr; }
  .people-strip { grid-auto-columns: 78vw; }
  .people-grid-full { grid-template-columns: 1fr 1fr; gap: 9px; }
  .people-grid-full .people-copy p { display: none; }
  .people-grid-full .people-copy { padding: 13px; }
  .people-grid-full .people-copy h3 { font-size: 1.35rem; }
  .community-copy { padding: 30px 23px; }
  .community-media { min-height: 270px; }
  .newsletter-block { padding: 27px 21px; }
  .newsletter-form { grid-template-columns: 1fr; }
  .newsletter-form .button { width: 100%; }
  .page-hero { min-height: 490px; }
  .page-hero-overlay { background: linear-gradient(90deg, rgba(7,9,11,.92), rgba(7,9,11,.48)), linear-gradient(180deg, rgba(7,9,11,.1), rgba(7,9,11,.92)); }
  .visual-credit { right: 15px; bottom: 10px; max-width: 75%; text-align: right; }
  .filter-bar { align-items: stretch; flex-direction: column; }
  .inline-search { min-width: 0; width: 100%; }
  .pillar-grid, .spec-grid { grid-template-columns: 1fr; }
  .pillar-grid article { min-height: 190px; }
  .rivalry-grid article { grid-template-columns: 1fr auto 1fr; }
  .article-header { padding-bottom: 28px; }
  .article-header h1 { font-size: clamp(2.8rem, 13vw, 4.6rem); }
  .article-hero { margin-bottom: 40px; }
  .article-hero img { min-height: 280px; object-fit: cover; }
  .article-grid { gap: 36px; }
  .article-sidebar { grid-template-columns: 1fr; }
  .development-note { grid-template-columns: 1fr; }
  .article-gallery { grid-template-columns: 1fr; }
  .article-gallery figcaption { flex-direction: column; }
  .wiki-category-buttons { grid-template-columns: 1fr 1fr; }
  .wiki-entry summary { grid-template-columns: minmax(0,1fr) auto; }
  .wiki-entry summary .source-badge { grid-row: 2; grid-column: 1; justify-self: start; }
  .details-arrow { grid-column: 2; grid-row: 1 / 3; }
  .wiki-entry-body { padding-right: 0; }
  .empty-directory { grid-template-columns: 1fr; padding: 28px 22px; }
  .empty-mark { font-size: 3.8rem; }
  .form-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 25px; }
  .timeline-item { padding-left: 14px; }
  .timeline-marker { left: -25px; }
  .about-grid, .credits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom div { justify-content: flex-start; }
  .search-panel { width: calc(100% - 18px); margin-top: 10px; max-height: calc(100vh - 20px); }
  .search-panel-head { padding: 18px 17px 12px; }
  .search-field { margin-inline: 17px; }
  .search-help { padding-inline: 17px; }
  .search-result { grid-template-columns: 1fr auto; padding-inline: 17px; }
  .search-result-type { grid-column: 1 / -1; min-width: 0; }
}

@media (max-width: 420px) {
  .people-grid-full { grid-template-columns: 1fr; }
  .wiki-category-buttons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}
