:root {
  --bg: #0b0d12;
  --bg-soft: #11141b;
  --card: #151922;
  --card-2: #1a1f2a;
  --text: #f4f6fb;
  --muted: #9aa4b5;
  --line: rgba(255, 255, 255, 0.11);
  --brand: #82e600;
  --brand-2: #00aef0;
  --warm: #ff5b39;
  --ogn-orange: #ff5b39;
  --ogn-green: #82e600;
  --ogn-blue: #00aef0;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --shell: min(1180px, calc(100vw - 40px));
}
:root[data-theme="light"] {
  --bg: #f7fbff;
  --bg-soft: #eefbff;
  --card: rgba(255, 255, 255, 0.92);
  --card-2: #effbff;
  --text: #101828;
  --muted: #566176;
  --line: rgba(8, 65, 94, 0.14);
  --brand: #67ca00;
  --brand-2: #00aef0;
  --warm: #ff5b39;
  --shadow: 0 24px 65px rgba(0, 128, 180, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
button,
input {
  font: inherit;
}
button,
a {
  transition: 0.22s ease;
}
a {
  color: inherit;
  text-decoration: none;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.ambient {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.12;
  pointer-events: none;
  z-index: -1;
}
.ambient-a {
  background: var(--brand-2);
  top: -160px;
  left: -180px;
}
.ambient-b {
  background: var(--brand);
  right: -220px;
  top: 460px;
}
.site-header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--shell);
  margin: auto;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--brand);
  color: #0b0d12;
  font-family: "Archivo Black";
  letter-spacing: -3px;
  font-size: 20px;
  padding-right: 3px;
  transform: rotate(-3deg);
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.08em;
}
.brand-copy small {
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: 6px;
}
.desktop-nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
  font-weight: 700;
}
.desktop-nav a:hover {
  color: var(--brand);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-button,
.menu-button,
.ghost-button {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
}
.icon-button {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 20px;
}
.icon-button:hover,
.ghost-button:hover {
  border-color: var(--brand);
  transform: translateY(-1px);
}
.menu-button {
  display: none;
  padding: 8px 12px;
  border-radius: 11px;
}
.intro {
  padding: 86px 0 54px;
}
.eyebrow-row {
  display: flex;
  gap: 12px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(185, 255, 102, 0.12);
}
.intro h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(58px, 8.7vw, 126px);
  letter-spacing: -0.075em;
  line-height: 0.85;
  margin: 28px 0 30px;
  max-width: 1000px;
}
.intro h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
  opacity: 0.86;
}
.intro-copy {
  font-size: 18px;
  max-width: 680px;
  color: var(--muted);
  margin: 0 0 30px;
}
.platform-picker {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.platform {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}
.platform:hover,
.platform.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.platform.nintendo.active {
  background: #ff4d58;
  color: white;
  border-color: #ff4d58;
}
.platform.playstation.active {
  background: #4d82ff;
  color: white;
  border-color: #4d82ff;
}
.platform.xbox.active {
  background: #59b848;
  color: white;
  border-color: #59b848;
}
.platform.steam.active {
  background: #2d7d9d;
  color: white;
  border-color: #2d7d9d;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 22px;
}
.kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 900;
  color: var(--brand);
}
.section-heading h2,
.review-copy h2,
.performance-copy h2 {
  font-family: "Archivo Black";
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 6px 0 0;
}
.section-note {
  font-size: 12px;
  color: var(--muted);
}
.today {
  padding: 28px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 240px);
  gap: 14px;
}
.hero-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 24px;
  background: linear-gradient(135deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  cursor: pointer;
}
.hero-card:first-child {
  grid-row: 1/3;
}
.hero-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    var(--story-accent, rgba(185, 255, 102, 0.35)),
    transparent 42%
  );
  opacity: 0.6;
}
.hero-card:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 42% 58% 62% 38%;
  right: -40px;
  top: -40px;
  transform: rotate(25deg);
}
.hero-card > * {
  position: relative;
  z-index: 1;
}
.hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
}
.hero-card h3 {
  font-family: "Archivo Black";
  font-size: clamp(25px, 3vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.03;
  margin: 10px 0;
}
.hero-card:not(:first-child) h3 {
  font-size: 24px;
}
.story-meta {
  display: flex;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  font-weight: 800;
}
.platform-pill {
  border: 1px solid var(--line);
  padding: 4px 7px;
  border-radius: 7px;
  color: var(--text);
}
.ticker-wrap {
  height: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  overflow: hidden;
}
.ticker-label {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: 18px;
  background: var(--brand);
  color: #111318;
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 900;
}
.ticker {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  padding-left: 24px;
  font-size: 12px;
  font-weight: 700;
  animation: ticker 34s linear infinite;
}
.ticker span:before {
  content: "✦";
  color: var(--brand);
  margin-right: 12px;
}
@keyframes ticker {
  to {
    transform: translateX(-45%);
  }
}
.latest {
  padding: 72px 0;
}
.feed-tabs {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.feed-tab {
  background: transparent;
  color: var(--muted);
  border: 0;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.feed-tab.active {
  background: var(--card-2);
  color: var(--text);
}
.feed-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 44px;
}
.story-feed {
  border-top: 1px solid var(--line);
}
.story-row {
  display: grid;
  grid-template-columns: 112px 1fr max-content;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.story-row:hover h3 {
  color: var(--brand);
}
.story-thumb {
  height: 76px;
  border-radius: 13px;
  background: linear-gradient(
    135deg,
    var(--thumb-a, #5335b4),
    var(--thumb-b, #b9ff66)
  );
  position: relative;
  overflow: hidden;
}
.story-thumb:after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50% 20% 50% 20%;
  transform: rotate(-12deg);
}
.story-row h3 {
  margin: 5px 0 4px;
  font-size: 17px;
  line-height: 1.25;
}
.story-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.time {
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
}
.right-rail {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.rail-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.rail-card h3 {
  font-size: 22px;
  line-height: 1.12;
  margin: 8px 0 18px;
}
.truth-key {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.truth-key p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}
.truth {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  border-radius: 6px;
  padding: 4px 6px;
  display: inline-flex;
  width: max-content;
  height: max-content;
}
.truth.news {
  background: #1e784a;
  color: #baffd7;
}
.truth.report {
  background: #254b8c;
  color: #cce0ff;
}
.truth.rumor {
  background: #825e19;
  color: #ffe3a0;
}
.truth.opinion {
  background: #6c3a82;
  color: #f2c9ff;
}
.truth.review {
  background: #7f3441;
  color: #ffd0d6;
}
.newsletter-card {
  background: linear-gradient(145deg, var(--card), rgba(124, 92, 255, 0.15));
}
.newsletter-card p {
  color: var(--muted);
  font-size: 13px;
}
.newsletter-card form {
  display: flex;
  gap: 6px;
}
.newsletter-card input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  padding: 11px;
  border-radius: 10px;
  outline: none;
}
.newsletter-card button {
  border: 0;
  background: var(--brand);
  color: #111318;
  font-weight: 900;
  border-radius: 10px;
  padding: 0 13px;
  cursor: pointer;
}
.newsletter-card small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 9px;
}
.feature-band {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
  padding: 86px 0;
}
.review-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.review-copy p,
.performance-copy p {
  color: var(--muted);
  font-size: 15px;
}
.verdict-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.verdict {
  font-size: 11px;
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 9px;
}
.verdict.great {
  background: var(--brand);
  color: #10120f;
}
.verdict.wait {
  border: 1px solid var(--line);
}
.text-link {
  font-weight: 800;
  font-size: 12px;
}
.text-link:hover {
  color: var(--brand);
}
.review-card {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 390px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.review-art {
  background: linear-gradient(150deg, #463299, #8d6bff 47%, #b9ff66);
  padding: 25px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-art span {
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: 900;
}
.review-art strong {
  font-family: "Archivo Black";
  font-size: 40px;
  line-height: 0.88;
  letter-spacing: -0.06em;
}
.review-details {
  padding: 26px;
}
.truthbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--muted);
  font-size: 9px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.review-details h3 {
  font-size: 27px;
  line-height: 1.05;
  margin: 28px 0 11px;
}
.review-details > p {
  color: var(--muted);
  font-size: 13px;
}
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.mini-grid small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.mini-grid b {
  font-size: 11px;
}
.radar {
  padding: 86px 0;
}
.ghost-button {
  padding: 10px 14px;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 800;
}
.radar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
.release-card {
  border: 1px solid var(--line);
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.release-date {
  font-family: "Archivo Black";
  font-size: 32px;
  line-height: 1;
}
.release-date small {
  display: block;
  font-family: Inter;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.release-card h3 {
  font-size: 15px;
  margin: 18px 0 6px;
}
.release-card p {
  font-size: 10px;
  color: var(--muted);
  margin: 0;
}
.release-platforms {
  display: flex;
  gap: 4px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.release-platforms span {
  font-size: 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 3px 5px;
}
.performance {
  padding-bottom: 86px;
}
.performance-card {
  background: linear-gradient(135deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.perf-console {
  border: 1px solid var(--line);
  background: rgba(5, 8, 12, 0.55);
  border-radius: 18px;
  padding: 20px;
  color: #f5f7fb;
  box-shadow: var(--shadow);
}
.perf-top,
.perf-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.perf-top {
  font-size: 8px;
  letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 12px;
}
.status.good {
  color: #b9ff66;
}
.perf-line {
  margin-top: 18px;
  font-size: 11px;
}
.perf-meter {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  margin-top: 8px;
  overflow: hidden;
}
.perf-meter i {
  display: block;
  height: 100%;
  background: #b9ff66;
}
.perf-console small {
  display: block;
  color: #9aa4b5;
  margin-top: 22px;
  font-size: 9px;
}
.manifesto {
  text-align: center;
  padding: 88px 0 110px;
}
.manifesto blockquote {
  font-family: "Archivo Black";
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin: 18px auto 24px;
}
.manifesto blockquote em {
  font-style: normal;
  color: var(--brand);
}
.manifesto p {
  max-width: 660px;
  margin: auto;
  color: var(--muted);
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 18px;
}
.footer-signoff {
  text-align: right;
  font-size: 13px;
}
.footer-signoff strong {
  color: var(--brand);
}
.site-footer > small {
  grid-column: 1/-1;
  color: var(--muted);
  font-size: 9px;
}
.reader-dialog,
.search-dialog {
  width: min(760px, calc(100vw - 28px));
  max-height: 88vh;
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  border-radius: 26px;
  padding: 36px;
  box-shadow: var(--shadow);
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(7px);
}
.dialog-close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  border-radius: 50%;
  font-size: 21px;
  cursor: pointer;
}
.reader-dialog h2 {
  font-family: "Archivo Black";
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin: 16px 0;
}
.reader-dialog .reader-lede {
  font-size: 17px;
  color: var(--muted);
}
.quick-save {
  margin: 30px 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}
.quick-save h4 {
  margin: 0 0 8px;
  color: var(--brand);
  letter-spacing: 0.12em;
  font-size: 9px;
}
.quick-save p {
  margin: 0;
}
.search-dialog label {
  font-family: "Archivo Black";
  font-size: 28px;
  display: block;
  margin-bottom: 16px;
}
.search-dialog input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  font-size: 17px;
  outline: none;
}
.search-results {
  margin-top: 18px;
}
.search-result {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.search-result small {
  color: var(--muted);
}
.empty-state {
  padding: 40px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 18px;
}
.mobile-open .desktop-nav {
  display: flex;
  position: absolute;
  top: 64px;
  right: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 220px;
  }
  .hero-card:first-child {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .feed-layout {
    grid-template-columns: 1fr;
  }
  .right-rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .review-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .radar-grid {
    grid-template-columns: 1fr 1fr;
  }
  .performance-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .footer-signoff {
    text-align: left;
  }
}
@media (max-width: 620px) {
  :root {
    --shell: min(100% - 24px, 1180px);
  }
  .site-header {
    height: 66px;
  }
  .brand-copy {
    display: none;
  }
  .intro {
    padding: 54px 0 40px;
  }
  .intro h1 {
    font-size: 50px;
  }
  .intro-copy {
    font-size: 15px;
  }
  .eyebrow-row .muted {
    display: none;
  }
  .hero-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 5px;
  }
  .hero-card,
  .hero-card:first-child {
    min-width: 86vw;
    min-height: 330px;
    scroll-snap-align: start;
  }
  .hero-card:not(:first-child) h3 {
    font-size: 29px;
  }
  .ticker-label {
    padding-left: 12px;
  }
  .split-heading {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }
  .feed-tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .story-row {
    grid-template-columns: 82px 1fr;
  }
  .story-thumb {
    height: 70px;
  }
  .story-row .time {
    display: none;
  }
  .right-rail {
    grid-template-columns: 1fr;
  }
  .feature-band {
    padding: 62px 0;
  }
  .review-card {
    grid-template-columns: 1fr;
  }
  .review-art {
    min-height: 240px;
  }
  .review-art strong {
    font-size: 48px;
  }
  .radar {
    padding: 62px 0;
  }
  .radar-grid {
    display: flex;
    overflow-x: auto;
  }
  .release-card {
    min-width: 230px;
  }
  .performance-card {
    padding: 28px;
  }
  .manifesto {
    padding: 70px 0 88px;
  }
  .reader-dialog,
  .search-dialog {
    padding: 28px 20px;
  }
  .newsletter-card form {
    flex-direction: column;
  }
  .newsletter-card button {
    height: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .ticker {
    animation: none;
  }
}
.hero-card:before,
.hero-card:after {
  display: none;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.45s ease;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 8, 12, 0.08),
    rgba(6, 8, 12, 0.94) 82%
  );
  z-index: 1;
}
.hero-card > *:not(.hero-image):not(.hero-shade) {
  position: relative;
  z-index: 2;
}
.hero-card:hover .hero-image {
  transform: scale(1.035);
}
.story-thumb {
  width: 112px;
  height: 76px;
  border-radius: 13px;
  object-fit: cover;
  background: var(--card-2);
}
.story-thumb:after {
  display: none;
}
.video-wrap {
  position: relative;
  padding-top: 56.25%;
  margin: 24px 0;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.reader-image {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 18px;
  margin: 24px 0;
}
.source-link {
  display: inline-flex;
  margin-top: 16px;
  padding: 11px 15px;
  border-radius: 10px;
  background: var(--brand);
  color: #10120f;
  font-size: 13px;
  font-weight: 900;
}
.source-link:hover {
  transform: translateY(-1px);
}
.editorial-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
}
@media (max-width: 620px) {
  .story-thumb {
    width: 82px;
    height: 70px;
  }
}
.byline {
  font-size: 12px;
  color: var(--brand);
  font-weight: 800;
  margin: 12px 0 -2px;
}
.article-signature {
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--brand);
  padding-left: 14px;
  margin: 30px 0 18px;
}
.article-signature span,
.article-signature small {
  font-size: 11px;
  color: var(--muted);
}
.article-signature strong {
  font-family: "Archivo Black";
  font-size: 20px;
}
.article-copy {
  max-width: 680px;
  margin: 30px auto;
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.78;
  color: var(--text);
}
.article-copy p {
  margin: 0 0 1.25em;
}
.article-copy p:last-child {
  margin-bottom: 0;
}
.source-credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 30px 0 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
.source-credit a {
  color: var(--muted);
  text-decoration: none;
}
.source-credit a:hover {
  color: var(--brand-2);
}
.article-signature.compact {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 5px;
  border: 0;
  padding: 0;
  margin: 10px 0 24px;
}
.article-signature.compact strong {
  font-family: inherit;
  font-size: 12px;
}
.salt-meter {
  margin: 34px 0;
  padding: 24px;
  border: 1px solid rgba(244, 201, 93, 0.35);
  background: linear-gradient(145deg, var(--card), rgba(244, 201, 93, 0.1));
  border-radius: 20px;
}
.salt-meter h3 {
  font-family: "Archivo Black";
  font-size: 26px;
  margin: 5px 0;
}
.salt-meter > p {
  color: var(--muted);
  margin-top: 0;
}
.salt-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.salt-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-height: 125px;
  padding: 12px 8px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  border-radius: 14px;
  cursor: pointer;
}
.salt-option:hover,
.salt-option.selected {
  border-color: #f4c95d;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244, 201, 93, 0.12);
}
.salt-option > span {
  font-size: 27px;
}
.salt-option strong {
  font-size: 11px;
  line-height: 1.15;
}
.salt-option small {
  font-size: 9px;
  color: var(--muted);
  line-height: 1.2;
}
.salt-option i {
  font-style: normal;
  font-size: 10px;
  color: #f4c95d;
  margin-top: auto;
}
.salt-result {
  font-size: 12px;
  color: #f4c95d;
  font-weight: 800;
  margin-top: 13px;
  text-align: center;
}
.editor-section {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
  padding: 90px 0;
}
.editor-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 68px;
  align-items: center;
}
.editor-photo-wrap {
  position: relative;
}
.editor-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.editor-photo-wrap > span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--brand);
  color: #111318;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.editor-copy h2 {
  font-family: "Archivo Black";
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  margin: 12px 0 8px;
}
.editor-role {
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 11px;
}
.editor-copy > p:not(.editor-role) {
  color: var(--muted);
  font-size: 16px;
}
.editor-links {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.editor-links a {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 800;
}
.editor-links a:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.editor-copy blockquote {
  font-family: "Archivo Black";
  font-size: 24px;
  line-height: 1.1;
  margin: 28px 0 0;
}
@media (max-width: 900px) {
  .editor-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 620px) {
  .salt-options {
    grid-template-columns: 1fr 1fr;
  }
  .salt-option {
    min-height: 116px;
  }
  .editor-section {
    padding: 62px 0;
  }
}
.editor-photo {
  aspect-ratio: 1;
}

/* V0.3 — visual leads + community-powered Release Radar */
.intro {
  padding-top: 46px;
  padding-bottom: 28px;
}
.compact-promise {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 44px;
  align-items: end;
  margin: 20px 0 28px;
}
.intro .compact-promise h1 {
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 0.91;
  margin: 0;
}
.compact-promise .intro-copy {
  margin: 0;
  max-width: 620px;
}
.section-subcopy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.today {
  padding-top: 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.75fr);
  grid-template-rows: auto auto;
  gap: 14px;
}
.hero-spotlight {
  position: relative;
  min-height: clamp(430px, 58vw, 650px);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  grid-row: 1/3;
}
.hero-spotlight .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero-spotlight .hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 10, 15, 0.04) 28%,
    rgba(8, 10, 15, 0.96) 96%
  );
}
.hero-spotlight-copy {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 4vw, 52px);
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(26px, 4vw, 50px);
  color: #fff;
}
.hero-spotlight h3 {
  font-family: "Archivo Black";
  font-size: clamp(30px, 4.6vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 14px 0 12px;
  max-width: 900px;
}
.hero-spotlight p {
  max-width: 720px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(14px, 1.5vw, 18px);
}
.hero-read {
  display: inline-flex;
  background: var(--brand);
  color: #111318;
  padding: 10px 13px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hero-queue {
  display: grid;
  gap: 9px;
  align-content: start;
}
.hero-queue-item {
  appearance: none;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 8px;
  text-align: left;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 11px;
  cursor: pointer;
  transition: 0.2s;
}
.hero-queue-item:hover,
.hero-queue-item.active {
  border-color: var(--brand);
  transform: translateX(-4px);
}
.hero-queue-item img {
  width: 88px;
  height: 68px;
  object-fit: cover;
  border-radius: 10px;
}
.hero-queue-item span {
  min-width: 0;
}
.hero-queue-item small {
  color: var(--brand);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-queue-item strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.25;
  margin-top: 4px;
}
.hero-progress {
  height: 3px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.hero-progress i {
  display: block;
  height: 100%;
  background: var(--brand);
  animation: hero-progress 6.5s linear;
}
@keyframes hero-progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.radar-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.release-card.release-expanded {
  padding: 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  min-height: 340px;
}
.release-art {
  position: relative;
  min-height: 100%;
  background: #111;
}
.release-art > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.release-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.76));
}
.release-art .release-date {
  position: absolute;
  z-index: 2;
  left: 16px;
  top: 16px;
  background: rgba(8, 10, 15, 0.88);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}
