:root {
  color-scheme: dark;
  --bg: #080b10;
  --surface: #10151c;
  --surface-2: #151c25;
  --surface-3: #1c2632;
  --text: #f6f8fb;
  --soft: #d8e0ea;
  --muted: #9aa8b8;
  --line: #2b3643;
  --line-strong: #445263;
  --accent: #e6332f;
  --accent-2: #16c784;
  --accent-3: #4aa3ff;
  --gold: #f5c451;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

time[data-local-time="date"] {
  display: inline-block;
  min-inline-size: 13ch;
}

time[data-local-time="datetime"] {
  display: inline-block;
  min-inline-size: 28ch;
}

html {
  background: var(--bg);
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    linear-gradient(
      180deg,
      rgb(8 11 16 / 68%) 0,
      rgb(8 11 16 / 82%) 560px,
      rgb(8 11 16 / 92%) 100%
    ),
    url("/assets/brand/gaming-pattern-v1.webp");
  background-position: center top;
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 520px 520px;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  width: 100%;
  overflow-x: hidden;
}

@media (max-width: 850px) {
  body {
    padding-bottom: 68px;
  }
}

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

img {
  max-width: 100%;
}

.post-card,
.compact-story,
.list-story,
.rail-card {
  contain: content;
}

button,
input {
  font: inherit;
}

code {
  color: var(--accent-2);
}

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

.site-header {
  position: relative;
  z-index: 60;
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid rgb(230 51 47 / 45%);
  background: rgb(5 7 10 / 96%);
  box-shadow: 0 10px 28px rgb(0 0 0 / 28%);
}

.bottom-leaderboard-ad {
  display: none;
  overflow: hidden;
  contain: layout paint;
}

@media (min-width: 1021px) {
  body {
    padding-bottom: 124px;
  }

  .bottom-leaderboard-ad {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    justify-items: center;
    align-content: center;
    width: 100%;
    height: 104px;
    border-top: 2px solid var(--accent);
    background:
      linear-gradient(90deg, #05070b 0, #0c1018 20%, #050609 50%, #0c1018 80%, #05070b 100%);
    box-shadow: 0 -12px 34px rgb(0 0 0 / 45%);
  }

  .bottom-leaderboard-ad .bottom-ad-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 728px;
    height: 14px;
    border: 1px solid #171d27;
    border-bottom: 0;
    background: #080b10;
    color: #8f9aaa;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .bottom-leaderboard-ad .bottom-ad-holder {
    width: 728px;
    min-width: 728px;
    height: 90px;
    min-height: 90px;
    max-height: 90px;
    overflow: hidden;
    background: #000;
  }

  .bottom-leaderboard-ad iframe {
    max-width: none !important;
  }
}

.header-main {
  display: grid;
  grid-template-columns: auto minmax(220px, 420px) auto;
  align-items: center;
  gap: clamp(10px, 1.5vw, 22px);
  min-height: 58px;
  padding: 3px clamp(12px, 2vw, 20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 352px;
}

.brand-only {
  min-width: 112px;
}

.brand-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 36px;
  overflow: hidden;
  background: transparent;
  border: 0;
}

.brand-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-search {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgb(255 255 255 / 9%);
  background: #121519;
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 45%);
}

.header-search svg,
.header-action svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.header-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 14px;
}

.header-search input::placeholder {
  color: #c0c7d1;
}

.header-search button {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  padding: 0;
}

.header-action {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--muted);
}

.header-action span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.header-action:hover {
  color: var(--accent);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 38px;
  padding: 0 clamp(12px, 2vw, 20px);
  border-top: 1px solid rgb(255 255 255 / 6%);
  background: #090c12;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
}

.top-nav::-webkit-scrollbar {
  display: none;
}

.top-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-right: 1px solid rgb(255 255 255 / 6%);
  color: #c8d0dc;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.top-nav a:hover,
.top-nav a.active {
  color: var(--text);
  background: #141922;
}

@media (min-width: 1021px) {
  .top-nav {
    justify-content: center;
  }
}

.ticker {
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 0;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  color: var(--muted);
  font-size: 13px;
  scrollbar-width: none;
}

.ticker::-webkit-scrollbar {
  display: none;
}

.ticker strong,
.ticker a {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid var(--line);
  background: rgb(16 21 28 / 80%);
}

.ticker strong {
  color: var(--accent-2);
  text-transform: uppercase;
}

.ticker a:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.front-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.85fr);
  min-height: 540px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.lead-story {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 540px;
  padding: clamp(24px, 5vw, 48px);
  overflow: hidden;
}

.lead-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 5%) 0%, rgb(0 0 0 / 72%) 58%, rgb(0 0 0 / 95%) 100%);
}

.lead-story img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
}

.lead-story > *:not(img) {
  position: relative;
  z-index: 1;
}

.kicker,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px;
  color: #fff;
  background: var(--accent);
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-story h1 {
  max-width: 790px;
  margin: 0;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: 0;
}

.lead-story p {
  max-width: 690px;
  color: var(--soft);
  font-size: 18px;
}