.play-trailer {
  position: absolute;
  z-index: 3;
  left: 16px;
  bottom: 16px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}
.play-trailer span {
  color: #ff4050;
  margin-right: 5px;
}
.release-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.release-body h3 {
  font-size: 22px;
  margin: 0 0 7px;
}
.release-body > p {
  color: var(--muted);
  margin: 0;
}
.release-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0;
}
.release-platforms a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.release-platforms a:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.hype-meter {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.hype-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.hype-head span {
  display: grid;
}
.hype-head b {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hype-head small {
  font-size: 9px;
  color: var(--muted);
  margin-top: 3px;
}
.hype-score {
  font-family: "Archivo Black";
  font-size: 24px;
  color: var(--brand);
}
.hype-track {
  height: 7px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
  margin: 10px 0;
}
.hype-track i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ffac36, var(--brand), #ff4050);
  transition: width 0.45s;
}
.hype-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.hype-options button {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  border-radius: 8px;
  padding: 7px 5px;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}
.hype-options button:hover,
.hype-options button.selected {
  background: var(--brand);
  border-color: var(--brand);
  color: #111;
}
.hype-options button:disabled {
  opacity: 0.55;
}
.salt-option:disabled {
  opacity: 0.55;
}
.trailer-dialog {
  width: min(980px, 94vw);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  color: var(--text);
  padding: 28px;
  box-shadow: var(--shadow);
}
.trailer-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}
.trailer-dialog h2 {
  font-family: "Archivo Black";
  font-size: clamp(28px, 4vw, 48px);
  margin: 10px 38px 20px 0;
}
.trailer-dialog .video-wrap {
  margin: 0;
}
@media (max-width: 920px) {
  .compact-promise {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-spotlight {
    grid-row: auto;
    min-height: 520px;
  }
  .hero-queue {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-queue-item:hover,
  .hero-queue-item.active {
    transform: none;
  }
  .radar-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .intro {
    padding-top: 28px;
  }
  .hero-spotlight {
    min-height: 500px;
  }
  .hero-queue {
    grid-template-columns: 1fr;
  }
  .hero-queue-item {
    grid-template-columns: 100px 1fr;
  }
  .hero-queue-item img {
    width: 100px;
  }
  .release-card.release-expanded {
    grid-template-columns: 1fr;
  }
  .release-art {
    min-height: 260px;
  }
  .trailer-dialog {
    padding: 20px;
  }
  .section-note {
    display: none;
  }
}

/* OGN official identity + Day & Night */
body {
  transition:
    background 0.38s ease,
    color 0.3s ease;
}
.brand-logo {
  display: block;
  width: 122px;
  height: 58px;
  object-fit: contain;
}
.site-header .brand-copy strong {
  display: none;
}
.site-header .brand-copy small {
  max-width: 160px;
  line-height: 1.25;
  margin-top: 0;
}
.footer-brand .brand-logo {
  width: 150px;
  height: 70px;
}
.day-night-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.08);
  font-size: 11px;
  font-weight: 900;
}
.day-night-toggle i {
  position: relative;
  width: 32px;
  height: 18px;
  border-radius: 99px;
  background: #262c39;
  box-shadow: inset 0 0 0 1px var(--line);
}
.day-night-toggle i:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ogn-blue);
  right: 2px;
  top: 2px;
  transition: 0.25s;
}
.day-night-toggle.is-day i {
  background: #e7f7ff;
}
.day-night-toggle.is-day i:after {
  right: 16px;
  background: var(--ogn-orange);
}
.day-night-toggle .sun {
  color: var(--ogn-orange);
}
.day-night-toggle .moon {
  color: var(--ogn-blue);
}
.day-night-toggle:not(.is-day) .day-label,
.day-night-toggle.is-day .night-label {
  opacity: 0.48;
}
.day-night-toggle:hover {
  border-color: var(--ogn-blue);
  transform: translateY(-1px);
}
:root[data-theme="light"] body {
  background:
    radial-gradient(
      circle at 8% 3%,
      rgba(255, 91, 57, 0.19),
      transparent 25rem
    ),
    radial-gradient(
      circle at 92% 18%,
      rgba(0, 174, 240, 0.2),
      transparent 28rem
    ),
    radial-gradient(
      circle at 72% 72%,
      rgba(130, 230, 0, 0.14),
      transparent 30rem
    ),
    linear-gradient(145deg, #fff 0%, #f5fcff 46%, #fffdf8 100%);
  background-attachment: fixed;
}
:root[data-theme="light"] .ambient {
  opacity: 0.2;
  filter: blur(90px);
}
:root[data-theme="light"] .ambient-a {
  background: linear-gradient(135deg, var(--ogn-orange), var(--ogn-blue));
}
:root[data-theme="light"] .ambient-b {
  background: linear-gradient(135deg, var(--ogn-green), var(--ogn-blue));
}
:root[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0 0 20px 20px;
  padding-inline: 16px;
  box-shadow: 0 14px 40px rgba(0, 174, 240, 0.08);
}
:root[data-theme="light"] .intro h1 em {
  -webkit-text-stroke: 0;
  background: linear-gradient(
    90deg,
    var(--ogn-orange),
    #ff9d00 30%,
    var(--ogn-green) 58%,
    var(--ogn-blue)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 1;
}
:root[data-theme="light"] .live-dot {
  background: var(--ogn-green);
  box-shadow: 0 0 0 5px rgba(130, 230, 0, 0.18);
}
:root[data-theme="light"] .kicker {
  color: #0088bf;
}
:root[data-theme="light"] .section-heading h2 {
  background: linear-gradient(90deg, #101828 0 62%, #008fc8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
:root[data-theme="light"] .hero-queue-item,
:root[data-theme="light"] .rail-card,
:root[data-theme="light"] .review-card,
:root[data-theme="light"] .release-card,
:root[data-theme="light"] .performance-card {
  backdrop-filter: blur(14px);
}
:root[data-theme="light"] .hero-queue-item.active {
  border-color: var(--ogn-blue);
  box-shadow: 0 10px 30px rgba(0, 174, 240, 0.14);
}
:root[data-theme="light"] .ticker-label {
  background: linear-gradient(90deg, var(--ogn-orange), #ff9d00);
  color: #111;
}
:root[data-theme="light"] .ticker span:before {
  color: var(--ogn-blue);
}
:root[data-theme="light"] .feature-band,
:root[data-theme="light"] .editor-section {
  background: linear-gradient(
    135deg,
    rgba(0, 174, 240, 0.08),
    rgba(130, 230, 0, 0.09) 52%,
    rgba(255, 91, 57, 0.07)
  );
}
:root[data-theme="light"] .review-art {
  background: linear-gradient(
    150deg,
    var(--ogn-orange),
    #ff9d00 34%,
    var(--ogn-green) 64%,
    var(--ogn-blue)
  );
}
:root[data-theme="light"] .newsletter-card {
  background: linear-gradient(
    145deg,
    #fff,
    rgba(0, 174, 240, 0.13),
    rgba(130, 230, 0, 0.1)
  );
}
:root[data-theme="light"] .hype-track i {
  background: linear-gradient(
    90deg,
    var(--ogn-orange),
    var(--ogn-green),
    var(--ogn-blue)
  );
}
:root[data-theme="light"] .source-link,
:root[data-theme="light"] .hero-read {
  background: linear-gradient(90deg, var(--ogn-green), #b8f457);
  color: #101828;
}
:root[data-theme="light"] .manifesto blockquote em {
  background: linear-gradient(
    90deg,
    var(--ogn-orange),
    var(--ogn-green),
    var(--ogn-blue)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
:root[data-theme="light"] .footer-signoff strong {
  color: #008fc8;
}
@media (max-width: 760px) {
  .day-night-toggle .day-label,
  .day-night-toggle .night-label {
    display: none;
  }
  .day-night-toggle {
    gap: 5px;
    padding-inline: 7px;
  }
  .brand-logo {
    width: 104px;
    height: 50px;
  }
  .site-header {
    gap: 8px;
  }
  .header-actions {
    gap: 5px;
  }
}

/* V0.4 — news-first Big Four, conversation and permanent archive */
.intro {
  padding: 28px 0 18px;
}
.intro .eyebrow-row {
  margin-bottom: 18px;
}
.platform-picker {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.today {
  padding: 22px 0 58px;
}
.hero-grid {
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.8fr);
  grid-template-rows: 1fr auto;
  align-items: stretch;
}
.hero-spotlight {
  grid-row: 1/3;
  min-height: 470px;
  aspect-ratio: 16/9;
}
.hero-queue {
  grid-template-rows: repeat(4, 1fr);
  align-content: stretch;
}
.hero-queue-item {
  min-height: 0;
}
.hero-queue-item img {
  height: 100%;
  min-height: 68px;
}
.hero-progress {
  align-self: end;
}
.release-art > img {
  object-fit: cover;
}
.release-art .release-date {
  font-family: Inter, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 9px 11px;
  border-radius: 10px;
}
.brand-copy small {
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.12em;
}
.archive {
  padding: 78px 0 92px;
}
.archive-search {
  display: grid;
  gap: 6px;
  width: min(330px, 100%);
}
.archive-search span {
  font-size: 10px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.archive-search input {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}
.archive-search input:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 3px rgba(0, 174, 240, 0.12);
}
.archive-month {
  display: grid;
  gap: 6px;
  min-width: 190px;
}
.archive-month span {
  font-size: 10px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.archive-month select {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 36px 12px 14px;
  min-height: 44px;
}
.archive-more {
  display: block;
  margin: 26px auto 0;
}
.archive-more[hidden] {
  display: none;
}
.archive-filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.archive-filter {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.archive-filter.active,
.archive-filter:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.archive-day {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.archive-date {
  display: flex;
  flex-direction: column;
}
.archive-date span {
  font-family: "Archivo Black";
  font-size: 23px;
}
.archive-date small {
  color: var(--muted);
  font-size: 10px;
}
.archive-day-stories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.archive-story {
  display: grid;
  grid-template-columns: 92px 1fr 20px;
  gap: 14px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 9px;
  cursor: pointer;
}
.archive-story:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}
.archive-story img {
  width: 92px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
}
.archive-story h3 {
  font-size: 14px;
  line-height: 1.2;
  margin: 4px 0;
}
.archive-story p {
  display: none;
}
.archive-story > b {
  color: var(--brand);
  font-size: 20px;
}
.archive-platform {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--muted);
}
.reader-dialog {
  position: relative;
  padding-top: 58px;
}
.dialog-close.reader-close {
  position: fixed;
  right: max(22px, calc((100vw - min(760px, calc(100vw - 28px))) / 2 + 15px));
  top: max(18px, calc((100vh - 88vh) / 2 + 12px));
  z-index: 20;
  width: 70px;
  height: 70px;
  border: 3px solid #111;
  background: linear-gradient(135deg, var(--ogn-orange), #ffb000);
  color: #111;
  display: grid;
  place-items: center;
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
  line-height: 1;
}
.reader-close span {
  font-family: "Archivo Black";
  font-size: 35px;
  height: 30px;
}
.reader-close small {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.reader-close:hover {
  transform: rotate(4deg) scale(1.05);
  background: linear-gradient(135deg, var(--ogn-green), var(--ogn-blue));
}
.mike-take {
  margin: 30px 0;
  padding: 24px;
  border: 1px solid rgba(0, 174, 240, 0.3);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--card), rgba(0, 174, 240, 0.09));
}
.mike-take h3,
.conversation h3 {
  font-family: "Archivo Black";
  font-size: 28px;
  margin: 5px 0 8px;
}
.mike-take p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}
.conversation {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.conversation > p {
  color: var(--muted);
  margin-top: 0;
}
.conversation form {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  background: var(--card);
  padding: 18px;
  border-radius: 17px;
  border: 1px solid var(--line);
}
.conversation label {
  display: grid;
  gap: 6px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.conversation input,
.conversation textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  padding: 11px;
  border-radius: 10px;
  resize: vertical;
  outline: none;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}
.conversation input:focus,
.conversation textarea:focus {
  border-color: var(--brand-2);
}
.conversation form > div {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.conversation form small {
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.conversation form button {
  border: 0;
  background: var(--brand);
  color: #111;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}
.conversation form button:disabled {
  opacity: 0.55;
}
.comment-list {
  margin-top: 16px;
}
.comment {
  border-bottom: 1px solid var(--line);
  padding: 15px 2px;
}
.comment > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.comment strong {
  font-size: 13px;
}
.comment time {
  font-size: 10px;
  color: var(--muted);
}
.comment p {
  margin: 6px 0 0;
  font-size: 14px;
}
.comment-empty {
  padding: 22px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 12px;
  font-size: 13px;
}
@media (max-width: 920px) {
  .hero-spotlight {
    aspect-ratio: auto;
    min-height: 440px;
  }
  .archive-day-stories {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .today {
    padding-top: 12px;
  }
  .section-heading {
    align-items: flex-start;
  }
  .hero-spotlight {
    min-height: 390px;
  }
  .hero-queue {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }
  .archive {
    padding: 60px 0;
  }
  .archive-day {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .archive-date {
    flex-direction: row;
    gap: 8px;
    align-items: baseline;
  }
  .archive-story {
    grid-template-columns: 78px 1fr 16px;
  }
  .archive-story img {
    width: 78px;
    height: 68px;
  }
  .reader-dialog {
    padding: 68px 18px 24px;
  }
  .dialog-close.reader-close {
    right: 20px;
    top: 7vh;
    width: 62px;
    height: 62px;
  }
  .conversation form {
    grid-template-columns: 1fr;
  }
  .conversation form > div {
    align-items: stretch;
    flex-direction: column;
  }
  .conversation form button {
    width: 100%;
  }
}

/* V0.5 — resilient editorial layout */
.site-header > * {
  min-width: 0;
}
.ticker-wrap {
  width: 100%;
  height: 44px;
  grid-template-columns: clamp(112px, 12vw, 154px) minmax(0, 1fr);
  position: relative;
  z-index: 2;
}
.ticker-label {
  padding: 0 14px;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(90deg, var(--ogn-orange), #ffad00);
  white-space: nowrap;
}
.ticker-label span {
  font-size: 8px;
  animation: live-pulse 1.4s ease infinite;
}
.ticker-viewport {
  min-width: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker {
  min-width: max-content;
  padding-left: 18px;
}
.intro {
  padding: 17px 0 4px;
}
.intro .eyebrow-row {
  margin: 0;
}
.today {
  padding: 18px 0 42px;
}
.compact-platforms {
  padding: 0 0 16px;
  border: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  gap: 6px;
}
.compact-platforms .platform {
  padding: 7px 11px;
  font-size: 10px;
  letter-spacing: 0.02em;
  background: var(--card);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.latest {
  padding: 48px 0 60px;
}
.archive {
  padding: 62px 0 72px;
}
.feature-band,
.editor-section {
  padding: 72px 0;
}
.radar {
  padding: 72px 0;
}
.manifesto {
  padding: 72px 0 88px;
}
.reader-dialog[open] {
  display: block;
  position: fixed;
  inset: 5vh 0 auto 0;
  margin: auto;
  width: min(760px, calc(100vw - 28px));
  max-height: 90vh;
  z-index: 1000;
  overflow: auto;
}
.dialog-close.reader-close {
  position: sticky;
  float: right;
  right: 0;
  top: 0;
  margin: -42px -18px 0 12px;
  width: 64px;
  height: 64px;
  z-index: 50;
}
.direct-roundup {
  margin: 30px 0;
  padding: 24px;
  border: 1px solid rgba(255, 91, 57, 0.28);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--card), rgba(255, 91, 57, 0.08));
}
.direct-roundup h3 {
  font-family: "Archivo Black";
  font-size: 30px;
  margin: 5px 0 18px;
}
.roundup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.roundup-grid article {
  display: grid;
  gap: 3px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--bg);
}
.roundup-grid strong {
  font-size: 12px;
}
.roundup-grid span {
  font-size: 10px;
  color: var(--muted);
}
.roundup-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}
.roundup-links a {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  font-size: 10px;
  font-weight: 900;
}
.roundup-links a:hover {
  background: var(--brand);
  color: #111;
}
@keyframes live-pulse {
  50% {
    opacity: 0.35;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 16px;
    font-size: 12px;
  }
  .site-header .brand-copy {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .hero-spotlight {
    grid-row: auto;
    aspect-ratio: 16/8.4;
    min-height: 400px;
  }
  .hero-queue {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto;
  }
  .hero-queue-item {
    grid-template-columns: 1fr;
    padding: 7px;
  }
  .hero-queue-item img {
    width: 100%;
    height: 82px;
  }
  .hero-queue-item:hover,
  .hero-queue-item.active {
    transform: translateY(-2px);
  }
}
@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .hero-queue {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feed-layout {
    grid-template-columns: 1fr;
  }
  .right-rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .review-layout,
  .performance-card,
  .editor-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .radar-grid {
    grid-template-columns: 1fr;
  }
  .roundup-grid,
  .roundup-links {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .ticker-wrap {
    grid-template-columns: 96px minmax(0, 1fr);
  }
  .ticker-label {
    font-size: 8px;
    padding: 0 8px;
  }
  .hero-spotlight {
    aspect-ratio: auto;
    min-height: 360px;
  }
  .hero-spotlight h3 {
    font-size: 31px;
  }
  .hero-queue {
    grid-template-columns: 1fr;
  }
  .hero-queue-item {
    grid-template-columns: 92px 1fr;
  }
  .hero-queue-item img {
    width: 92px;
    height: 64px;
  }
  .right-rail {
    grid-template-columns: 1fr;
  }
  .compact-platforms {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 12px;
  }
  .compact-platforms .platform {
    flex: 0 0 auto;
  }
  .reader-dialog[open] {
    inset: 3vh 0 auto;
    max-height: 94vh;
  }
  .dialog-close.reader-close {
    right: 0;
    top: 0;
    margin: -52px -5px 0 8px;
  }
}

/* V0.6 — one-card Big Four */
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  grid-template-rows: minmax(430px, 58vh);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--card);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-spotlight {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.hero-spotlight-copy {
  max-width: min(820px, 86%);
}
.hero-spotlight h3 {
  font-size: clamp(32px, 4.5vw, 64px);
  overflow-wrap: anywhere;
}
.hero-queue {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr !important;
  grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  gap: 0;
  padding: 8px;
  background: rgba(10, 13, 19, 0.9);
  border-left: 1px solid var(--line);
  z-index: 4;
}
.hero-queue-item.platform-icon-button {
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
  color: #fff;
  transform: none !important;
}
.hero-queue-item.platform-icon-button:last-child {
  border-bottom: 0;
}
.hero-queue-item.platform-icon-button:hover,
.hero-queue-item.platform-icon-button.active {
  border-color: transparent;
  border-radius: 13px;
  background: var(--icon-color);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}
.platform-icon-button.nintendo {
  --icon-color: #e60012;
}
.platform-icon-button.playstation {
  --icon-color: #1769ff;
}
.platform-icon-button.xbox {
  --icon-color: #107c10;
}
.platform-icon-button.steam {
  --icon-color: #16729a;
}
.platform-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid currentColor;
  border-radius: 13px;
  font-family: "Archivo Black";
  font-size: 15px;
  line-height: 1;
}
.platform-icon-button.steam .platform-icon {
  border-radius: 50%;
  font-size: 23px;
}
.platform-icon-button small {
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  color: inherit;
}
.hero-progress {
  position: absolute;
  left: 0;
  right: 104px;
  bottom: 0;
  z-index: 7;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
}
@media (max-width: 760px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(360px, 64vh) 76px;
  }
  .hero-spotlight {
    grid-column: 1;
    grid-row: 1;
  }
  .hero-spotlight-copy {
    max-width: 92%;
    left: 22px;
    right: 22px;
    bottom: 24px;
  }
  .hero-queue {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-template-rows: 1fr !important;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 6px;
  }
  .hero-queue-item.platform-icon-button {
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: row;
  }
  .hero-queue-item.platform-icon-button:last-child {
    border-right: 0;
  }
  .platform-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 12px;
  }
  .platform-icon-button small {
    display: none;
  }
  .hero-progress {
    right: 0;
    bottom: 76px;
  }
  .hero-spotlight h3 {
    font-size: clamp(28px, 8vw, 42px);
  }
}
@media (max-width: 430px) {
  .hero-grid {
    grid-template-rows: minmax(340px, 63vh) 66px;
    border-radius: 20px;
  }
  .platform-icon {
    width: 32px;
    height: 32px;
  }
  .hero-spotlight-copy {
    left: 18px;
    right: 18px;
  }
  .hero-spotlight p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* Big Four cinematic spotlight */
.hero-spotlight {
  background: #05070b;
  isolation: isolate;
}
.hero-spotlight .hero-image {
  transform: scale(1.015);
  filter: saturate(1.08) contrast(1.04);
  transition:
    transform 6.5s ease,
    filter 0.4s ease;
}
.hero-motion {
  position: absolute;
  inset: -12%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  animation: hero-motion-reveal 1.1s 0.65s ease forwards;
}
.hero-motion iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 122%;
  height: 122%;
  border: 0;
  transform: translate(-50%, -50%) scale(1.24);
  pointer-events: none;
}
.hero-spotlight .hero-shade {
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(3, 5, 9, 0.94) 0%,
      rgba(3, 5, 9, 0.72) 38%,
      rgba(3, 5, 9, 0.16) 72%
    ),
    linear-gradient(180deg, rgba(3, 5, 9, 0.08) 25%, rgba(3, 5, 9, 0.92) 100%);
}
.hero-light {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(
    circle at 80% 30%,
    color-mix(in srgb, var(--story-accent) 28%, transparent),
    transparent 42%
  );
  mix-blend-mode: screen;
}
.hero-spotlight-copy {
  z-index: 4;
  left: clamp(22px, 3.4vw, 48px);
  right: clamp(22px, 3.4vw, 48px);
  bottom: clamp(22px, 3.4vw, 44px);
}
.hero-copy-panel {
  width: min(850px, 82%);
  padding: clamp(18px, 2.3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(5, 8, 13, 0.76),
    rgba(10, 14, 22, 0.42)
  );
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px) saturate(1.2);
  -webkit-backdrop-filter: blur(15px) saturate(1.2);
}
.hero-spotlight h3 {
  font-size: clamp(31px, 4.15vw, 59px);
  text-wrap: balance;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.78);
}
.hero-spotlight p {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
.hero-motion-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
}
.hero-motion-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--story-accent);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--story-accent) 18%, transparent),
    0 0 18px var(--story-accent);
  animation: motion-pulse 1.8s ease-in-out infinite;
}
.hero-read {
  padding: 12px 16px;
  border-radius: 11px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}
.hero-spotlight:hover .hero-image {
  transform: scale(1.055);
  filter: saturate(1.16) contrast(1.06);
}
@keyframes hero-motion-reveal {
  to {
    opacity: 0.82;
  }
}
@keyframes motion-pulse {
  50% {
    opacity: 0.45;
    transform: scale(0.72);
  }
}
@media (max-width: 900px) {
  .hero-copy-panel {
    width: min(760px, 92%);
  }
}
@media (max-width: 760px) {
  .hero-motion {
    display: none;
  }
  .hero-copy-panel {
    width: 100%;
    padding: 17px;
    border-radius: 18px;
    background: linear-gradient(
      135deg,
      rgba(5, 8, 13, 0.82),
      rgba(10, 14, 22, 0.6)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .hero-spotlight .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(3, 5, 9, 0.08) 15%,
      rgba(3, 5, 9, 0.9) 88%
    );
  }
  .hero-motion-label {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-motion {
    display: none;
  }
  .hero-spotlight .hero-image {
    transition: none;
  }
  .hero-motion-label {
    display: none;
  }
  .hero-motion-label i {
    animation: none;
  }
}

/* OGN.GG brand lockup */
.brand-lockup {
  display: block;
  line-height: 0;
  flex: 0 0 auto;
}
.brand-lockup .brand-logo {
  display: block;
  width: 168px;
  height: 58px;
  object-fit: contain;
}
.brand-lockup .logo-day {
  display: none;
}
:root[data-theme="light"] .brand-lockup .logo-night {
  display: none;
}
:root[data-theme="light"] .brand-lockup .logo-day {
  display: block;
}
.footer-brand .brand-lockup .brand-logo {
  width: 220px;
  height: 77px;
}
@media (max-width: 760px) {
  .brand-lockup .brand-logo {
    width: 145px;
    height: 50px;
  }
}
@media (max-width: 430px) {
  .brand-lockup .brand-logo {
    width: 132px;
    height: 46px;
  }
  .site-header .brand-copy {
    display: none;
  }
}

/* V0.7 — unified game shelves */
.legacy-feature {
  display: none !important;
}
.game-shelf {
  padding: 68px 0;
}
.shelf-band {
  width: 100%;
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}
.shelf-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 22px;
}
.shelf-heading h2 {
  font-family: "Archivo Black";
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin: 6px 0;
}
.shelf-heading p {
  color: var(--muted);
  margin: 8px 0 0;
}
.shelf-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex-wrap: wrap;
}
.shelf-actions > button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}
.shelf-actions > button:hover {
  background: var(--brand);
  color: #111;
}
.shelf-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.shelf-tabs button {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 9px;
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
}
.shelf-tabs button.active,
.shelf-tabs button:hover {
  background: var(--text);
  color: var(--bg);
}
.cover-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(170px, 19vw, 220px);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding: 4px 2px 16px;
}
.cover-card {
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  min-width: 0;
}
.cover-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand);
  box-shadow: var(--shadow);
}
.cover-art {
  display: block;
  aspect-ratio: 2/3;
  background: var(--card-2);
  overflow: hidden;
}
.cover-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.cover-card:hover img {
  transform: scale(1.035);
}
.cover-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 13px;
}
.cover-copy small {
  font-size: 8px;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
}
.cover-copy strong {
  font-size: 14px;
  line-height: 1.2;
}
.cover-copy em {
  font-size: 10px;
  color: var(--muted);
  font-style: normal;
}
.game-dialog {
  width: min(1050px, calc(100vw - 28px));
  max-height: 92vh;
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.game-dialog[open] {
  display: block;
  position: fixed;
  inset: 4vh 0 auto;
  margin: auto;
  z-index: 1000;
}
.game-dialog .reader-close {
  position: sticky;
  float: right;
  top: 0;
  margin: -10px -10px -54px 10px;
}
.game-modal-top {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.6fr);
  gap: 18px;
  min-height: 440px;
}
.game-box-art {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 18px;
  background: var(--card);
}
.game-trailer {
  position: relative;
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}
.game-trailer iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.game-modal-body {
  padding: 28px 8px 8px;
}
.game-modal-body h2 {
  font-family: "Archivo Black";
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 8px 0 12px;
}
.game-summary {
  font-size: 17px;
  color: var(--muted);
  max-width: 750px;
}
.game-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin: 24px 0;
}
.game-facts > div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--card);
}
.game-facts small {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.game-facts strong {
  font-size: 13px;
}
.game-stores {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.game-stores a {
  padding: 9px 12px;
  border-radius: 9px;
  background: var(--brand);
  color: #111;
  font-size: 10px;
  font-weight: 900;
}
.share-panel {
  margin: 34px 0 6px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--ogn-blue) 38%, var(--line));
  border-radius: 20px;
  background: linear-gradient(145deg, var(--card), color-mix(in srgb, var(--ogn-blue) 9%, var(--bg)));
}
.share-preview {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.share-preview img {
  width: 112px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--bg);
}
.share-preview span { display: grid; gap: 4px; min-width: 0; }
.share-preview small { color: var(--ogn-green); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.share-preview strong { font-family: "Archivo Black"; font-size: 17px; line-height: 1.12; }
.share-preview em { color: var(--muted); font-size: 11px; font-style: normal; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.share-comment { display: grid; gap: 7px; margin-top: 16px; font-size: 13px; font-weight: 900; }
.share-comment span { color: var(--muted); font-weight: 500; }
.share-comment textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-weight: 500;
}
.share-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.share-actions button {
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}
.share-actions button:first-child { background: var(--ogn-green); border-color: var(--ogn-green); color: #071006; }
.share-actions button:hover { border-color: var(--ogn-blue); transform: translateY(-1px); }
.share-status { margin: 11px 2px 0; color: var(--muted); font-size: 12px; }
@media (max-width: 560px) {
  .share-preview { grid-template-columns: 86px minmax(0, 1fr); }
  .share-preview img { width: 86px; height: 68px; }
  .share-preview strong { font-size: 15px; }
  .share-actions button { flex: 1 1 calc(50% - 8px); }
}
.join-ogn {
  padding: 76px 0 92px;
}
.join-heading {
  text-align: center;
  margin-bottom: 30px;
}
.join-heading h2 {
  font-family: "Archivo Black";
  font-size: clamp(36px, 5vw, 66px);
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 7px 0;
}
.join-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.join-grid > article {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
}
.join-grid > article:first-child {
  background: linear-gradient(145deg, var(--card), rgba(0, 174, 240, 0.1));
}
.join-grid > article:last-child {
  background: linear-gradient(145deg, var(--card), rgba(130, 230, 0, 0.09));
}
.join-icon {
  font-size: 28px;
  color: var(--brand);
}
.join-grid h3 {
  font-family: "Archivo Black";
  font-size: 25px;
  margin: 8px 0;
}
.join-grid p {
  color: var(--muted);
}
.submission-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 20px;
}
.submission-form textarea,
.submission-form button,
.submission-form small {
  grid-column: 1/-1;
}
.submission-form input,
.submission-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  padding: 11px;
  border-radius: 10px;
  resize: vertical;
}
.submission-form button {
  border: 0;
  border-radius: 10px;
  padding: 11px;
  background: var(--text);
  color: var(--bg);
  font-weight: 900;
  cursor: pointer;
}
.submission-form button:hover {
  background: var(--brand);
  color: #111;
}
.submission-form small {
  min-height: 18px;
  color: var(--brand);
  font-size: 10px;
}

/* V1.0 — Player Pulse and collapsible journey archive */
.player-pulse {
  padding: 18px 0 58px;
}

/* OGN Signal Boost — creator work worth sharing */
.signal-boost {
  padding: 0 0 58px;
}
.signal-boost-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(320px, 0.82fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(33, 176, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #111824 0%, #0b0d12 64%);
  box-shadow: var(--shadow);
}
.signal-boost-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(130, 230, 0, 0.05);
}
.signal-boost-video {
  min-height: 390px;
  background: #000;
}
.signal-boost-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}
.signal-boost-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 54px);
  color: #f5f7fb;
}
.signal-boost-label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.signal-waves {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(130, 230, 0, 0.5);
  border-radius: 50%;
  color: var(--brand);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -0.2em;
  transform: rotate(-18deg);
}
.signal-boost-copy h2 {
  max-width: 620px;
  margin: 17px 0 18px;
  font-family: "Archivo Black";
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.signal-boost-credit {
  margin: 0 0 18px;
  color: #aeb8ca;
  font-size: 14px;
}
.signal-boost-credit strong {
  color: var(--brand);
}
.signal-boost-copy h3 {
  margin: 0 0 8px;
  font-size: 21px;
}
.signal-boost-copy > p:not(.signal-boost-credit) {
  margin: 0;
  color: #b9c1d0;
  font-size: 15px;
  line-height: 1.65;
}
.signal-boost-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin: 24px 0 18px;
}
.signal-boost-actions a {
  font-weight: 900;
  text-decoration: none;
}
.signal-primary {
  padding: 13px 17px;
  border-radius: 12px;
  background: var(--brand);
  color: #071000;
}
.signal-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.signal-channel {
  color: #f5f7fb;
  border-bottom: 1px solid #536077;
}
.signal-channel:hover {
  color: var(--brand);
  border-color: var(--brand);
}
.signal-boost-copy small {
  color: #788398;
  font-size: 11px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .signal-boost-card {
    grid-template-columns: 1fr;
  }
  .signal-boost-video,
  .signal-boost-video iframe {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .signal-boost-copy {
    padding: 28px;
  }
}
@media (max-width: 560px) {
  .signal-boost {
    padding-bottom: 42px;
  }
  .signal-boost-card {
    border-radius: 20px;
  }
  .signal-boost-copy {
    padding: 23px 20px 25px;
  }
  .signal-boost-copy h2 {
    font-size: 30px;
  }
  .signal-boost-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .signal-primary {
    text-align: center;
  }
  .signal-channel {
    align-self: center;
  }
}
.pulse-heading {
  align-items: flex-end;
}
.pulse-heading h2 {
  font-family: "Archivo Black";
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin: 6px 0;
}
.section-subcopy {
  color: var(--muted);
  margin: 10px 0 0;
}
.pulse-live {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}
.pulse-live i,
.pulse-trend i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(130, 230, 0, 0.12);
  animation: live-pulse 1.4s ease infinite;
}
.pulse-tabs {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 4px 0 17px;
  scrollbar-width: none;
}
.pulse-tabs::-webkit-scrollbar {
  display: none;
}
.pulse-tab {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}
.pulse-tab:hover,
.pulse-tab.active {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}
.pulse-tab.nintendo.active {
  background: #e60012;
  border-color: #e60012;
  color: #fff;
}
.pulse-tab.playstation.active {
  background: #1769ff;
  border-color: #1769ff;
  color: #fff;
}
.pulse-tab.xbox.active {
  background: #107c10;
  border-color: #107c10;
  color: #fff;
}
.pulse-tab.steam.active {
  background: #16729a;
  border-color: #16729a;
  color: #fff;
}
.pulse-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
}
.pulse-card {
  --pulse: #82e600;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: linear-gradient(
    150deg,
    var(--card),
    color-mix(in srgb, var(--pulse) 9%, var(--card))
  );
  overflow: hidden;
}
.pulse-card.nintendo {
  --pulse: #e60012;
}
.pulse-card.playstation {
  --pulse: #1769ff;
}
.pulse-card.xbox {
  --pulse: #107c10;
}
.pulse-card.steam {
  --pulse: #16729a;
}
.pulse-card:hover {
  transform: translateY(-4px);
  border-color: var(--pulse);
  box-shadow: var(--shadow);
}
.pulse-card-top,
.pulse-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.pulse-platform {
  color: var(--pulse);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.pulse-trend {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}
.pulse-trend i {
  background: var(--pulse);
  box-shadow: none;
}
.pulse-card h3 {
  font-family: "Archivo Black";
  font-size: 19px;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 22px 0 9px;
}
.pulse-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.pulse-card-foot {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 13px;
  font-size: 9px;
}
.pulse-card-foot span {
  color: var(--muted);
}
.pulse-card-foot strong {
  color: var(--pulse);
}
.pulse-disclaimer {
  color: var(--muted);
  font-size: 9px;
  margin: 12px 2px 0;
}
.archive {
  padding: 0 0 72px;
}
.archive-drawer {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  overflow: hidden;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.08);
}
.archive-drawer > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 28px;
  cursor: pointer;
}
.archive-drawer > summary::-webkit-details-marker {
  display: none;
}
.archive-drawer > summary > span:first-child {
  display: grid;
  gap: 4px;
}
.archive-drawer > summary strong {
  font-family: "Archivo Black";
  font-size: clamp(25px, 3.2vw, 40px);
  line-height: 1;
}
.archive-drawer > summary small {
  color: var(--muted);
  font-size: 11px;
}
.archive-toggle {
  display: flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}