.story-stats {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.top-stack {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}

.stack-title {
  padding: 15px 16px;
  color: var(--muted);
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.compact-story {
  display: grid;
  gap: 8px;
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
}

.compact-story span,
.meta {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.compact-story strong {
  font-size: 18px;
  line-height: 1.2;
}

.compact-story em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.compact-story:hover {
  background: var(--surface-2);
}

.empty-front {
  grid-template-columns: 1fr;
  align-items: end;
  padding: 48px;
}

.newsroom-grid,
.category-frame {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
}

.newsroom-grid {
  padding: 36px 0;
}

.category-layout {
  padding-bottom: 64px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-header h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1;
}

.section-header a,
.pagination a {
  color: var(--accent-2);
  font-weight: 850;
}

.story-list {
  display: grid;
  gap: 14px;
}

.list-story {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  min-height: 124px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgb(16 21 28 / 82%);
}

.list-image {
  display: block;
  min-height: 108px;
  background: var(--surface-2);
  overflow: hidden;
}

.list-image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.list-story h3 {
  margin: 4px 0 7px;
  font-size: 21px;
  line-height: 1.18;
}

.list-story p:not(.meta) {
  margin: 0;
  color: var(--muted);
}

.rail {
  display: grid;
  align-content: start;
  gap: 16px;
}

.rail h2 {
  margin: 0;
}

.section-rail,
.rail-card,
.key-facts,
.quick-summary,
.article-toc,
.read-next-box,
.author-trust,
.quality-note,
.faq-block,
.related-block {
  border: 1px solid var(--line);
  background: var(--surface);
}

.section-rail a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.section-rail a:last-child {
  border-bottom: 0;
}

.section-rail span {
  color: var(--soft);
  font-weight: 850;
}

.section-rail a:hover,
.section-rail a.active {
  background: var(--surface-2);
  border-color: var(--line-strong);
}

.rail-headlines {
  display: grid;
  gap: 0;
}

.rail-headlines h3 {
  padding: 14px 14px 10px;
}

.rail-headline {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
}

.rail-headline span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.rail-headline strong {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.25;
}

.rail-headline:hover strong {
  color: var(--text);
}

.rail-card {
  padding: 16px;
}

.rail-card h3 {
  margin: 0 0 8px;
}

.rail-card.rail-headlines {
  padding: 0;
}

.rail-card p {
  margin: 0;
  color: var(--muted);
}

.editor-picks {
  border-color: rgb(230 51 47 / 50%);
}

.topic-rail {
  padding: 0;
}

.topic-rail h3 {
  padding: 14px 14px 10px;
}

.topic-rail div {
  display: grid;
  gap: 0;
}

.topic-rail a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 11px 14px;
  border-top: 1px solid var(--line);
  line-height: 1.25;
}

.topic-rail a:hover {
  background: var(--surface-2);
}

.topic-rail em {
  flex: 0 0 auto;
  min-width: 64px;
  padding: 3px 6px;
  border: 1px solid rgb(22 199 132 / 25%);
  background: rgb(22 199 132 / 8%);
  color: var(--accent-2);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.launch-card {
  border-color: rgb(22 199 132 / 48%);
}

.topic-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgb(16 21 28 / 72%);
}

.topic-strip strong {
  margin-right: 4px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.topic-strip a,
.hub-quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: var(--soft);
  background: var(--surface);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.topic-strip a:hover,
.hub-quick-links a:hover {
  border-color: var(--accent);
  color: var(--text);
}

.section-band {
  padding: 24px 0 38px;
  border-top: 1px solid var(--line);
  background: rgb(255 255 255 / 2%);
}

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

.post-card {
  position: relative;
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.post-card:hover,
.list-story:hover {
  border-color: var(--line-strong);
  background: var(--surface-2);
}

.post-card img,
.image-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--surface-2);
}

.image-fallback {
  color: var(--accent);
  font-size: 46px;
  font-weight: 950;
}

.post-card .copy {
  padding: 14px;
}

.post-card h3 {
  margin: 6px 0 8px;
  font-size: 18px;
  line-height: 1.2;
}

.post-card p:not(.meta) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.page-layout {
  padding: 38px 0 68px;
}

.page-heading {
  max-width: 860px;
  padding: 18px 0 28px;
}

.page-heading h1 {
  margin: 0;
  font-size: 62px;
  line-height: 0.98;
}

.page-heading p {
  color: var(--soft);
  font-size: 18px;
}

.hub-page {
  padding-top: 18px;
}

.hub-heading {
  max-width: 980px;
}

.hub-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.section-mini {
  margin-top: 34px;
}

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

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

.ranked-card .rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--accent);
  font-weight: 950;
  box-shadow: 0 10px 24px rgb(0 0 0 / 35%);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.filter-bar a {
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.filter-bar a.active,
.filter-bar a:hover {
  color: var(--text);
  border-color: var(--accent-2);
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 700px;
  margin-top: 18px;
}

.search-form input,
.search-form button {
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.search-form input {
  padding: 0 14px;
}

.search-form button {
  padding: 0 18px;
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 900;
}

.pagination {
  display: flex;
  gap: 20px;
  padding: 28px 0 0;
}

.article-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 80px;
}

.article-shell.article-layout {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 920px) 190px;
  gap: 36px;
  align-items: start;
}

.article-shell.article-layout.article-layout-single {
  width: min(980px, calc(100% - 32px));
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}

.article-main {
  min-width: 0;
}

.article {
  max-width: 920px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 20px;
}

.breadcrumbs a:hover {
  color: var(--text);
}

.article h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1;
}