.archive-toggle b {
  font-size: 10px;
  color: var(--muted);
}
.archive-toggle i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--text);
  color: var(--bg);
  font-family: "Archivo Black";
  font-size: 25px;
  font-style: normal;
  transition: 0.25s;
}
.archive-drawer[open] .archive-toggle i {
  transform: rotate(45deg);
  background: var(--brand);
  color: #111;
}
.archive-drawer-body {
  padding: 25px 28px 30px;
  border-top: 1px solid var(--line);
}
.archive-tools {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}
.archive-tools .section-subcopy {
  margin: 0;
}
@media (max-width: 980px) {
  .pulse-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .player-pulse {
    padding: 8px 0 48px;
  }
  .pulse-heading {
    align-items: flex-start;
  }
  .pulse-live {
    display: none;
  }
  .pulse-grid {
    grid-template-columns: 1fr;
  }
  .pulse-card {
    min-height: 190px;
  }
  .archive-drawer > summary {
    padding: 20px;
    align-items: flex-start;
  }
  .archive-drawer > summary small {
    max-width: 230px;
  }
  .archive-toggle b {
    display: none;
  }
  .archive-drawer-body {
    padding: 20px;
  }
  .archive-tools {
    align-items: stretch;
    flex-direction: column;
  }
  .archive-search {
    width: 100%;
  }
  .archive-month {
    width: 100%;
  }
  .source-credit {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}
@media (max-width: 820px) {
  .shelf-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .shelf-actions {
    justify-content: flex-start;
  }
  .shelf-tabs {
    justify-content: flex-start;
  }
  .game-modal-top {
    grid-template-columns: 190px 1fr;
    min-height: 340px;
  }
  .game-facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .join-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .game-shelf {
    padding: 54px 0;
  }
  .cover-rail {
    grid-auto-columns: 155px;
  }
  .shelf-actions {
    width: 100%;
  }
  .shelf-tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .shelf-tabs button {
    flex: 0 0 auto;
  }
  .game-dialog {
    padding: 14px;
  }
  .game-modal-top {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .game-box-art {
    width: min(230px, 68vw);
    height: auto;
    aspect-ratio: 2/3;
    margin: auto;
  }
  .game-trailer {
    min-height: 220px;
  }
  .game-modal-body {
    padding: 22px 4px 4px;
  }
  .game-facts {
    grid-template-columns: 1fr 1fr;
  }
  .submission-form {
    grid-template-columns: 1fr;
  }
  .submission-form > * {
    grid-column: 1 !important;
  }
}
.cover-rail {
  grid-auto-columns: clamp(190px, 21vw, 250px);
}
.cover-art {
  aspect-ratio: 2/3;
  background: linear-gradient(145deg, var(--card-2), var(--bg));
}
.cover-art img {
  object-fit: cover;
  object-position: center;
}
.game-box-art {
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(145deg, var(--card-2), var(--bg));
}
.cover-platforms {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.comment > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.comment > div time {
  margin-left: auto;
}
.comment-report {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  padding: 4px;
}
.comment-report:hover {
  color: #ff6978;
}
.comment-report[disabled] {
  opacity: 0.5;
}
.site-footer > small {
  font-size: 10px;
}
.site-footer > small + small {
  margin-top: -12px;
  font-size: 9px;
  opacity: 0.8;
}
.staff-access {
  margin-left: 4px;
  color: var(--muted);
  opacity: 0.48;
  font-size: 9px;
  white-space: nowrap;
}

.platform.publishers.active,
.hero-queue-item.publishers.active { background: #ff7a21; color: #101217; }
.archive-platform.publishers { color: #ff9b57; }
.staff-access:hover,
.staff-access:focus-visible {
  color: var(--brand);
  opacity: 1;
}
@media (max-width: 600px) {
  .cover-rail {
    grid-auto-columns: 190px;
  }
  .game-box-art {
    width: min(230px, 68vw);
    max-width: 230px;
    aspect-ratio: 2/3;
  }
}
.speedrun-review {
  max-width: 820px;
  margin: 30px 0 6px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--card), var(--card-2));
}
.speedrun-review h3 {
  font-family: "Archivo Black";
  font-size: 25px;
  margin: 6px 0 10px;
}
.speedrun-review p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}
.speedrun-signature {
  margin-top: 14px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.03em;
}
.starlyte-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #2d5065;
  border-radius: 999px;
  background: linear-gradient(135deg, #102230, #111623);
  color: #f7fbff;
  padding: 13px 17px;
  box-shadow: 0 14px 42px #0009;
  font:
    800 14px Inter,
    sans-serif;
  cursor: pointer;
}
.starlyte-launcher span {
  color: #19bfff;
  font-size: 20px;
}
.starlyte-dialog {
  width: min(460px, calc(100vw - 24px));
  height: min(720px, calc(100dvh - 30px));
  padding: 0;
  border: 1px solid #35475c;
  border-radius: 24px;
  background: #0c111a;
  color: #f7fbff;
  box-shadow: 0 24px 80px #000c;
  overflow: hidden;
}
.starlyte-dialog::backdrop {
  background: #02050a99;
  backdrop-filter: blur(6px);
}
.starlyte-dialog[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
}
.starlyte-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #283343;
  background: linear-gradient(135deg, #142535, #11151e);
}
.starlyte-head > div {
  display: flex;
  align-items: center;
  gap: 11px;
}
.starlyte-head > div > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: #0b1621;
  color: #1ec4ff;
  font-size: 24px;
}
.starlyte-head small {
  color: #82e600;
  font:
    900 10px Inter,
    sans-serif;
  letter-spacing: 0.1em;
}
.starlyte-head h2 {
  margin: 2px 0 0;
  font:
    900 23px Inter,
    sans-serif;
}
.starlyte-head button {
  border: 0;
  background: transparent;
  color: #aeb8c8;
  font-size: 28px;
  cursor: pointer;
}
.starlyte-conversation {
  overflow: auto;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 13px;
  background: radial-gradient(circle at 100% 0, #0e2730 0, transparent 38%);
}
.starlyte-message {
  max-width: 92%;
  padding: 13px 14px;
  border-radius: 16px;
  background: #171e29;
  border: 1px solid #293647;
}
.starlyte-message.user {
  justify-self: end;
  background: #153248;
  border-color: #235879;
}
.starlyte-message b {
  display: block;
  margin-bottom: 5px;
}
.starlyte-message p {
  margin: 0;
  color: #b7c0ce;
  line-height: 1.55;
  font-size: 14px;
}
.starlyte-results {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
.starlyte-results button {
  display: grid;
  gap: 4px;
  text-align: left;
  border: 1px solid #334153;
  border-radius: 12px;
  background: #0c1119;
  color: #f7fbff;
  padding: 11px;
  cursor: pointer;
}
.starlyte-results button:hover {
  border-color: #19bfff;
}
.starlyte-results small {
  color: #82e600;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.starlyte-results strong {
  font-size: 14px;
}
.starlyte-results span {
  color: #9ba8ba;
  font-size: 12px;
  line-height: 1.4;
}
.starlyte-prompts {
  display: flex;
  gap: 7px;
  padding: 10px 14px 0;
  overflow: auto;
}
.starlyte-prompts button {
  flex: 0 0 auto;
  border: 1px solid #334153;
  border-radius: 999px;
  background: #121823;
  color: #dce4ef;
  padding: 7px 10px;
  font:
    700 11px Inter,
    sans-serif;
  cursor: pointer;
}
.starlyte-form {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
  padding: 10px 14px;
}
.starlyte-form input {
  min-width: 0;
  border: 1px solid #354256;
  border-radius: 13px;
  background: #080c12;
  color: #fff;
  padding: 12px;
  font: inherit;
}
.starlyte-form button {
  border: 0;
  border-radius: 13px;
  background: #82e600;
  color: #071006;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}
.starlyte-note {
  padding: 0 16px 14px;
  color: #758196;
  font-size: 10px;
  line-height: 1.35;
}
@media (max-width: 600px) {
  .starlyte-launcher {
    right: 13px;
    bottom: 13px;
  }
  .starlyte-dialog {
    height: calc(100dvh - 16px);
    width: calc(100vw - 16px);
    border-radius: 20px;
  }
}
.sr-only {
  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;
}
.site-header {
  gap: clamp(12px, 2vw, 28px);
}
.site-header .brand {
  flex: 0 1 auto;
}
.site-header .brand-lockup .brand-logo {
  width: clamp(138px, 14vw, 168px);
  height: auto;
  max-height: 58px;
}
.desktop-nav {
  flex: 1;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 28px);
}
.desktop-nav a {
  white-space: nowrap;
}
.header-actions {
  flex: 0 0 auto;
}
@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }
  .menu-button {
    display: block;
  }
}
@media (max-width: 480px) {
  .site-header {
    width: calc(100% - 20px);
  }
  .site-header .brand-lockup .brand-logo {
    width: 124px;
  }
  .icon-button {
    width: 36px;
    height: 36px;
  }
  .day-night-toggle {
    height: 36px;
  }
  .menu-button {
    font-size: 12px;
    padding: 7px 9px;
  }
}
.starlyte-fact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 11px;
}
.starlyte-fact-links a {
  border: 1px solid #3a4d62;
  border-radius: 999px;
  padding: 7px 10px;
  color: #82e600;
  font-size: 11px;
  font-weight: 900;
}
.starlyte-fact-links a:hover {
  border-color: #82e600;
}
.starlyte-form label.sr-only {
  position: absolute !important;
}
.starlyte-form input {
  width: 100%;
  display: block;
}
.starlyte-form button {
  width: 44px;
  height: 44px;
  padding: 0;
}