.dek {
  color: var(--soft);
  font-size: 20px;
}

.article-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.article-meta-grid span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
  font-size: 13px;
}

.article-meta-grid strong,
.article-meta-grid a {
  color: var(--text);
}

.article-kickers {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.article-kickers .eyebrow {
  margin: 0;
}

.format-badge {
  padding: 5px 8px;
  border: 1px solid var(--line-strong);
  color: var(--soft);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.article-verification {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 22px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.article-verification span:first-child {
  color: var(--accent-2);
}

.article-notice {
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 3px solid var(--accent-3);
  background: rgb(74 163 255 / 8%);
}

.article-notice.correction-note {
  border-left-color: var(--gold);
  background: rgb(245 196 81 / 8%);
}

.article-notice strong,
.article-notice p {
  display: block;
  margin: 0;
}

.article-notice p {
  margin-top: 4px;
  color: var(--soft);
}

.article-figure {
  margin: 26px 0;
}

.article-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--surface-2);
}

.article-figure figcaption {
  padding: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.quality-note,
.key-facts {
  padding: 16px 18px;
  margin: 22px 0;
}

.quick-summary {
  padding: 18px;
  margin: 22px 0;
  border-color: rgb(22 199 132 / 45%);
}

.quick-summary h2,
.article-toc strong,
.read-next-box h2,
.author-trust strong {
  display: block;
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
}

.quick-summary p {
  margin: 0 0 12px;
  color: var(--soft);
  font-size: 16px;
}

.quick-summary div,
.article-toc,
.read-next-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-summary a {
  padding: 6px 8px;
  border: 1px solid rgb(255 255 255 / 10%);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-summary a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.quality-note {
  border-color: rgb(245 196 81 / 45%);
  color: var(--soft);
}

.key-facts {
  border-color: rgb(74 163 255 / 45%);
}

.key-facts h2,
.faq-block h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.key-facts ul {
  margin: 0;
  padding-left: 20px;
  color: var(--soft);
}

.key-facts li + li {
  margin-top: 7px;
}

.article-toc {
  padding: 16px 18px;
  margin: 22px 0;
  display: grid;
  gap: 8px;
}

.article-toc a,
.read-next-box a,
.author-trust a {
  color: var(--accent-2);
  font-weight: 850;
}

.article-body {
  color: #e8edf5;
  font-size: 18px;
  line-height: 1.72;
}

.article-body :is(script, style, iframe[src*="invoke.js"]) {
  display: none !important;
}

.article-body h2,
.article-body h3 {
  color: var(--text);
  line-height: 1.2;
  margin-top: 1.7em;
}

.article-body p {
  margin: 0 0 1.15em;
}

.article-body a {
  color: var(--accent-2);
  text-decoration: underline;
}

.article-body img {
  max-width: 100%;
  height: auto;
}

.faq-block {
  padding: 18px;
  margin: 28px 0;
}

.faq-block details {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}

.faq-block summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-block p {
  color: var(--muted);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 24px 0;
}

.article-tags a {
  padding: 6px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-tags a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.read-next-box,
.author-trust {
  padding: 18px;
  margin: 28px 0;
}

.read-next-box {
  display: grid;
}

.read-next-box a {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.author-trust {
  color: var(--soft);
}

.author-role,
.author-title {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-3);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.author-trust p {
  margin: 0 0 10px;
  color: var(--muted);
}

.author-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 12px;
}

.author-specialties span {
  padding: 5px 7px;
  border: 1px solid var(--line);
  color: var(--soft);
  font-size: 11px;
}

.mobile-dock {
  display: none;
}

.search-suggestions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.search-suggestions strong {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.search-suggestions a {
  padding: 6px 9px;
  border: 1px solid var(--line);
  color: var(--soft);
  font-size: 12px;
}

.search-suggestions a:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.hub-stream {
  min-width: 0;
}

.hub-stream .section-mini {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hub-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hub-stats span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.hub-stats strong {
  color: var(--text);
  font-size: 15px;
}

.related-block {
  margin-top: 42px;
  padding: 18px;
}

.article-ad-rail {
  position: sticky;
  top: 144px;
  min-height: 640px;
}

.static-page {
  padding: 38px 0 80px;
}

.static-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.static-content {
  border: 1px solid var(--line);
  background: rgb(16 21 28 / 84%);
  padding: clamp(22px, 4vw, 44px);
}

.static-content h1 {
  margin: 0 0 18px;
  font-size: 56px;
  line-height: 1;
}

.static-content h2 {
  margin: 34px 0 10px;
  font-size: 25px;
  line-height: 1.18;
}

.static-content h3 {
  margin: 0 0 8px;
}

.static-content p,
.static-content li {
  color: var(--soft);
  font-size: 17px;
}

.static-content a {
  color: var(--accent-2);
  text-decoration: underline;
}

.page-kicker {
  color: var(--accent-2);
  font-size: 12px !important;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-row,
.policy-grid {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

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

.stat-row span,
.policy-grid article,
.contact-card {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 16px;
}

.stat-row strong {
  display: block;
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
}

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

.contact-card {
  display: grid;
  gap: 4px;
  max-width: 520px;
  margin: 22px 0;
}

.contact-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card a {
  font-size: 22px;
  font-weight: 900;
}

.static-rail {
  position: sticky;
  top: 144px;
}

.page-link-rail a.active {
  color: var(--text);
  background: var(--surface-2);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #06080c;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(145px, 0.8fr));
  gap: 24px;
  padding: 34px 0;
}

.footer-grid strong {
  color: var(--text);
  display: block;
  margin-bottom: 10px;
}

.footer-grid p {
  margin: 6px 0 0;
}

.footer-brand img {
  width: 176px;
  height: 52px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #05070a;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid a:hover {
  color: var(--text);
}

@media (max-width: 1020px) {
  .article h1,
  .lead-story h1,
  .page-heading h1,
  .static-content h1 {
    font-size: 52px;
  }

  .front-hero,
  .newsroom-grid,
  .category-frame,
  .article-shell.article-layout,
  .static-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-main {
    grid-template-columns: auto minmax(170px, 1fr) auto;
    gap: 10px;
    min-height: 52px;
  }

  .top-stack {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

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

  .article-ad-rail,
  .static-rail {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    background-color: #05080d;
    background-image:
      linear-gradient(
        180deg,
        rgb(5 8 13 / 82%) 0,
        rgb(5 8 13 / 91%) 520px,
        rgb(5 8 13 / 96%) 100%
      ),
      url("/assets/brand/gaming-pattern-v1.webp");
    background-position: center top;
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%, 420px 420px;
  }

  .shell,
  .ticker,
  .front-hero,
  .article-shell {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .article-shell.article-layout {
    width: 100%;
    max-width: 100%;
  }

  .brand {
    min-width: 0;
  }

  .brand-only {
    min-width: 88px;
  }

  .brand-logo {
    width: 88px;
    height: 28px;
  }

  .header-main {
    grid-template-columns: 88px minmax(0, 1fr) 28px;
    gap: 8px;
    min-height: 46px;
    padding: 4px 8px;
  }

  .header-search {
    min-height: 34px;
    padding: 0 10px;
  }

  .header-search input {
    font-size: 13px;
  }

  .header-search svg,
  .header-action svg {
    width: 18px;
    height: 18px;
  }

  .header-action {
    width: 28px;
    height: 34px;
  }

  .top-nav {
    min-height: 32px;
    padding: 0;
    scroll-snap-type: x proximity;
  }

  .top-nav a {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 0 12px;
    font-size: 11px;
    scroll-snap-align: start;
  }

  .ticker {
    gap: 8px;
    margin-top: 12px;
    padding: 0 12px;
  }

  .front-hero,
  .lead-story {
    min-height: 0;
  }

  .front-hero {
    margin-top: 12px;
    border-right: 0;
    border-left: 0;
    background: #090d13;
  }

  .lead-story {
    min-height: min(620px, calc(100svh - 154px));
    padding: 20px 16px 22px;
  }

  .lead-story h1 {
    font-size: clamp(32px, 10.6vw, 46px);
    line-height: 1.02;
  }

  .lead-story p {
    font-size: 17px;
  }

  .top-stack {
    background: #111821;
  }

  .newsroom-grid,
  .category-frame,
  .page-layout,
  .category-layout,
  .static-page,
  .article-shell {
    padding-right: 12px;
    padding-left: 12px;
  }

  .newsroom-grid {
    gap: 20px;
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .section-band {
    padding: 22px 0 30px;
  }

  .section-band .shell {
    padding-right: 12px;
    padding-left: 12px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .list-story {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .list-image {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

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

  .ranked-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .article-shell {
    padding-top: 18px;
    padding-bottom: 86px;
  }

  .article h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  .lead-story h1 {
    font-size: 40px;
  }

  .page-heading h1,
  .static-content h1 {
    font-size: 36px;
  }

  .dek {
    font-size: 19px;
  }

  .article-meta-grid {
    display: grid;
    gap: 8px;
  }

  .article-meta-grid span {
    width: 100%;
    padding: 10px 12px;
  }

  .article-figure {
    width: calc(100% + 24px);
    margin: 22px -12px;
  }

  .article-image {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .article-figure figcaption {
    padding-right: 12px;
    padding-left: 12px;
  }

  .quick-summary,
  .key-facts,
  .article-toc,
  .faq-block,
  .read-next-box,
  .author-trust,
  .related-block {
    margin: 18px 0;
  }

  .mobile-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 65;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 58px;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--line-strong);
    background: rgb(5 8 13 / 97%);
    box-shadow: 0 -8px 24px rgb(0 0 0 / 35%);
  }

  .mobile-dock a {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 1px;
    min-width: 0;
    color: var(--muted);
  }

  .mobile-dock a:hover,
  .mobile-dock a:focus-visible {
    color: var(--text);
    background: var(--surface);
  }

  .mobile-dock span {
    font-size: 18px;
    line-height: 1;
  }

  .mobile-dock strong {
    font-size: 10px;
    font-weight: 800;
  }

  .article-body {
    font-size: 17px;
    line-height: 1.68;
  }

  .footer-grid {
    display: grid;
    gap: 22px;
    padding: 28px 12px 86px;
  }

  .stat-row,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .topic-rail a {
    align-items: flex-start;
  }

  .topic-rail a span {
    min-width: 0;
  }

  .topic-rail em {
    min-width: 76px;
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .brand-only {
    min-width: 76px;
  }

  .brand-logo {
    width: 76px;
    height: 24px;
  }

  .header-main {
    grid-template-columns: 76px minmax(0, 1fr) 26px;
  }

  #floatingAd {
    width: 100%;
  }

  #floatingAd .ad-content-holder {
    margin: 0 auto;
  }
}

/* Release calendar, free-game tracker, game hubs, and patch tracking. */
.utility-page {
  padding-top: 28px;
  padding-bottom: 64px;
}

.utility-heading {
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 12%, rgb(230 51 47 / 24%), transparent 34%),
    linear-gradient(145deg, var(--surface-2), var(--surface));
}

.utility-heading h1,
.game-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.utility-heading > p,
.game-hero > div > p {
  max-width: 760px;
  color: var(--soft);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.utility-filters,
.utility-platforms,
.utility-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.utility-filters {
  margin-top: 24px;
}

.utility-filters a,
.utility-platforms span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgb(8 11 16 / 72%);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.utility-filters a:hover,
.utility-filters a.active {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.utility-month {
  margin-top: 42px;
}

.utility-month .section-header > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.utility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.utility-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
}

.utility-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.utility-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #070a0f;
}

.utility-image img,
.utility-image .image-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.utility-status {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  color: #07110d;
  background: var(--accent-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.free-card.upcoming .utility-status {
  color: #111;
  background: var(--gold);
}

.utility-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.utility-card-body h3,
.utility-card-body p {
  margin: 0;
}

.utility-card-body h3 {
  font-size: 21px;
  line-height: 1.16;
}

.utility-card-body p,
.utility-date {
  color: var(--muted);
  font-size: 13px;
}

.utility-date {
  color: var(--accent-2);
  font-weight: 900;
  text-transform: uppercase;
}

.utility-actions {
  margin-top: 4px;
}

.utility-actions a,
.hub-back-link,
.source-link {
  display: inline-flex;
  width: max-content;
  padding: 8px 11px;
  border: 1px solid var(--line-strong);
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.utility-actions a:hover,
.utility-actions .claim-link,
.hub-back-link:hover,
.source-link:hover {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.game-hero {
  position: relative;
  display: grid;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.game-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(4 6 10 / 96%) 0%, rgb(4 6 10 / 76%) 54%, rgb(4 6 10 / 28%) 100%);
}

.game-hero > div {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 830px;
  padding: clamp(28px, 6vw, 64px);
}

.game-hub > .hub-stats {
  margin-top: 18px;
}

.patch-list {
  display: grid;
  border: 1px solid var(--line);
  background: var(--surface);
}

.patch-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.patch-list a:last-child {
  border-bottom: 0;
}

.patch-list a:hover {
  background: var(--surface-2);
}

.patch-list span {
  color: var(--muted);
  font-size: 12px;
}

.intelligence-timeline,
.known-issues-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.intelligence-event,
.known-issue {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgb(18 25 34 / 96%), rgb(8 12 18 / 98%));
}

.intelligence-event.verified { border-left: 3px solid var(--accent-2); }
.intelligence-event.tracked { border-left: 3px solid var(--gold); }

.intelligence-event-head,
.intelligence-event footer,
.known-issue > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.intelligence-type,
.intelligence-verification,
.issue-status,
.issue-severity {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.intelligence-type,
.issue-status { color: #fff; }
.intelligence-verification { color: var(--accent-2); }
.intelligence-event.tracked .intelligence-verification,
.intelligence-source { color: var(--gold); }

.intelligence-event h3,
.intelligence-event p,
.known-issue h3,
.known-issue p { margin: 0; }

.intelligence-event h3,
.known-issue h3 {
  font-size: 20px;
  line-height: 1.18;
}

.intelligence-event p,
.known-issue p,
.intelligence-event time,
.intelligence-source {
  color: var(--muted);
  font-size: 13px;
}

.intelligence-event footer {
  align-self: end;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}

.known-issue.active { border-left: 3px solid var(--accent); }
.known-issue.resolved { border-left: 3px solid var(--accent-2); }
.known-issue.active .issue-status { color: var(--accent); }
.known-issue.resolved .issue-status { color: var(--accent-2); }
.issue-severity { color: var(--gold); }

.patch-timeline {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.patch-entry {
  padding: clamp(20px, 4vw, 36px);
  border: 1px solid var(--line);
  background: var(--surface);
  scroll-margin-top: 24px;
}

.patch-entry header > span,
.patch-entry summary {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.patch-entry h2 {
  margin: 8px 0 16px;
  font-size: clamp(1.5rem, 4vw, 2.7rem);
  line-height: 1.05;
}

.patch-entry details {
  margin: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.patch-entry summary {
  cursor: pointer;
  padding: 15px 0;
}

.patch-body {
  max-height: 720px;
  overflow: auto;
  padding: 4px 0 22px;
  color: var(--soft);
}

.patch-diff {
  padding: 10px 12px;
  border-left: 3px solid var(--gold);
  color: var(--gold);
  background: rgb(245 196 81 / 8%);
}

@media (max-width: 900px) {
  .utility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intelligence-timeline,
  .known-issues-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .utility-page {
    padding-top: 12px;
  }

  .utility-heading {
    padding: 24px 18px;
  }

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

  .utility-month {
    margin-top: 30px;
  }

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

  .game-hero::after {
    background: linear-gradient(180deg, rgb(4 6 10 / 18%) 0%, rgb(4 6 10 / 94%) 58%, #04060a 100%);
  }

  .game-hero > div {
    padding: 24px 18px;
  }

  .patch-list a {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .intelligence-event footer,
  .intelligence-event-head,
  .known-issue > div {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Rolling daily gaming-news hubs */
.daily-updates-home {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgb(230 51 47 / 38%);
  background:
    radial-gradient(circle at 100% 0, rgb(230 51 47 / 13%), transparent 36%),
    linear-gradient(145deg, #111720, #090d13 70%);
  box-shadow: 0 22px 55px rgb(0 0 0 / 24%);
}

.daily-updates-heading,
.daily-hub-stats,
.daily-hub-footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.daily-updates-heading h2 {
  display: inline;
  margin: 0 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
}

.daily-updates-heading p,
.daily-hub-hero > p {
  margin: 8px 0 0;
  color: var(--muted);
}

.daily-updates-heading > a,
.daily-hub-footer-nav a,
.daily-update-story-link {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.daily-updates-heading > a,
.daily-hub-footer-nav a {
  padding: 10px 13px;
  border: 1px solid rgb(255 255 255 / 14%);
  background: rgb(255 255 255 / 4%);
}

.live-dot,
.archive-dot {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.live-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border-radius: 50%;
  background: #ef3e43;
  box-shadow: 0 0 0 5px rgb(239 62 67 / 14%), 0 0 18px rgb(239 62 67 / 70%);
}

.archive-dot {
  padding: 5px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.daily-updates-home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  background: var(--line);
}

.daily-update-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.daily-update-item.compact {
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 15px;
  padding: 16px;
  border: 0;
  background: #0c1118;
}

.daily-update-item.no-image,
.daily-update-item.compact.no-image {
  grid-template-columns: minmax(0, 1fr);
}

.daily-update-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.daily-update-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.daily-update-meta span {
  color: #ff565b;
}

.daily-update-meta .daily-update-status {
  padding: 2px 7px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 999px;
  color: #d5dbe5;
  letter-spacing: .05em;
}

.daily-update-meta .daily-update-status.confirmed {
  border-color: rgb(68 201 130 / 32%);
  background: rgb(68 201 130 / 8%);
  color: #78e0a9;
}

.daily-update-meta .daily-update-status.developing {
  border-color: rgb(255 180 63 / 32%);
  background: rgb(255 180 63 / 8%);
  color: #ffc66e;
}

.daily-update-copy h3 {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.daily-update-item.compact .daily-update-copy h3 {
  font-size: 1rem;
}

.daily-update-copy > p:not(.daily-update-meta) {
  margin: 9px 0;
  color: var(--soft);
  line-height: 1.55;
}

.daily-update-item.compact .daily-update-copy > p:not(.daily-update-meta) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 13px;
}

.daily-update-story-link {
  color: #ff6569;
}

.daily-hub-page {
  padding-top: 28px;
  padding-bottom: 64px;
}

.daily-hub-hero {
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid rgb(230 51 47 / 35%);
  background:
    linear-gradient(90deg, rgb(3 6 10 / 94%), rgb(3 6 10 / 66%)),
    radial-gradient(circle at 88% 15%, rgb(230 51 47 / 26%), transparent 34%),
    #0d131c;
}

.daily-hub-hero h1 {
  max-width: 850px;
  margin: 14px 0 0;
  font-size: clamp(2.5rem, 7vw, 6.8rem);
  line-height: .9;
  letter-spacing: -.045em;
}

.daily-hub-date {
  color: #ff565b !important;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 900;
}

.daily-hub-notice {
  max-width: 900px;
  padding: 13px 16px;
  border-left: 3px solid #ef3e43;
  background: rgb(255 255 255 / 4%);
  color: #d7dce5 !important;
  font-size: 14px;
  line-height: 1.55;
}

.daily-hub-stats {
  justify-content: flex-start;
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.daily-hub-stats strong {
  color: #fff;
  font-size: 1.25rem;
}

.daily-update-timeline {
  position: relative;
  max-width: 960px;
  margin: 18px auto 0;
  padding-left: 28px;
}

.daily-update-day {
  max-width: 1060px;
  margin: 34px auto 0;
}

.daily-update-day-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3px 20px;
  padding: 0 0 14px 28px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.daily-update-day-heading span {
  grid-column: 1 / -1;
  color: #ff565b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.daily-update-day-heading h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
}

.daily-update-day-heading strong {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.daily-hub-empty {
  max-width: 960px;
  margin: 28px auto 0;
}

.daily-update-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 1px;
  background: linear-gradient(#ef3e43, var(--line) 28%, var(--line));
}

.daily-update-timeline .daily-update-item::before {
  content: "";
  position: absolute;
  top: 31px;
  left: -28px;
  width: 11px;
  height: 11px;
  border: 3px solid #080b10;
  border-radius: 50%;
  background: #ef3e43;
  box-shadow: 0 0 0 1px #ef3e43;
}

.daily-hub-footer-nav {
  justify-content: flex-start;
  max-width: 960px;
  margin: 28px auto 0;
}

.daily-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.daily-archive-grid > a {
  display: grid;
  gap: 7px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.daily-archive-grid span,
.daily-archive-grid em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  text-transform: uppercase;
}

.daily-archive-grid strong {
  font-size: 1.35rem;
}

@media (max-width: 760px) {
  .daily-updates-home {
    width: 100%;
    padding: 18px 12px;
  }

  .daily-updates-heading,
  .daily-hub-stats,
  .daily-hub-footer-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .daily-updates-home-grid,
  .daily-archive-grid {
    grid-template-columns: 1fr;
  }

  .daily-update-item,
  .daily-update-item.compact {
    grid-template-columns: 1fr;
  }

  .daily-update-item.compact {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .daily-update-item:not(.compact) {
    gap: 14px;
  }

  .daily-hub-hero {
    padding: 34px 18px;
  }

  .daily-update-day-heading {
    grid-template-columns: 1fr;
    align-items: start;
    padding-left: 0;
  }

  .daily-update-day-heading span {
    grid-column: auto;
  }

  .daily-update-timeline {
    padding-left: 19px;
  }

  .daily-update-timeline .daily-update-item::before {
    left: -19px;
  }
}

/* Verified Live Ledger: a separate, evidence-first surface for current game state. */
.ledger-directory {
  padding-top: 28px;
  padding-bottom: 64px;
}

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

.ledger-directory-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  transition: border-color .18s ease, transform .18s ease;
}

.ledger-directory-card:hover,
.ledger-directory-card:focus-within {
  border-color: var(--accent-2);
  transform: translateY(-2px);
}

.ledger-directory-card > a {
  display: block;
  height: 100%;
}

.ledger-directory-card img,
.ledger-directory-card .image-fallback {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  place-items: center;
  object-fit: cover;
  background: var(--surface-3);
}

.ledger-directory-card > a > div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.ledger-directory-card h2,
.ledger-directory-card p {
  margin: 0;
}

.ledger-directory-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.1;
}

.ledger-directory-card p {
  color: var(--soft);
  font-size: 14px;
}

.ledger-live-badge {
  width: fit-content;
  padding: 4px 7px;
  border: 1px solid rgb(22 199 132 / 42%);
  background: rgb(22 199 132 / 10%);
  color: #65eab5;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ledger-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.live-ledger {
  display: grid;
  gap: 24px;
  margin-top: 28px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgb(22 199 132 / 38%);
  background:
    radial-gradient(circle at 95% 0, rgb(22 199 132 / 12%), transparent 34%),
    var(--surface);
}

.ledger-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.ledger-header h2,
.ledger-header p {
  margin: 0;
}

.ledger-header h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.ledger-header p {
  max-width: 720px;
  color: var(--soft);
}

.ledger-verification {
  display: grid;
  min-width: 210px;
  padding: 16px;
  border-left: 3px solid var(--accent-2);
  background: rgb(0 0 0 / 20%);
}

.ledger-verification strong {
  color: #65eab5;
  font-size: 2rem;
  line-height: 1;
}

.ledger-verification span,
.ledger-verification small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.ledger-verification small {
  margin-top: 8px;
  text-transform: none;
}

.ledger-jump,
.ledger-footer,
.ledger-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ledger-jump a,
.ledger-hero-actions a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
}

.ledger-jump a:hover,
.ledger-jump a:focus-visible,
.ledger-hero-actions a:hover,
.ledger-hero-actions a:focus-visible {
  border-color: var(--accent-2);
  color: #fff;
}

.ledger-module {
  scroll-margin-top: 24px;
}

.ledger-state-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ledger-state {
  display: flex;
  min-width: 0;
  min-height: 220px;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent-3);
  background: rgb(6 10 15 / 72%);
}

.ledger-state.ledger-status,
.ledger-state.ledger-fixed {
  border-top-color: var(--accent-2);
}

.ledger-state.ledger-issue {
  border-top-color: var(--accent);
}

.ledger-state.ledger-reward,
.ledger-state.ledger-release {
  border-top-color: var(--gold);
}

.ledger-state-head,
.ledger-state footer,
.ledger-times {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 14px;
}

.ledger-status-label,
.ledger-confidence {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ledger-status-label {
  color: #65eab5;
}

.ledger-confidence,
.ledger-times,
.ledger-state footer {
  color: var(--muted);
}

.ledger-state h3,
.ledger-state p {
  margin: 0;
}

.ledger-state h3 {
  font-size: 1.2rem;
  line-height: 1.2;
}

.ledger-state p {
  color: var(--soft);
  font-size: 15px;
}

.ledger-times {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.ledger-state footer {
  margin-top: auto;
  font-size: 11px;
}

.ledger-state footer a,
.ledger-footer a {
  color: #65eab5;
  font-weight: 850;
}

.ledger-history {
  scroll-margin-top: 24px;
}

.ledger-history ol {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.ledger-history li {
  display: grid;
  grid-template-columns: minmax(170px, auto) 90px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-size: 13px;
}

.ledger-history li time,
.ledger-history li span {
  color: var(--muted);
}

.ledger-history li span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ledger-footer {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

@media (max-width: 900px) {
  .ledger-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .ledger-directory-grid,
  .ledger-state-grid,
  .ledger-header {
    grid-template-columns: 1fr;
  }

  .ledger-verification {
    min-width: 0;
  }

  .ledger-history li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .ledger-state {
    min-height: 0;
  }
}

/* Growth foundation: useful answers and compact navigation. */
.top-nav { justify-content: center; }
.measurement-controls { padding: 20px 0; font-size: 13px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.measurement-controls p { flex: 1 1 300px; margin: 0; }
.measurement-controls button, .ledger-hero-actions button { font: inherit; cursor: pointer; padding: 10px 14px; color: #f5f5f5; background: #292929; border: 1px solid #737373; border-radius: 6px; }
.ledger-hero-actions button[aria-pressed="true"] { border-color: #f7a21b; }
.followed-games { margin: 24px 0; padding: 20px; border: 1px solid #484848; border-radius: 10px; }
[data-followed-games] { display: flex; flex-wrap: wrap; gap: 16px; }
.official-sources { padding: 20px; margin: 24px 0; border: 1px solid #484848; border-radius: 8px; }
.article-meta-grid { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.article-meta-grid span { border: 0; background: none; padding: 0; }
@media (max-width: 760px) {
 .top-nav { justify-content: flex-start; gap: 0; } .top-nav a { padding: 12px 10px; font-size: 13px; }
 .front-hero { min-height: 330px; } .front-hero h1, .front-hero h2 { font-size: clamp(25px, 7vw, 34px); }
 .game-hero { min-height: 320px; } .article-figure { margin-top: 20px; }
 .article-meta-grid { font-size: 12px; } .article-meta-grid span { min-height: 0; }
 .measurement-controls { padding: 20px 16px; }
}

@media (max-width: 760px) { .top-nav { display: flex; width: 100%; overflow: visible; } .top-nav a { flex: 1 1 0; min-width: 0; padding: 12px 4px; font-size: 11px; letter-spacing: 0; text-align: center; justify-content: center; } }

@media (max-width: 760px) { .lead-story { min-height: 400px; } .article-meta-grid span { width: auto; } }
@media (min-width: 1021px) { body { padding-bottom: 0; } }

/* Four-game content pilot. Answers remain readable without client scripting. */
.player-guide { margin: 32px 0; scroll-margin-top: 90px; }
.player-answer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.player-answer { min-width: 0; padding: 24px; border: 1px solid #555; border-radius: 10px; background: #191919; scroll-margin-top: 90px; }
.player-answer h3 { margin: 0 0 12px; font-size: 22px; line-height: 1.35; }
.player-answer p { line-height: 1.7; margin: 12px 0; }
.player-answer .answer-scope, .answer-scope { color: #c9c9c9; font-size: 14px; line-height: 1.6; }
.answer-action { border-left: 3px solid #f7a21b; padding-left: 14px; }
.answer-links { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 18px; }
.answer-links a { color: #ffc466; text-decoration: underline; text-underline-offset: 3px; padding: 8px 0; overflow-wrap: anywhere; }
.player-answer footer { font-size: 12px; color: #bbb; margin-top: 16px; line-height: 1.6; }
.player-guide a:focus-visible { outline: 2px solid #ffc466; outline-offset: 4px; }
@media (max-width: 760px) {
 .player-answer-grid { grid-template-columns: 1fr; }
 .player-answer { padding: 20px; }
 .player-guide .section-header { align-items: flex-start; flex-direction: column; gap: 8px; }
 .player-guide .ledger-jump { flex-direction: column; align-items: stretch; }
}