/* Pre-Order Watch */
.preorder-band {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--warm) 10%, var(--bg-soft)),
    var(--bg-soft) 54%,
    color-mix(in srgb, var(--brand) 7%, var(--bg-soft))
  );
  border-block: 1px solid var(--line);
}
.preorder-band:before {
  content: "";
  position: absolute;
  inset: -40% auto auto 55%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--warm);
  filter: blur(150px);
  opacity: 0.08;
  pointer-events: none;
}
.preorder-band .shell {
  position: relative;
}
.preorder-band .kicker {
  color: var(--warm);
}
.preorder-card {
  position: relative;
}
.preorder-card:before {
  content: "WATCH";
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 6px 8px;
  border-radius: 8px;
  background: var(--warm);
  color: #fff;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.11em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.preorder-card:hover {
  border-color: var(--warm);
}
.preorder-card .cover-copy small {
  color: var(--warm);
}
.affiliate-shelf-note {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.affiliate-shelf-note b {
  color: var(--text);
}
.affiliate-note {
  max-width: 760px;
  margin: 22px 0 12px;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--warm) 45%, var(--line));
  border-radius: 13px;
  background: color-mix(in srgb, var(--warm) 7%, var(--card));
}
.affiliate-note b {
  color: var(--warm);
  font-size: 12px;
}
.affiliate-note p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
