:root {
  color-scheme: light;
  --ink: #0c1116;
  --muted: #5d6872;
  --line: #d9dedc;
  --paper: #f6f7f4;
  --panel: #ffffff;
  --panel-strong: #eef4f2;
  --accent: #0f766e;
  --accent-strong: #0b4f4a;
  --amber: #c97719;
  --amber-soft: #fff1d8;
  --blue: #315f9d;
  --blue-soft: #e6eef9;
  --rose: #a33b55;
  --rose-soft: #fae8ee;
  --green: #4f7d32;
  --green-soft: #e7f1df;
  --teal-soft: #def3ef;
  --shadow: 0 18px 60px rgba(12, 17, 22, 0.12);
  --shadow-hover: 0 24px 70px rgba(12, 17, 22, 0.18);
  --radius: 8px;
  --mx: 0;
  --my: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.theme-gaming {
  color-scheme: dark;
  --ink: #f5f7f8;
  --muted: #aeb9be;
  --line: #2d393b;
  --paper: #0b1011;
  --panel: #12191b;
  --panel-strong: #182426;
  --accent: #2dd4bf;
  --accent-strong: #86efac;
  --amber: #f4b942;
  --amber-soft: #302716;
  --blue: #5ea7ff;
  --blue-soft: #15283d;
  --rose: #ff617c;
  --rose-soft: #351a22;
  --green: #8bd450;
  --green-soft: #1b2d18;
  --teal-soft: #15302d;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.38);
  --shadow-hover: 0 24px 70px rgba(0, 0, 0, 0.55);
  background: linear-gradient(120deg, rgba(45, 212, 191, 0.08), transparent 34rem), #0b1011;
}

body.theme-streaming {
  --ink: #181316;
  --muted: #685b62;
  --line: #ded4d7;
  --paper: #f8f5f3;
  --panel: #ffffff;
  --panel-strong: #f2e9e8;
  --accent: #8b263c;
  --accent-strong: #61172a;
  --amber: #b67a24;
  --amber-soft: #f8ecd6;
  --blue: #355c7d;
  --blue-soft: #e6edf2;
  --rose: #a93c58;
  --rose-soft: #f8e7eb;
  --teal-soft: #e5f0ed;
  background: linear-gradient(145deg, rgba(139, 38, 60, 0.08), transparent 34rem), #f8f5f3;
}

body.theme-portal {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(15, 118, 110, 0.12), transparent),
    radial-gradient(ellipse 70% 45% at 95% 100%, rgba(109, 40, 217, 0.1), transparent),
    #f4f5f2;
}

body.theme-news {
  --ink: #111619;
  --muted: #5b666b;
  --line: #d4dcda;
  --paper: #f3f6f4;
  --panel: #ffffff;
  --panel-strong: #e8efec;
  --accent: #086f65;
  --accent-strong: #064c46;
  --amber: #ba6816;
  --amber-soft: #fff0d8;
  --blue: #245f87;
  --blue-soft: #e2eef5;
  --rose: #9c3850;
  --rose-soft: #f6e7eb;
  --green: #42752d;
  --green-soft: #e6f0df;
  --teal-soft: #dff2ee;
  background: linear-gradient(180deg, rgba(8, 111, 101, 0.07), transparent 28rem), #f3f6f4;
}

body.theme-ai {
  --ink: #15121f;
  --muted: #5f596c;
  --line: #ddd6e8;
  --paper: #f7f5fb;
  --panel: #ffffff;
  --panel-strong: #eee8f8;
  --accent: #6d28d9;
  --accent-strong: #4c1d95;
  --amber: #b45309;
  --amber-soft: #fff1d6;
  --blue: #2563eb;
  --blue-soft: #e0ebff;
  --rose: #be185d;
  --rose-soft: #fce7f3;
  --green: #047857;
  --green-soft: #dcf7ef;
  --teal-soft: #ebe4ff;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.08), transparent 30rem), #f7f5fb;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(15, 118, 110, 0.06), transparent 34rem),
    linear-gradient(90deg, rgba(201, 119, 25, 0.06), transparent 38rem),
    var(--paper);
  color: var(--ink);
}

.cursor-glow {
  position: fixed;
  z-index: 999;
  left: 50vw;
  top: 42vh;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(102, 232, 255, 0.13), transparent 65%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
}

.cursor-glow.is-visible {
  opacity: 1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

p,
li {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(12, 17, 22, 0.08);
  background: rgba(246, 247, 244, 0.86);
  backdrop-filter: blur(16px);
}

.theme-gaming .site-header {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(11, 16, 17, 0.9);
}

.theme-streaming .site-header {
  background: rgba(248, 245, 243, 0.91);
}

.network-link {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.network-link::before {
  content: "\2190";
  margin-right: 0.35rem;
}

.portal-main,
.section-hub-hero,
.hub-stat-strip,
.gaming-now-links {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.portal-main {
  min-height: 76vh;
  padding: clamp(3rem, 7vw, 6.5rem) 0 5rem;
}

.portal-intro {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.portal-intro h1 {
  max-width: 720px;
  margin: 0.25rem 0 0.75rem;
  font-size: clamp(2.8rem, 6rem, 5.5rem);
  line-height: 0.98;
}

.portal-intro-accent {
  background: linear-gradient(120deg, #0f766e 0%, #245f87 45%, #6d28d9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.portal-intro p {
  max-width: 680px;
  font-size: 1.12rem;
}

.portal-lanes {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.portal-lane {
  position: relative;
  min-height: 300px;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.portal-lane::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lane-accent, rgba(255, 255, 255, 0.85));
}

.portal-lane:hover,
.portal-lane:focus-visible {
  z-index: 1;
  transform: translateY(-6px);
  filter: saturate(1.08);
  box-shadow: var(--lane-glow, 0 18px 40px rgba(0, 0, 0, 0.22));
}

.portal-lane:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.portal-lane-hardware {
  --lane-accent: #5eead4;
  --lane-glow: 0 18px 42px rgba(15, 118, 110, 0.35);
  background: linear-gradient(160deg, #0f766e 0%, #143c43 55%, #0b4f4a 100%);
}

.portal-lane-gaming {
  --lane-accent: #2dd4bf;
  --lane-glow: 0 18px 42px rgba(45, 212, 191, 0.22);
  background: linear-gradient(160deg, #1a3d35 0%, #172821 50%, #0f2922 100%);
}

.portal-lane-streaming {
  --lane-accent: #f0a8b8;
  --lane-glow: 0 18px 42px rgba(139, 38, 60, 0.28);
  background: linear-gradient(160deg, #8b2a42 0%, #6e2537 55%, #4a1825 100%);
}

.portal-lane-news {
  --lane-accent: #7ec8e3;
  --lane-glow: 0 18px 42px rgba(37, 77, 102, 0.32);
  background: linear-gradient(160deg, #2a6585 0%, #254d66 55%, #1a3547 100%);
}

.portal-lane-ai {
  --lane-accent: #c4b5fd;
  --lane-glow: 0 18px 42px rgba(109, 40, 217, 0.32);
  background: linear-gradient(160deg, #6d28d9 0%, #4c1d95 55%, #312e81 100%);
}

.portal-lane > span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.portal-lane h2 {
  margin: 2.5rem 0 0.65rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.portal-lane p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  line-height: 1.45;
}

.portal-lane-action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.portal-lane-action span {
  display: inline-block;
  transition: transform 180ms ease;
}

.portal-lane:hover .portal-lane-action span,
.portal-lane:focus-visible .portal-lane-action span {
  transform: translateX(4px);
}

.portal-fresh {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2rem;
  padding-top: 3rem;
}

.portal-quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
}

.portal-quick-links a {
  position: relative;
  padding: 1.15rem 2.25rem 1.15rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  background: var(--panel);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.portal-quick-links a::after {
  content: "→";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-strong);
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
}

.portal-quick-links a:hover,
.portal-quick-links a:focus-visible {
  background: var(--panel-strong);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  box-shadow: 0 8px 24px rgba(12, 17, 22, 0.06);
}

.portal-quick-links a:hover::after,
.portal-quick-links a:focus-visible::after {
  opacity: 1;
  transform: translate(4px, -50%);
}

.portal-quick-links strong {
  display: block;
  transition: color 160ms ease;
}

.portal-quick-links a:hover strong,
.portal-quick-links a:focus-visible strong {
  color: var(--accent-strong);
}

.portal-quick-links span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.section-hub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 610px;
  padding: 3rem 0;
}

.section-hub-hero h1,
.page-title-block h1 {
  margin: 0.35rem 0 1rem;
  max-width: 850px;
  font-size: clamp(2.75rem, 5.4rem, 5rem);
  line-height: 1;
}

.section-hub-hero p { max-width: 680px; font-size: 1.05rem; }
.section-hub-hero img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border: 1px solid var(--line); box-shadow: var(--shadow); }
.gaming-hub-hero img { aspect-ratio: 16 / 9; }

.hub-stat-strip,
.gaming-now-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.hub-stat-strip span,
.gaming-now-links a {
  padding: 1.25rem;
  color: var(--muted);
}

.hub-stat-strip span + span,
.gaming-now-links a + a { border-left: 1px solid var(--line); }
.hub-stat-strip strong,
.gaming-now-links strong,
.gaming-now-links span { display: block; color: var(--ink); }
.gaming-now-links a { text-decoration: none; }
.gaming-now-links span { margin-bottom: 0.35rem; color: var(--accent); font-size: 0.72rem; font-weight: 900; text-transform: uppercase; }
.theme-gaming #popular-now > .steam-trending { width: min(100% - 2rem, 1180px); margin-inline: auto; }
.theme-gaming .gaming-now-links { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.game-update-preview {
  width: min(100% - 2rem, 1180px);
  margin: 3rem auto 1rem;
  padding-block: 2rem;
  border-block: 1px solid var(--line);
}

.online-games-page { padding-bottom: 3rem; }

.webgame-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  padding: clamp(3rem, 7vw, 6rem) 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

.webgame-hero h1 {
  max-width: 760px;
  margin: 0.35rem 0 1rem;
  font-size: clamp(2.75rem, 5.2rem, 4.8rem);
  line-height: 1;
}

.webgame-hero > div > p { max-width: 720px; font-size: 1.05rem; }
.webgame-hero > * { min-width: 0; }
.webgame-hero aside { padding: 1.35rem 0 0 1.35rem; border-left: 3px solid var(--amber); }
.webgame-hero aside span { color: var(--amber); font-size: 0.72rem; font-weight: 900; text-transform: uppercase; }
.webgame-hero aside strong { display: block; margin: 0.45rem 0; font-size: 1.3rem; line-height: 1.18; }
.webgame-hero aside p { margin: 0; }

.webgame-starter {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.webgame-starter > div { min-width: 0; padding: 1.2rem; }
.webgame-starter > div + div { border-left: 1px solid var(--line); }
.webgame-starter span { color: var(--accent); font-size: 0.68rem; font-weight: 900; text-transform: uppercase; }
.webgame-starter strong { display: block; margin: 0.25rem 0; }
.webgame-starter p { margin: 0; font-size: 0.78rem; }

.webgame-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  padding: 1.4rem 0;
}

.webgame-filter {
  min-height: 38px;
  padding: 0.48rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--ink);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 820;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.webgame-filter:hover { border-color: var(--accent); transform: translateY(-1px); }
.webgame-filter.is-active { border-color: var(--accent); background: var(--accent); color: #071111; }
.webgame-filter-bar > span { margin-left: auto; color: var(--muted); font-size: 0.78rem; font-weight: 800; }

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

.webgame-card {
  display: flex;
  min-width: 0;
  min-height: 610px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.webgame-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow-hover); }
.webgame-media { position: relative; display: block; overflow: hidden; background: #070b0c; text-decoration: none; }
.webgame-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 240ms ease, opacity 180ms ease; }
.webgame-card:hover .webgame-media img { transform: scale(1.025); opacity: 0.88; }
.webgame-media > span { position: absolute; right: 0; bottom: 0; padding: 0.55rem 0.7rem; background: rgba(7, 11, 12, 0.9); color: #fff; font-size: 0.68rem; font-weight: 850; }
.webgame-media b { color: var(--accent); }

.webgame-content { display: flex; min-height: 0; flex: 1; flex-direction: column; padding: 1.05rem; }
.webgame-heading { display: flex; justify-content: space-between; gap: 0.6rem; align-items: start; }
.webgame-heading span { color: var(--accent); font-size: 0.68rem; font-weight: 900; text-transform: uppercase; }
.webgame-heading em { color: var(--muted); font-size: 0.67rem; font-style: normal; text-align: right; }
.webgame-card h2 { margin: 0.55rem 0 0.35rem; font-size: 1.35rem; line-height: 1.12; }
.webgame-card p { margin: 0; font-size: 0.82rem; }

.webgame-facts { display: grid; gap: 0.4rem; margin: 1rem 0; }
.webgame-facts div { display: grid; grid-template-columns: 62px minmax(0, 1fr); gap: 0.55rem; padding-top: 0.4rem; border-top: 1px solid var(--line); }
.webgame-facts dt { color: var(--muted); font-size: 0.65rem; font-weight: 850; text-transform: uppercase; }
.webgame-facts dd { margin: 0; color: var(--ink); font-size: 0.72rem; }
.webgame-fit { padding: 0.7rem; background: var(--panel-strong); }
.webgame-fit strong { display: block; margin-bottom: 0.2rem; color: var(--accent-strong); font-size: 0.65rem; text-transform: uppercase; }
.webgame-note { padding-top: 0.7rem; color: var(--muted); }
.webgame-card footer { display: flex; justify-content: space-between; gap: 0.75rem; align-items: end; margin-top: auto; padding-top: 1rem; }
.webgame-card footer a { color: var(--accent); font-size: 0.72rem; font-weight: 850; }
.webgame-card footer a:last-child { color: var(--muted); font-size: 0.63rem; font-weight: 650; text-align: right; }

.webgame-method {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 2.5rem;
  margin-top: 3rem;
  padding: 2.5rem 0;
  border-block: 1px solid var(--line);
}

.webgame-method h2 { margin: 0.3rem 0 0.7rem; }
.webgame-method > div:last-child { display: flex; flex-direction: column; gap: 0.55rem; }
.webgame-method a { color: var(--accent); font-size: 0.82rem; font-weight: 800; }
.webgame-method p { margin: 0.5rem 0 0; font-size: 0.76rem; }

.game-update-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.game-update-preview-grid a {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 280px;
  flex-direction: column;
  padding-bottom: 1rem;
  border: 1px solid var(--line);
  background: var(--panel);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.game-update-preview-grid a:hover { transform: translateY(-4px); border-color: var(--accent); }
.game-update-preview-grid img { width: 100%; aspect-ratio: 460 / 215; object-fit: cover; }
.game-update-preview-grid span { margin: 0.9rem 1rem 0.35rem; color: var(--accent); font-size: 0.7rem; font-weight: 900; text-transform: uppercase; }
.game-update-preview-grid strong { margin-inline: 1rem; line-height: 1.18; }
.game-update-preview-grid em { margin: auto 1rem 0; padding-top: 0.75rem; color: var(--muted); font-size: 0.72rem; font-style: normal; }
.text-action { display: inline-block; margin-top: 1.25rem; color: var(--accent); font-weight: 850; }

.game-update-filters {
  position: sticky;
  z-index: 12;
  top: 69px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 16, 17, 0.95);
  backdrop-filter: blur(14px);
}

.game-update-filter {
  min-height: 38px;
  padding: 0 0.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--ink);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.game-update-filter.is-active { border-color: var(--accent); background: var(--accent); color: #071111; }
.game-update-filters > span { margin-left: auto; color: var(--muted); font-size: 0.76rem; font-weight: 800; }
.battlefield-update-lead { padding: 2.5rem 0 1.5rem; }

.game-update-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  background: var(--panel);
}

.game-update-card-amber { border-top-color: var(--amber); }
.game-update-card-blue { border-top-color: var(--blue); }
.game-update-card-green { border-top-color: var(--green); }
.game-update-card-rose { border-top-color: var(--rose); }
.game-update-card > img { width: 100%; aspect-ratio: 460 / 215; object-fit: cover; }
.game-update-content { display: flex; min-height: 330px; flex-direction: column; padding: 1.25rem; }
.game-update-card.is-featured { display: grid; grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr); }
.game-update-card.is-featured > img { height: 100%; aspect-ratio: auto; }
.game-update-card.is-featured .game-update-content { min-height: 390px; padding: 1.6rem; }
.game-update-top { display: flex; justify-content: space-between; gap: 0.75rem; }
.game-update-top span { color: var(--accent); font-size: 0.72rem; font-weight: 900; text-transform: uppercase; }
.game-update-top time { color: var(--muted); font-size: 0.72rem; }
.game-update-card h2 { margin: 0.7rem 0; font-size: 2rem; line-height: 1.08; }
.game-update-card h3 { margin: 0.7rem 0; font-size: 1.2rem; line-height: 1.18; }
.game-update-card p { margin: 0 0 1rem; }
.game-update-impact { margin-top: auto; padding: 0.8rem; background: var(--panel-strong); }
.game-update-impact strong { display: block; color: var(--accent-strong); font-size: 0.7rem; text-transform: uppercase; }
.game-update-impact span { color: var(--muted); font-size: 0.82rem; }
.game-update-card footer { display: flex; gap: 1rem; margin-top: 1rem; }
.game-update-card footer a { color: var(--accent); font-size: 0.78rem; font-weight: 850; }

.game-update-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.game-update-method {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-block: 2rem;
  border-block: 1px solid var(--line);
}

.game-monitor-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.55rem; }
.game-monitor-list span { padding: 0.65rem; border: 1px solid var(--line); color: var(--muted); font-size: 0.72rem; }
.game-monitor-list strong { display: block; color: var(--ink); }
.game-monitor-list .is-live { border-left: 3px solid var(--green); }
.game-monitor-list .is-down { border-left: 3px solid var(--rose); }

.page-title-block {
  max-width: 940px;
  padding: clamp(2.5rem, 7vw, 6rem) 0 2.5rem;
}

.calendar-list {
  border-top: 1px solid var(--line);
}

.calendar-list article {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 150px 130px;
  gap: 1.25rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.calendar-list time { color: var(--amber); font-weight: 900; }
.calendar-list h2 { margin: 0.15rem 0 0.25rem; font-size: 1.2rem; }
.calendar-list p { margin: 0; }
.calendar-list article > div > span,
.calendar-list em { color: var(--muted); font-size: 0.75rem; font-style: normal; text-transform: uppercase; }
.calendar-list a { color: var(--accent); font-weight: 800; }

.free-game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.free-game-grid article { min-height: 285px; padding: 1.4rem; background: var(--panel); }
.free-game-grid article > span { color: var(--accent); font-size: 0.72rem; font-weight: 900; text-transform: uppercase; }
.free-game-grid h2 { margin: 0.6rem 0; font-size: 1.35rem; }
.free-game-grid strong { color: var(--amber); font-size: 0.82rem; }
.free-game-grid a { display: inline-block; margin-top: 0.8rem; color: var(--accent); font-weight: 850; }

.theme-gaming .guide-card,
.theme-gaming .steam-trending-card,
.theme-gaming .quick-answer,
.theme-gaming .deal-rule-board,
.theme-gaming .article-shell,
.theme-gaming .article-section,
.theme-gaming details {
  border-color: var(--line);
  background-color: var(--panel);
}

.theme-gaming .site-nav a,
.theme-gaming .button.secondary {
  border-color: #344246;
  background: #131b1d;
  color: var(--ink);
}

.theme-streaming .brand-mark { background: linear-gradient(145deg, #8b263c, #b67a24); }
.theme-news .brand-mark { background: linear-gradient(145deg, #086f65, #245f87); }

.news-main {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.news-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.news-hero h1 {
  max-width: 820px;
  margin: 0.3rem 0 1rem;
  font-size: 4.4rem;
  line-height: 1;
}

.news-hero > div > p { max-width: 720px; font-size: 1.05rem; }
.news-hero aside { padding: 1.15rem; border: 1px solid var(--line); border-top: 4px solid var(--accent); background: var(--panel); }
.news-hero aside span { color: var(--muted); font-size: 0.72rem; font-weight: 850; text-transform: uppercase; }
.news-hero aside strong { display: flex; align-items: center; gap: 0.55rem; margin: 0.35rem 0; }
.news-hero aside strong i { width: 8px; height: 8px; border-radius: 50%; background: #20a65a; box-shadow: 0 0 0 5px rgba(32, 166, 90, 0.12); }
.news-hero aside p { margin: 0; font-size: 0.85rem; }

.news-edition-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.news-edition-stats b { padding-top: 0.7rem; font-size: 1.15rem; }
.news-edition-stats small { display: block; color: var(--muted); font-size: 0.65rem; font-weight: 750; text-transform: uppercase; }

.news-ticker {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  overflow: hidden;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
}

.news-ticker > span { color: var(--accent); font-size: 0.72rem; font-weight: 900; text-transform: uppercase; white-space: nowrap; }
.news-ticker > div { display: flex; gap: 1.5rem; overflow-x: auto; scrollbar-width: none; }
.news-ticker > div::-webkit-scrollbar { display: none; }
.news-ticker a { flex: 0 0 auto; max-width: 44ch; overflow: hidden; color: var(--muted); font-size: 0.78rem; font-weight: 750; text-decoration: none; text-overflow: ellipsis; white-space: nowrap; }
.news-ticker a:hover { color: var(--accent-strong); }

.news-briefing {
  padding: 2.3rem 0;
  border-bottom: 1px solid var(--line);
}

.news-briefing-heading,
.news-source-guide-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.2rem;
}

.news-briefing-heading h2,
.news-source-guide-heading h2 { margin: 0.3rem 0 0; font-size: 2rem; }
.news-briefing-heading > p,
.news-source-guide-heading > p { margin: 0; color: var(--muted); }
.news-briefing-heading > p strong { color: var(--accent-strong); font-size: 1.35rem; }

.news-briefing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.news-briefing-grid article {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.news-briefing-grid article:nth-child(1) { border-top: 4px solid #b65c16; }
.news-briefing-grid article:nth-child(2) { border-top: 4px solid #245f87; }
.news-briefing-grid article:nth-child(3) { border-top: 4px solid #8d3b53; }
.news-briefing-grid article > span { color: var(--accent); font-size: 0.7rem; font-weight: 900; text-transform: uppercase; }
.news-briefing-grid h3 { margin: 0.7rem 0; font-size: 1.16rem; line-height: 1.2; }
.news-briefing-grid p { margin: 0 0 1rem; color: var(--muted); font-size: 0.86rem; }
.news-briefing-grid a { margin-top: auto; color: var(--accent-strong); font-size: 0.78rem; font-weight: 850; }

.news-topic-pulse {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.news-topic-pulse a {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.2rem 0.5rem;
  padding: 0.9rem;
  color: var(--ink);
  text-decoration: none;
}

.news-topic-pulse a + a { border-left: 1px solid var(--line); }
.news-topic-pulse span { overflow: hidden; font-size: 0.72rem; font-weight: 850; text-overflow: ellipsis; white-space: nowrap; }
.news-topic-pulse strong { color: var(--accent-strong); font-size: 1.1rem; }
.news-topic-pulse small { grid-column: 1 / -1; color: var(--muted); font-size: 0.66rem; }
.news-topic-pulse a:hover { background: var(--panel-strong); }

.news-controls {
  position: sticky;
  z-index: 12;
  top: 69px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(150px, 0.4fr) auto;
  gap: 0.7rem;
  align-items: end;
  padding: 0.8rem 0;
  background: rgba(243, 246, 244, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.news-search,
.news-sort { display: grid; gap: 0.25rem; }
.news-search > span,
.news-sort > span { color: var(--muted); font-size: 0.68rem; font-weight: 850; text-transform: uppercase; }
.news-search input,
.news-sort select { width: 100%; min-height: 42px; border: 1px solid var(--line); border-radius: 6px; padding: 0 0.75rem; background: var(--panel); color: var(--ink); font: inherit; font-size: 0.85rem; }
.news-search input:focus,
.news-sort select:focus { outline: 2px solid rgba(8, 111, 101, 0.22); border-color: var(--accent); }

.news-toggle { display: inline-flex; align-items: center; gap: 0.5rem; min-height: 42px; padding: 0 0.75rem; border: 1px solid var(--line); border-radius: 6px; background: var(--panel); color: var(--ink); font-size: 0.78rem; font-weight: 800; cursor: pointer; }
.news-toggle input { width: 16px; height: 16px; accent-color: var(--accent); }

.news-filter-bar {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  padding-top: 0.15rem;
}

.news-filter {
  min-height: 38px;
  padding: 0 0.8rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.news-filter.is-active { border-color: var(--accent); background: var(--accent); color: #fff; }
.news-filter[data-news-filter="pc-hardware"].is-active { border-color: #a95a12; background: #a95a12; }
.news-filter[data-news-filter="software-and-ai"].is-active,
.news-filter[data-news-filter="ai-and-tools"].is-active { border-color: #245f87; background: #245f87; }
.news-filter[data-news-filter="security"].is-active { border-color: #923249; background: #923249; }
.news-filter[data-news-filter="streaming-tech"].is-active { border-color: #65478f; background: #65478f; }
.news-filter b { display: inline-grid; min-width: 20px; height: 20px; place-items: center; margin-left: 0.25rem; border-radius: 50%; background: var(--panel-strong); color: var(--muted); font-size: 0.66rem; }
.news-filter.is-active b { background: rgba(255, 255, 255, 0.2); color: #fff; }
.news-filter-bar > span { margin-left: auto; color: var(--muted); font-size: 0.78rem; font-weight: 800; }

.news-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--news-tone, var(--accent));
  border-radius: 6px;
  background: var(--panel);
  box-shadow: 0 9px 28px rgba(17, 22, 25, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.news-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(17, 22, 25, 0.1); }
.news-tone-pc-hardware { --news-tone: #ba6816; }
.news-tone-software-and-ai,
.news-tone-ai-and-tools { --news-tone: #245f87; }
.news-tone-gaming { --news-tone: #086f65; }
.news-tone-security { --news-tone: #9c3850; }
.news-tone-streaming-tech { --news-tone: #6c4e9b; }
.news-tone-models-and-releases { --news-tone: #6d28d9; }
.news-tone-tools-and-productivity { --news-tone: #2563eb; }
.news-tone-research { --news-tone: #047857; }

.news-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 1.25rem 2rem;
  min-height: 315px;
}

.news-card-signal { display: flex; justify-content: space-between; gap: 0.75rem; grid-column: 1 / -1; }
.news-card-signal span { color: var(--accent); font-size: 0.72rem; font-weight: 900; text-transform: uppercase; }
.news-card-signal em { color: var(--muted); font-size: 0.7rem; font-style: normal; text-transform: uppercase; }
.news-card h2 { margin: 0.65rem 0; font-size: 1.22rem; line-height: 1.18; }
.news-card-featured h2 { margin: 0; font-size: 2.25rem; line-height: 1.08; }
.news-card > p { margin: 0.7rem 0 1rem; }
.news-why { padding: 0.85rem; background: var(--panel-strong); }
.news-why strong { display: block; color: var(--accent-strong); font-size: 0.72rem; text-transform: uppercase; }
.news-why span { color: var(--muted); font-size: 0.86rem; }
.news-card footer { display: flex; justify-content: space-between; gap: 0.75rem; align-items: end; margin-top: auto; padding-top: 1rem; }
.news-card footer > span { display: grid; color: var(--muted); font-size: 0.72rem; }
.news-card footer > span strong { color: var(--ink); }
.news-card footer a { color: var(--accent); font-size: 0.78rem; font-weight: 850; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1.25rem;
}

.news-empty { margin-top: 1.25rem; padding: 3rem 1.5rem; border: 1px dashed var(--line); text-align: center; background: var(--panel); }
.news-empty[hidden] { display: none; }
.news-empty > span { color: var(--accent); font-size: 0.72rem; font-weight: 900; text-transform: uppercase; }
.news-empty h2 { margin: 0.35rem 0; }
.news-empty p { margin: 0 auto 1rem; }
.news-empty button { min-height: 38px; border: 0; border-radius: 6px; padding: 0 0.9rem; background: var(--accent); color: #fff; font: inherit; font-size: 0.8rem; font-weight: 850; cursor: pointer; }

.news-source-guide {
  margin-top: 3rem;
  padding: 2.5rem 0;
  border-block: 1px solid var(--line);
}

.news-trust-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
}

.news-trust-legend span { padding: 0.45rem 0.6rem; border: 1px solid var(--line); border-radius: 4px; color: var(--muted); font-size: 0.7rem; }
.news-trust-legend span b { color: var(--ink); }
.news-trust-legend > strong { margin-left: auto; color: var(--accent-strong); font-size: 0.78rem; }

.news-source-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.news-source-directory article {
  display: flex;
  min-width: 0;
  min-height: 225px;
  flex-direction: column;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.news-source-directory article > div { display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center; }
.news-source-type,
.news-source-health { font-size: 0.66rem; font-weight: 850; text-transform: uppercase; }
.news-source-type { color: #245f87; }
.news-source-health { color: var(--muted); }
.news-source-health::before { display: inline-block; width: 7px; height: 7px; margin-right: 0.35rem; border-radius: 50%; background: var(--rose); content: ""; }
.news-source-health.is-live::before { background: var(--green); }
.news-source-directory h3 { margin: 0.65rem 0 0.45rem; font-size: 1.1rem; }
.news-source-directory h3 a { color: var(--ink); }
.news-source-directory p { margin: 0; color: var(--muted); font-size: 0.82rem; }
.news-source-directory footer { display: flex; justify-content: space-between; gap: 0.8rem; align-items: end; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.68rem; }
.news-source-directory footer > span:last-child { display: flex; flex-wrap: wrap; justify-content: end; gap: 0.25rem 0.55rem; }
.news-source-directory footer a { color: var(--accent-strong); }
.news-source-empty { display: grid; gap: 0.25rem; margin-top: 0.75rem; padding: 1.25rem; border: 1px dashed var(--line); color: var(--muted); text-align: center; }
.news-source-empty strong { color: var(--ink); }

.news-method {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 2rem;
  margin: 3rem 0 1rem;
  padding: 2rem 0;
  border-block: 1px solid var(--line);
}

.news-method h2 { margin: 0.25rem 0 0.75rem; }
.news-source-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.6rem; }
.news-source-list span { padding: 0.7rem; border: 1px solid var(--line); background: var(--panel); color: var(--muted); font-size: 0.74rem; }
.news-source-list strong { display: block; color: var(--ink); }
.news-source-list .is-live { border-left: 3px solid var(--green); }
.news-source-list .is-down { border-left: 3px solid var(--rose); }

@media (max-width: 1100px) {
  .portal-lanes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .webgame-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .portal-lanes,
  .portal-fresh,
  .section-hub-hero,
  .hub-stat-strip,
  .gaming-now-links,
  .free-game-grid { grid-template-columns: 1fr; }
  .portal-lane { min-height: 250px; }
  .portal-lane h2 { margin-top: 2rem; }
  .portal-quick-links { grid-template-columns: 1fr; }
  .hub-stat-strip span + span,
  .gaming-now-links a + a { border-left: 0; border-top: 1px solid var(--line); }
  .section-hub-hero { min-height: auto; }
  .calendar-list article { grid-template-columns: 1fr; gap: 0.45rem; }
  .network-link { display: none; }
  .portal-intro h1,
  .section-hub-hero h1,
  .page-title-block h1 { font-size: 3rem; line-height: 1.02; }
  .news-hero,
  .news-briefing-heading,
  .news-briefing-grid,
  .news-source-guide-heading,
  .news-card-featured,
  .news-method,
  .news-grid { grid-template-columns: 1fr; }
  .news-topic-pulse { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-topic-pulse a + a { border-left: 0; }
  .news-topic-pulse a { border-top: 1px solid var(--line); }
  .news-source-directory { grid-template-columns: 1fr; }
  .news-hero h1 { font-size: 3rem; }
  .news-card-featured { min-height: 0; }
  .news-card-featured h2 { font-size: 1.7rem; }
  .news-controls { position: static; grid-template-columns: 1fr 1fr; }
  .news-search { grid-column: 1 / -1; }
  .news-toggle { align-self: end; }
  .news-filter-bar > span { width: 100%; margin-left: 0; }
  .news-source-list { grid-template-columns: 1fr; }
  .theme-gaming .gaming-now-links,
  .webgame-hero,
  .webgame-starter,
  .webgame-grid,
  .webgame-method,
  .game-update-preview-grid,
  .game-update-grid,
  .game-update-method,
  .game-update-card.is-featured { grid-template-columns: 1fr; }
  .game-update-card.is-featured > img { height: auto; aspect-ratio: 460 / 215; }
  .game-update-filters { top: 154px; }
  .game-update-filters > span { width: 100%; margin-left: 0; }
  .webgame-starter > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .webgame-filter-bar > span { width: 100%; margin-left: 0; }
  .webgame-card { min-height: 0; }
  .webgame-hero { grid-template-columns: minmax(0, 1fr); }
  .webgame-hero h1 { font-size: 2.6rem; line-height: 1; overflow-wrap: anywhere; }
  .new-season-filters { top: 154px; }
  .new-season-filters > span { width: 100%; margin-left: 0; }
  .new-season-grid { grid-template-columns: 1fr; }
  .new-season-card { grid-template-columns: 1fr; }
  .new-season-media img { aspect-ratio: 16 / 9; height: auto; }
  .game-monitor-list { grid-template-columns: 1fr; }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.brand > div {
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, var(--accent), var(--blue)),
    var(--ink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  white-space: normal;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.site-nav a,
.button,
.shortcut-links a,
.mini-list a,
.filter-chip {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.65rem 0.85rem;
  text-decoration: none;
  font-weight: 750;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-nav a {
  padding: 0.55rem 0.7rem;
  font-size: 0.88rem;
  white-space: nowrap;
}

.site-nav a:hover,
.button:hover,
.shortcut-links a:hover,
.mini-list a:hover,
.filter-chip:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, calc(100svh - 92px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(1.4rem, 4vw, 3.4rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 5vw, 5rem);
  background:
    linear-gradient(135deg, #061011 0%, #10141c 52%, #14100d 100%);
  color: #fff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 16, 17, 0.9), rgba(6, 16, 17, 0.5)),
    var(--hero-image) 68% center / cover no-repeat;
  filter: saturate(1.08);
  opacity: 0.28;
  transform: translate3d(calc(var(--mx) * -12px), calc(var(--my) * -10px), 0) scale(1.03);
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.36));
  background-size: 56px 56px, 56px 56px, 100% 100%;
  transform: translate3d(calc(var(--mx) * -9px), calc(var(--my) * -9px), 0);
  opacity: 0.54;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(720px, 100%);
}

.eyebrow {
  display: inline-flex;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(142, 229, 216, 0.32);
  border-radius: 999px;
  padding: 0.48rem 0.68rem;
  background: rgba(142, 229, 216, 0.08);
  color: #bceee7;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-badge i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #8ee5d8;
  box-shadow: 0 0 0 6px rgba(142, 229, 216, 0.13);
  animation: status-pulse 1.8s ease-out infinite;
}

.hero .eyebrow {
  color: #8ee5d8;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  margin-top: 0.8rem;
  font-size: clamp(2.35rem, 6vw, 5.2rem);
  max-width: 11ch;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 5.8vw, 5.85rem);
  line-height: 0.94;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #fff 0 16%, #8ee5d8 34%, #f1a661 58%, #fff 86%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(142, 229, 216, 0.16));
  animation: chrome-shift 5.8s ease-in-out infinite alternate;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-copy p {
  max-width: 58ch;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.shortcut-links,
.mini-list,
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.button.primary {
  background: #11a497;
  border-color: #11a497;
  color: #fff;
}

.button.secondary {
  background: #ffffff;
  border-color: rgba(12, 17, 22, 0.22);
  color: var(--ink);
}

.hero .button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.motion-toggle[aria-pressed="true"] {
  border-color: rgba(142, 229, 216, 0.78);
  background: rgba(142, 229, 216, 0.18);
}

.motion-toggle[aria-pressed="false"] {
  border-color: rgba(255, 255, 255, 0.2);
  opacity: 0.8;
}

.mini-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(118px, 1fr));
  gap: 0.65rem;
  width: min(560px, 100%);
  margin-top: 1.2rem;
}

.mini-spec {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.mini-spec b {
  display: block;
  color: #fff;
  font-size: 1.25rem;
}

.mini-spec span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.hero-ticker span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 780;
}

.hero-showcase {
  position: relative;
  z-index: 2;
  min-height: clamp(480px, 62vw, 690px);
  perspective: 1100px;
}

.rig-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    linear-gradient(90deg, rgba(15, 118, 110, 0.16), rgba(49, 95, 157, 0.11), rgba(201, 119, 25, 0.12));
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform:
    rotateX(calc(var(--my) * -3.6deg))
    rotateY(calc(var(--mx) * 4.8deg));
  transform-style: preserve-3d;
  transition: transform 120ms ease;
}

.rig-scene::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 18% 82%, rgba(255, 255, 255, 0.06)),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(255, 255, 255, 0.045) 58px 59px),
    repeating-linear-gradient(0deg, transparent 0 58px, rgba(255, 255, 255, 0.035) 58px 59px);
  animation: grid-drift 13s linear infinite;
  pointer-events: none;
}

.rig-scene::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -22%;
  background: conic-gradient(from 140deg, transparent, rgba(142, 229, 216, 0.16), transparent, rgba(241, 166, 97, 0.14), transparent);
  opacity: 0.7;
  animation: rig-spin 24s linear infinite;
  pointer-events: none;
}

.rig-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.78;
}

.rig-layer {
  position: absolute;
  z-index: 5;
  transform-style: preserve-3d;
  will-change: transform;
}

.pc-case {
  width: clamp(210px, 32vw, 285px);
  height: clamp(320px, 45vw, 410px);
  left: 50%;
  top: 52%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.045)),
    linear-gradient(90deg, rgba(142, 229, 216, 0.08), rgba(241, 166, 97, 0.08));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 24px 70px rgba(0, 0, 0, 0.4),
    0 0 58px rgba(142, 229, 216, 0.12);
  overflow: hidden;
  translate: -50% -50%;
}

.pc-case::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(142, 229, 216, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent),
    linear-gradient(160deg, rgba(142, 229, 216, 0.18), transparent 48%, rgba(241, 166, 97, 0.14));
  backdrop-filter: blur(6px);
}

.pc-case::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.16), transparent 54% 100%);
  animation: glass-sweep 5s ease-in-out infinite;
  transform: translateX(-120%);
}

.pc-fan {
  position: absolute;
  z-index: 3;
  left: 50%;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background:
    radial-gradient(circle, #071114 0 13px, transparent 14px),
    conic-gradient(from 0deg, #8ee5d8, #f1a661, #8ba9df, #8ee5d8);
  box-shadow: 0 0 28px rgba(142, 229, 216, 0.24);
  translate: -50% 0;
  animation: fan-spin 1.65s linear infinite;
}

.pc-fan-top {
  top: 48px;
}

.pc-fan-bottom {
  bottom: 46px;
  animation-direction: reverse;
  animation-duration: 2.05s;
}

.pc-gpu {
  position: absolute;
  z-index: 4;
  left: 32px;
  right: 32px;
  top: 45%;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    linear-gradient(90deg, rgba(142, 229, 216, 0.14), rgba(49, 95, 157, 0.14));
  box-shadow: 0 0 28px rgba(49, 95, 157, 0.18);
}

.pc-gpu::before,
.pc-gpu::after {
  content: "";
  position: absolute;
  top: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: conic-gradient(#8ee5d8, #f1a661, #8ba9df, #8ee5d8);
  animation: fan-spin 2.5s linear infinite;
}

.pc-gpu::before {
  left: 22px;
}

.pc-gpu::after {
  left: 78px;
  animation-direction: reverse;
}

.pc-rgb-strip {
  position: absolute;
  z-index: 4;
  top: 38px;
  right: 34px;
  width: 8px;
  height: calc(100% - 76px);
  border-radius: 999px;
  background: linear-gradient(#8ee5d8, #f1a661, #8ba9df, #e89aac, #8ee5d8);
  box-shadow: 0 0 18px rgba(142, 229, 216, 0.42);
  animation: hue-slide 5s linear infinite;
}

.product-card {
  width: clamp(148px, 18vw, 185px);
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.105);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #8ee5d8, #f1a661, #8ba9df);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.22), transparent 52% 100%);
  transform: translateX(-120%);
  animation: card-sweep 4.4s ease-in-out infinite;
  pointer-events: none;
}

.product-card small {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-card strong {
  display: block;
  margin-top: 0.25rem;
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.08;
}

.price {
  display: inline-flex;
  margin-top: 0.65rem;
  border-radius: 999px;
  padding: 0.32rem 0.5rem;
  color: #071114;
  background: linear-gradient(135deg, #8ee5d8, #f1a661);
  font-size: 0.72rem;
  font-weight: 850;
}

.meter {
  height: 6px;
  margin-top: 0.7rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8ee5d8, #f1a661);
  background-size: 180% 100%;
  box-shadow: 0 0 16px rgba(142, 229, 216, 0.34);
  animation: meter-flow 2.4s linear infinite;
}

.card-gpu {
  left: 5%;
  top: 9%;
}

.card-cpu {
  right: 6%;
  top: 16%;
}

.card-monitor {
  left: 6%;
  bottom: 15%;
}

.card-game {
  right: 7%;
  bottom: 9%;
}

.rig-chip {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.48rem 0.68rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
}

.chip-a {
  top: 8%;
  left: 42%;
}

.chip-b {
  top: 49%;
  right: 10%;
}

.chip-c {
  bottom: 8%;
  left: 39%;
}

.rig-line {
  position: absolute;
  z-index: 3;
  height: 1px;
  opacity: 0.72;
  background: linear-gradient(90deg, transparent, rgba(142, 229, 216, 0.2), rgba(142, 229, 216, 0.74), rgba(241, 166, 97, 0.6), transparent);
  background-size: 220% 100%;
  box-shadow: 0 0 16px rgba(142, 229, 216, 0.22);
  transform-origin: left;
  animation: line-flow 2.8s linear infinite;
}

.rig-line-a {
  width: 250px;
  left: 22%;
  top: 27%;
  rotate: 14deg;
}

.rig-line-b {
  width: 290px;
  left: 40%;
  top: 64%;
  rotate: -19deg;
}

.rig-line-c {
  width: 220px;
  left: 18%;
  top: 70%;
  rotate: -31deg;
}

.rig-energy {
  position: absolute;
  z-index: 6;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 22px #8ee5d8, 0 0 34px #f1a661;
  animation: energy-travel 3.8s linear infinite;
}

.rig-energy-a {
  left: 23%;
  top: 26.5%;
}

.rig-energy-b {
  left: 70%;
  top: 63%;
  animation-delay: -2.5s;
}

.setup-deck {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0;
}

.setup-deck .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.62fr);
  gap: 1rem;
  align-items: end;
}

.setup-deck .section-heading p {
  margin: 0;
}

.setup-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.setup-route {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  color: var(--ink);
  text-decoration: none;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(12, 17, 22, 0.06);
  transform-style: preserve-3d;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.setup-route::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--accent);
}

.setup-route:hover {
  border-color: rgba(15, 118, 110, 0.5);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.setup-route span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.setup-route strong {
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.08;
}

.setup-route p {
  margin: 0;
}

.setup-route em {
  align-self: flex-start;
  margin-top: auto;
  border-radius: 999px;
  padding: 0.32rem 0.58rem;
  background: rgba(12, 17, 22, 0.08);
  color: var(--ink);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 820;
}

.setup-route-teal {
  background: linear-gradient(180deg, var(--teal-soft), var(--panel));
}

.setup-route-blue {
  background: linear-gradient(180deg, var(--blue-soft), var(--panel));
}

.setup-route-amber {
  background: linear-gradient(180deg, var(--amber-soft), var(--panel));
}

.setup-route-rose {
  background: linear-gradient(180deg, var(--rose-soft), var(--panel));
}

.setup-route-blue::before {
  background: var(--blue);
}

.setup-route-amber::before {
  background: var(--amber);
}

.setup-route-rose::before {
  background: var(--rose);
}

.gaming-gpu-map {
  padding: 3rem 0 2rem;
}

.gaming-gpu-map .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.62fr);
  gap: 1rem;
  align-items: end;
}

.gaming-gpu-map .section-heading p {
  margin: 0;
  max-width: 58ch;
}

.gpu-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.gpu-tier-grid article {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(15, 118, 110, 0.1), rgba(49, 95, 157, 0.08) 48%, rgba(201, 119, 25, 0.08)),
    var(--panel);
  box-shadow: 0 10px 30px rgba(12, 17, 22, 0.06);
}

.gpu-tier-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blue), var(--amber));
}

.gpu-tier-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.gpu-tier-grid strong {
  display: block;
  margin-top: 0.55rem;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.1;
}

.gpu-tier-grid p {
  margin-bottom: 0;
}

@keyframes rig-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(142, 229, 216, 0.52);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(142, 229, 216, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(142, 229, 216, 0);
  }
}

@keyframes chrome-shift {
  to {
    background-position: 100% 0;
  }
}

@keyframes grid-drift {
  to {
    background-position: 0 0, 58px 0, 0 58px;
  }
}

@keyframes glass-sweep {
  64%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes card-sweep {
  58%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes meter-flow {
  to {
    background-position: 180% 0;
  }
}

@keyframes line-flow {
  to {
    background-position: 220% 0;
  }
}

@keyframes fan-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes hue-slide {
  to {
    filter: hue-rotate(360deg);
  }
}

@keyframes energy-travel {
  0% {
    opacity: 0;
    transform: translateX(0) scale(0.55);
  }
  12%,
  82% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(220px) scale(1.12);
  }
}

.trend-strip,
.weekly-radar,
.friday-listening,
.intro-grid,
.desk-notes,
.setup-deck,
.setup-finder,
.norway-deal-band,
.topic-cluster-band,
.content-intel,
.streaming-band,
.gaming-gpu-map,
.steam-deals,
.game-hub,
.bench-lab,
.guide-section,
.article-shell,
.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.trend-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: -1.35rem;
  padding: 0 0 2rem;
  position: relative;
  z-index: 2;
}

.trend-strip article,
.search-panel,
.setup-finder-tab,
.setup-finder-result,
.content-intel .intel-grid article,
.roadmap-preview article,
.streaming-preview-card,
.streaming-card,
.release-row,
.strategy-principles .intel-grid article,
.roadmap-table article,
.priority-list a,
.answer-card,
.intent-box,
.quick-answer,
.affiliate-box,
.source-section,
.related-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.trend-strip article {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  box-shadow: 0 12px 34px rgba(12, 17, 22, 0.08);
}

.trend-strip span,
.answer-card span,
.quick-answer span,
.guide-card-category,
.article-meta,
.guide-card-meta {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.trend-strip strong {
  display: block;
  margin-top: 0.25rem;
}

.trend-meter {
  display: block;
  width: 100%;
  height: 5px;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) var(--meter), rgba(12, 17, 22, 0.1) var(--meter));
}

.weekly-radar {
  padding: 1rem 0 2.5rem;
}

.weekly-radar-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.62fr);
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.weekly-radar-heading h2 {
  margin-top: 0.2rem;
}

.weekly-radar-heading p {
  max-width: 58ch;
  margin: 0;
}

.weekly-radar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.weekly-radar-card {
  position: relative;
  min-width: 0;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--panel);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(12, 17, 22, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.weekly-radar-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--accent);
}

.weekly-radar-card:hover {
  border-color: rgba(15, 118, 110, 0.5);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.weekly-radar-card > span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.weekly-radar-card strong {
  font-size: 1.28rem;
  line-height: 1.12;
}

.weekly-radar-card p {
  margin: 0;
}

.weekly-radar-card em {
  margin-top: auto;
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 850;
}

.weekly-radar-blue::before { background: var(--blue); }
.weekly-radar-amber::before { background: var(--amber); }
.weekly-radar-rose::before { background: var(--rose); }

.friday-listening {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  margin-bottom: 3rem;
  padding: 2.2rem 0;
  border-block: 1px solid var(--line);
}

.friday-listening-player {
  overflow: hidden;
  border: 1px solid #29353a;
  border-radius: 6px;
  background: #090d0f;
  box-shadow: 0 18px 45px rgba(12, 17, 22, 0.16);
  aspect-ratio: 16 / 9;
}

.friday-listening-player iframe,
.youtube-facade {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-facade { position: relative; overflow: hidden; padding: 0; background: #090d0f; cursor: pointer; }
.youtube-facade img { width: 100%; height: 100%; object-fit: cover; }
.youtube-facade::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.66)); content: ""; }
.youtube-play { position: absolute; z-index: 2; inset: 50% auto auto 50%; width: 68px; height: 48px; border-radius: 8px; background: #ff0033; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32); transform: translate(-50%, -50%); }
.youtube-play::after { position: absolute; top: 14px; left: 28px; width: 0; height: 0; border-block: 10px solid transparent; border-left: 16px solid #fff; content: ""; }
.youtube-facade-label { position: absolute; z-index: 2; right: 1rem; bottom: 0.85rem; color: #fff; font-size: 0.76rem; font-weight: 850; }
.youtube-facade:hover .youtube-play { transform: translate(-50%, -50%) scale(1.06); }
.youtube-facade:focus-visible { outline: 3px solid #fff; outline-offset: -5px; }

.friday-listening-copy h2 { margin: 0.35rem 0 0.8rem; font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.02; }
.friday-listening-copy > p { max-width: 52ch; }
.friday-listening-meta { display: flex; flex-wrap: wrap; gap: 0.55rem 1rem; align-items: center; margin: 1.25rem 0; }
.friday-listening-meta strong { color: #9c3850; }
.friday-listening-meta span { color: var(--muted); font-size: 0.82rem; font-weight: 750; }
.friday-listening-actions { display: flex; flex-wrap: wrap; gap: 0.8rem 1rem; align-items: center; }
.friday-listening-actions > a:not(.button) { color: var(--accent-strong); font-size: 0.84rem; font-weight: 850; }

.ad-slot {
  display: grid;
  width: min(1180px, calc(100% - 2rem));
  min-height: 72px;
  place-items: center;
  margin: 1rem auto 2rem;
  border: 1px dashed #a9b2ae;
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--muted);
  text-align: center;
}

.ad-slot span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 1rem;
  align-items: end;
  padding: 2rem 0;
}

.intro-grid p {
  max-width: 72ch;
}

.search-panel {
  padding: 1rem;
}

.search-panel label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.search-panel input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 0.8rem;
  color: var(--ink);
  font: inherit;
}

.filter-chips {
  margin-top: 0.75rem;
}

.filter-chip {
  cursor: pointer;
  font: inherit;
}

.filter-chip.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.setup-finder {
  padding: 2.25rem 0 1.5rem;
}

.setup-finder .section-heading,
.content-intel .section-heading,
.strategy-principles .section-heading,
.roadmap-full .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.62fr);
  gap: 1rem;
  align-items: end;
}

.setup-finder .section-heading p,
.content-intel .section-heading p {
  max-width: 62ch;
  margin: 0;
}

.setup-finder-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.setup-finder-controls {
  display: grid;
  gap: 0.6rem;
}

.setup-finder-tab {
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: left;
  font: inherit;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.setup-finder-tab span,
.setup-finder-result span,
.content-intel span,
.roadmap-preview span,
.roadmap-table span,
.priority-list span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.setup-finder-tab strong {
  display: block;
  margin-top: 0.25rem;
}

.setup-finder-tab.is-active {
  border-color: rgba(15, 118, 110, 0.5);
  background:
    linear-gradient(135deg, rgba(222, 243, 239, 0.9), rgba(255, 241, 216, 0.82)),
    var(--panel);
  box-shadow: 0 14px 36px rgba(15, 118, 110, 0.12);
}

.setup-finder-result {
  min-height: 100%;
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 18% 12%, rgba(49, 95, 157, 0.16), transparent 28%),
    radial-gradient(circle at 86% 90%, rgba(201, 119, 25, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff, #eef4f2);
  box-shadow: var(--shadow);
}

.setup-finder-result h3 {
  margin-top: 0.45rem;
  font-size: clamp(1.7rem, 4vw, 3rem);
  max-width: 12ch;
}

.setup-finder-result p {
  max-width: 62ch;
  font-size: 1.03rem;
}

.setup-finder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.setup-finder-links a,
.priority-list a {
  text-decoration: none;
}

.setup-finder-links a {
  border: 1px solid rgba(15, 118, 110, 0.24);
  border-radius: 999px;
  padding: 0.52rem 0.72rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-strong);
  font-weight: 800;
}

.desk-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem 0 2rem;
}

.desk-notes article {
  position: relative;
  border: 1px solid rgba(12, 17, 22, 0.1);
  border-radius: var(--radius);
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    var(--panel);
  box-shadow: 0 10px 28px rgba(12, 17, 22, 0.06);
}

.desk-notes article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--accent);
}

.desk-notes article:nth-child(2)::before {
  background: var(--amber);
}

.desk-notes article:nth-child(3)::before {
  background: var(--rose);
}

.desk-notes span,
.bench-tool span,
.game-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.desk-notes strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.12rem;
}

.desk-notes p {
  margin-bottom: 0;
}

.signal-board {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  padding: 3rem max(1rem, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(12, 17, 22, 0.96), rgba(12, 17, 22, 0.9)),
    linear-gradient(90deg, var(--accent), var(--amber));
  color: #fff;
}

.signal-board .eyebrow {
  color: #8ee5d8;
}

.signal-board p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 58ch;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.signal-grid article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.signal-grid span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  font-weight: 780;
}

.signal-grid strong {
  font-size: 1.08rem;
}

.topic-cluster-band {
  padding: 3rem 0 2rem;
}

.topic-cluster-band .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.62fr);
  gap: 1rem;
  align-items: end;
}

.topic-cluster-band .section-heading p {
  max-width: 58ch;
  margin: 0;
}

.topic-cluster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.topic-cluster-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(238, 244, 242, 0.96), rgba(255, 255, 255, 0.92)),
    var(--panel);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(12, 17, 22, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.topic-cluster-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--accent), var(--amber));
}

.topic-cluster-card:hover {
  border-color: rgba(49, 95, 157, 0.5);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.topic-cluster-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.topic-cluster-card strong {
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.1;
}

.topic-cluster-card p {
  margin: 0;
}

.topic-cluster-card em {
  align-self: flex-start;
  margin-top: auto;
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  background: rgba(49, 95, 157, 0.1);
  color: var(--ink);
  font-style: normal;
  font-weight: 850;
}

.content-intel {
  padding: 2.5rem 0;
}

.intel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.content-intel .intel-grid article,
.strategy-principles .intel-grid article {
  min-height: 190px;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 244, 242, 0.9)),
    var(--panel);
  box-shadow: 0 10px 28px rgba(12, 17, 22, 0.06);
}

.content-intel .intel-grid strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.18rem;
}

.roadmap-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.roadmap-preview article {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 1rem;
  background:
    linear-gradient(180deg, #ffffff, rgba(255, 241, 216, 0.68)),
    var(--panel);
}

.roadmap-preview article::before,
.roadmap-table article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--blue), var(--amber));
}

.roadmap-preview strong {
  display: block;
  margin-top: 0.45rem;
}

.streaming-band {
  padding: 3rem 0 2rem;
}

.streaming-band .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.62fr);
  gap: 1rem;
  align-items: end;
}

.streaming-band .section-heading p {
  max-width: 62ch;
  margin: 0;
}

.streaming-preview-grid,
.streaming-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

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

.streaming-preview-card {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(12, 17, 22, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.streaming-preview-card::before,
.streaming-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--rose), var(--amber));
}

.streaming-preview-card:hover,
.streaming-card:hover {
  border-color: rgba(49, 95, 157, 0.5);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.streaming-preview-scifi {
  background:
    radial-gradient(circle at 18% 14%, rgba(49, 95, 157, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff, rgba(230, 238, 249, 0.75)),
    var(--panel);
}

.streaming-preview-family {
  background:
    radial-gradient(circle at 18% 14%, rgba(79, 125, 50, 0.16), transparent 32%),
    linear-gradient(180deg, #ffffff, rgba(231, 241, 223, 0.78)),
    var(--panel);
}

.streaming-preview-dates {
  background:
    radial-gradient(circle at 18% 14%, rgba(201, 119, 25, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff, rgba(255, 241, 216, 0.78)),
    var(--panel);
}

.streaming-preview-seasons {
  background:
    radial-gradient(circle at 18% 14%, rgba(163, 59, 85, 0.16), transparent 32%),
    linear-gradient(180deg, #ffffff, rgba(248, 232, 238, 0.78)),
    var(--panel);
}

.new-season-filters {
  position: sticky;
  z-index: 12;
  top: 69px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 16, 17, 0.95);
  backdrop-filter: blur(14px);
}

.new-season-filter {
  min-height: 38px;
  padding: 0 0.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--ink);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.new-season-filter.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #071111;
}

.new-season-filters > span {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.new-season-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.new-season-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(12, 17, 22, 0.06);
}

.new-season-upcoming { border-top-color: var(--amber); }
.new-season-announced { border-top-color: var(--blue); }
.new-season-streaming { border-top-color: var(--accent); }

.new-season-card[hidden] { display: none; }

.new-season-media {
  position: relative;
  min-width: 0;
  min-height: 100%;
}

.new-season-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  background: #18202b;
}

.new-season-media .media-credit {
  font-size: 0.6rem;
}

.new-season-content {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem;
}

.new-season-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: space-between;
  align-items: center;
}

.new-season-genre {
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
}

.new-season-status {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.new-season-card h2 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.15;
}

.new-season-card h2 em {
  color: var(--accent-strong);
  font-style: normal;
}

.new-season-service {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.new-season-catchup {
  display: grid;
  gap: 0.2rem;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  background: rgba(49, 95, 157, 0.08);
}

.new-season-catchup strong {
  color: var(--blue);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.new-season-card small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.new-season-card footer {
  margin-top: auto;
  padding-top: 0.35rem;
}

.new-season-card footer a {
  color: var(--accent-strong);
  font-weight: 850;
  text-decoration: none;
}

.new-season-empty {
  margin-top: 1.25rem;
  padding: 3rem 1.5rem;
  border: 1px dashed var(--line);
  text-align: center;
  background: var(--panel);
}

.new-season-empty[hidden] { display: none; }

.new-season-empty > span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.new-season-empty h2 { margin: 0.35rem 0; }

.new-season-empty p {
  margin: 0 auto 1rem;
}

.new-season-empty button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  padding: 0 0.9rem;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 850;
  cursor: pointer;
}

.streaming-preview-card span,
.streaming-card-top span,
.release-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.streaming-preview-card strong {
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.12;
}

.streaming-preview-card p {
  margin: 0;
}

.streaming-preview-card em {
  margin-top: auto;
  color: var(--accent-strong);
  font-style: normal;
  font-weight: 850;
}

.streaming-page-hero > div {
  background:
    radial-gradient(circle at 14% 12%, rgba(49, 95, 157, 0.13), transparent 30%),
    radial-gradient(circle at 88% 24%, rgba(163, 59, 85, 0.12), transparent 30%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 242, 0.9)),
    var(--panel);
}

.streaming-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 242, 0.82)),
    var(--panel);
  box-shadow: 0 10px 30px rgba(12, 17, 22, 0.06);
}

.streaming-thumb-link {
  display: block;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(12, 17, 22, 0.08);
}

.streaming-media {
  position: relative;
  margin: -1rem -1rem 0.35rem;
  overflow: hidden;
}

.streaming-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #18202b;
  transition: transform 220ms ease, filter 220ms ease;
}

.streaming-card:hover .streaming-thumb {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}

.media-credit {
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  z-index: 2;
  min-height: auto !important;
  margin: 0 !important;
  border-radius: 3px;
  padding: 0.28rem 0.42rem;
  background: rgba(5, 10, 14, 0.84);
  color: #fff !important;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.media-credit:hover {
  background: var(--accent-strong);
}

.media-rights-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.streaming-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: space-between;
}

.streaming-card-top em,
.release-row em {
  border-radius: 999px;
  padding: 0.32rem 0.55rem;
  background: var(--blue-soft);
  color: var(--blue);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 850;
}

.streaming-card h3 {
  margin-top: 0.35rem;
  font-size: 1.45rem;
}

.streaming-card strong {
  color: var(--accent-strong);
}

.streaming-card p {
  margin: 0;
}

.streaming-card small {
  color: var(--muted);
  font-weight: 700;
}

.streaming-card a,
.release-row a {
  align-self: flex-start;
  margin-top: auto;
  color: var(--accent-strong);
  font-weight: 850;
}

.release-calendar {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}

.release-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.2fr) minmax(100px, 0.2fr) minmax(0, 1fr) minmax(130px, 0.22fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(230, 238, 249, 0.62)),
    var(--panel);
}

.release-thumb {
  width: 100%;
  min-width: 112px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  background: #18202b;
  box-shadow: 0 8px 18px rgba(12, 17, 22, 0.12);
}

.release-media {
  position: relative;
  min-width: 0;
}

.release-media .media-credit {
  right: 0.3rem;
  bottom: 0.3rem;
  font-size: 0.58rem;
}

.release-row time {
  color: var(--accent-strong);
  font-weight: 900;
}

.release-row h3 {
  margin-top: 0.15rem;
}

.release-row p {
  margin: 0.25rem 0 0;
}

.rights-note {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.norway-deal-band {
  padding: 3rem 0 2rem;
}

.norway-deal-band .section-heading,
.deal-category-heading,
.deal-jump-panel,
.alert-layout,
.deal-rule-board {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.62fr);
  gap: 1rem;
  align-items: start;
}

.norway-deal-band .section-heading p,
.deal-category-heading p {
  max-width: 60ch;
  margin: 0;
}

.deal-preview-grid,
.deal-pick-grid,
.alert-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.deal-preview-card,
.deal-pick,
.alert-benefit-grid article,
.alert-signup,
.deal-jump-panel,
.deal-rule-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(12, 17, 22, 0.06);
}

.deal-preview-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.deal-preview-card::before,
.deal-pick::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--amber), var(--blue));
}

.deal-preview-card:hover,
.deal-pick:hover {
  border-color: rgba(15, 118, 110, 0.5);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.deal-preview-card span,
.deal-pick-top span,
.alert-benefit-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.deal-preview-card strong {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.12;
}

.deal-preview-card p {
  margin: 0;
}

.deal-preview-card em {
  align-self: flex-start;
  margin-top: auto;
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  background: var(--amber-soft);
  color: var(--ink);
  font-style: normal;
  font-weight: 850;
}

.deal-jump-panel,
.deal-rule-board {
  margin: 1rem 0;
  padding: 1.2rem;
}

.deal-jump-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.deal-jump-grid a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  background: var(--panel-strong);
  color: var(--accent-strong);
  font-weight: 820;
  text-decoration: none;
}

.deal-category {
  padding: 2.4rem 0 0.8rem;
}

.deal-category-heading {
  align-items: end;
  margin-bottom: 1rem;
}

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

.deal-pick {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow: hidden;
  padding: 1rem;
}

.deal-pick-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.deal-pick-top strong {
  color: var(--accent-strong);
  text-align: right;
  white-space: normal;
}

.deal-pick h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.1;
}

.deal-pick p,
.deal-pick small {
  margin: 0;
}

.deal-pick small {
  color: var(--muted);
}

.deal-pick-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(12, 17, 22, 0.08);
}

.deal-pick-meta span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.deal-pick-meta a {
  color: var(--accent-strong);
  font-weight: 850;
}

.deal-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.deal-link-row a {
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  background: rgba(222, 243, 239, 0.72);
  font-size: 0.82rem;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.deal-link-row a:hover {
  border-color: var(--accent);
  background: #fff;
  transform: translateY(-1px);
}

.alerts-page-hero h1,
.deals-page-hero h1 {
  max-width: 12ch;
}

.alert-layout {
  margin-top: 1rem;
  align-items: stretch;
}

.alert-copy,
.alert-signup {
  min-width: 0;
}

.alert-copy p {
  max-width: 62ch;
}

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

.alert-benefit-grid article,
.alert-signup {
  padding: 1rem;
}

.alert-benefit-grid p {
  margin: 0.35rem 0 0;
}

.alert-signup {
  display: grid;
  gap: 0.85rem;
}

.alert-signup label span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-weight: 850;
}

.alert-signup input[type="email"],
.alert-signup select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 0.8rem;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.alert-options {
  display: grid;
  gap: 0.45rem;
}

.alert-options label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 0.55rem;
  align-items: center;
  border: 1px solid rgba(12, 17, 22, 0.08);
  border-radius: var(--radius);
  padding: 0.6rem;
  background: var(--panel-strong);
}

.alert-options label span {
  margin: 0;
  font-size: 0.92rem;
}

.alert-status {
  margin: 0;
  font-size: 0.9rem;
}

.alert-status.is-saved {
  color: var(--accent-strong);
  font-weight: 800;
}

.steam-deals {
  padding: 3rem 0 2rem;
}

.steam-trending {
  padding: 3rem 0 1rem;
}

.steam-trending .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.62fr);
  gap: 1rem;
  align-items: end;
}

.steam-trending .section-heading p {
  max-width: 58ch;
  margin: 0;
}

.steam-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin: 0 0 1rem;
}

.steam-filter {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.48rem 0.78rem;
  background: var(--panel);
  color: var(--ink);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 820;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.steam-filter:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.steam-filter.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.steam-filter-result {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 780;
}

.steam-trending-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.steam-trending-card {
  position: relative;
  min-width: 0;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95rem;
  background: var(--panel);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(12, 17, 22, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.steam-trending-image {
  display: block;
  width: calc(100% + 1.9rem);
  max-width: none;
  aspect-ratio: 460 / 215;
  margin: -0.95rem -0.95rem 0.2rem;
  border-bottom: 1px solid rgba(12, 17, 22, 0.08);
  object-fit: cover;
  background: #18202b;
}

.steam-trending-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--accent);
}

.steam-trending-card:hover {
  border-color: rgba(15, 118, 110, 0.5);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.steam-trending-card[hidden] {
  display: none;
}

.steam-trending-topline {
  display: flex;
  justify-content: space-between;
  gap: 0.55rem;
  align-items: flex-start;
}

.steam-trending-topline span,
.steam-trending-card em {
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 860;
  text-transform: uppercase;
}

.steam-trending-topline small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  text-align: right;
}

.steam-trending-card strong {
  font-size: 1.2rem;
  line-height: 1.08;
}

.steam-trending-card p {
  margin: 0;
  font-size: 0.88rem;
}

.steam-card-link {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 850;
}

.steam-trending-card-blue::before { background: var(--blue); }
.steam-trending-card-green::before { background: var(--green); }
.steam-trending-card-amber::before { background: var(--amber); }
.steam-trending-card-rose::before { background: var(--rose); }

.steam-deals .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.62fr);
  gap: 1rem;
  align-items: end;
}

.steam-deals .section-heading p {
  max-width: 58ch;
  margin: 0;
}

.steam-sale-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.steam-sale-card {
  position: relative;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(15, 118, 110, 0.09), rgba(255, 255, 255, 0.9) 48%, rgba(201, 119, 25, 0.12)),
    var(--panel);
  box-shadow: 0 10px 30px rgba(12, 17, 22, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.steam-sale-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--amber));
}

.steam-sale-card:hover {
  border-color: rgba(201, 119, 25, 0.54);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.sale-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.sale-topline span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.sale-topline small {
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 860;
  white-space: nowrap;
}

.steam-sale-card strong {
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.08;
}

.steam-sale-card p {
  margin: 0;
}

.sale-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
}

.sale-card-footer em,
.sale-card-footer span {
  border-radius: 999px;
  padding: 0.26rem 0.5rem;
  background: rgba(12, 17, 22, 0.08);
  color: var(--ink);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 820;
}

.sale-caution {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.steam-sale-card-blue {
  background: linear-gradient(180deg, var(--blue-soft), var(--panel));
}

.steam-sale-card-blue::before {
  background: var(--blue);
}

.steam-sale-card-amber {
  background: linear-gradient(180deg, var(--amber-soft), var(--panel));
}

.steam-sale-card-amber::before {
  background: var(--amber);
}

.steam-sale-card-green {
  background: linear-gradient(180deg, var(--green-soft), var(--panel));
}

.steam-sale-card-green::before {
  background: var(--green);
}

.steam-sale-card-rose {
  background: linear-gradient(180deg, var(--rose-soft), var(--panel));
}

.steam-sale-card-rose::before {
  background: var(--rose);
}

.steam-sale-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.game-hub {
  padding: 3rem 0 2rem;
}

.game-hub .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(280px, 0.64fr);
  gap: 1rem;
  align-items: end;
}

.game-hub .section-heading p {
  max-width: 58ch;
  margin: 0;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.game-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  text-decoration: none;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(12, 17, 22, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--accent);
}

.game-card:hover {
  border-color: rgba(49, 95, 157, 0.5);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.game-card strong {
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.08;
}

.game-card p {
  margin: 0;
}

.game-card em {
  align-self: flex-start;
  margin-top: auto;
  border-radius: 999px;
  padding: 0.32rem 0.58rem;
  background: rgba(12, 17, 22, 0.08);
  color: var(--ink);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 820;
}

.game-card-green {
  background: linear-gradient(180deg, var(--green-soft), var(--panel));
}

.game-card-green::before {
  background: var(--green);
}

.game-card-teal {
  background: linear-gradient(180deg, var(--teal-soft), var(--panel));
}

.game-card-teal::before {
  background: var(--accent);
}

.game-card-amber {
  background: linear-gradient(180deg, var(--amber-soft), var(--panel));
}

.game-card-amber::before {
  background: var(--amber);
}

.game-card-blue {
  background: linear-gradient(180deg, var(--blue-soft), var(--panel));
}

.game-card-blue::before {
  background: var(--blue);
}

.game-card-rose {
  background: linear-gradient(180deg, var(--rose-soft), var(--panel));
}

.game-card-rose::before {
  background: var(--rose);
}

.editorial-note {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  margin-top: 1rem;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: var(--radius);
  padding: 1rem;
  background:
    linear-gradient(90deg, rgba(222, 243, 239, 0.78), rgba(255, 241, 216, 0.55)),
    var(--panel);
  box-shadow: 0 10px 28px rgba(12, 17, 22, 0.05);
}

.editorial-note strong {
  color: var(--ink);
  font-size: 1rem;
}

.editorial-note p {
  margin: 0;
  max-width: 82ch;
}

.article-review-strip { display: flex; flex-wrap: wrap; gap: 0.45rem 1rem; margin-top: 0.8rem; padding-top: 0.75rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.76rem; }
.article-review-strip strong { color: var(--ink); }
.article-review-strip a { color: var(--accent-strong); font-weight: 800; }

.bench-lab {
  padding: 3rem 0 2rem;
}

.bench-lab .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.6fr);
  gap: 1rem;
  align-items: end;
}

.bench-lab .section-heading p {
  margin: 0;
  max-width: 52ch;
}

.bench-tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.bench-tool {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  text-decoration: none;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(12, 17, 22, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.bench-tool:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.bench-tool strong {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.1;
}

.bench-tool p {
  margin: auto 0 0;
}

.bench-tool::after {
  content: "Open tool";
  align-self: flex-start;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(12, 17, 22, 0.08);
}

.bench-tool-teal {
  background: linear-gradient(180deg, var(--teal-soft), var(--panel));
}

.bench-tool-copper,
.bench-tool-amber {
  background: linear-gradient(180deg, var(--amber-soft), var(--panel));
}

.bench-tool-rose {
  background: linear-gradient(180deg, var(--rose-soft), var(--panel));
}

.bench-tool-blue {
  background: linear-gradient(180deg, var(--blue-soft), var(--panel));
}

.bench-tool-green {
  background: linear-gradient(180deg, var(--green-soft), var(--panel));
}

.guide-section {
  padding: 2rem 0;
}

.section-heading {
  margin-bottom: 1rem;
}

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

.guide-card {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(15, 118, 110, 0.12), rgba(49, 95, 157, 0.08) 52%, rgba(201, 119, 25, 0.09)),
    var(--panel);
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.guide-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blue), var(--amber));
}

.guide-card[hidden] {
  display: none;
}

.guide-card a {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.1rem;
  text-decoration: none;
}

.guide-card:hover {
  border-color: rgba(15, 118, 110, 0.5);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.guide-card p {
  margin: 0;
}

.guide-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  justify-content: space-between;
}

.guide-card-cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.25rem;
  color: var(--accent-strong);
  font-size: 0.92rem;
}

.guide-card-cta::after {
  content: ">";
  padding-left: 0.35rem;
}

.article-shell {
  padding: 2rem 0 4rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  font-weight: 800;
  color: var(--accent-strong);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 1rem;
  align-items: stretch;
}

.article-hero > div {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 242, 0.9)),
    var(--panel);
}

.theme-gaming .article-hero > div {
  background:
    linear-gradient(140deg, rgba(17, 27, 28, 0.98), rgba(14, 23, 24, 0.94)),
    var(--panel);
}

.article-hero h1 {
  max-width: 14ch;
  font-size: clamp(2rem, 5vw, 4.5rem);
}

.article-hero p {
  max-width: 66ch;
}

.article-hero img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.article-hero-media img {
  display: block;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quick-answer {
  margin-top: 1rem;
  padding: 1.2rem;
  border-left: 5px solid var(--accent);
}

.quick-answer p {
  margin: 0.35rem 0 0;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 760;
}

.proof-note {
  margin-top: 0.85rem;
  padding: 1rem 1.2rem;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
}

.proof-note span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.proof-note p {
  margin: 0.35rem 0 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 560;
}

.article-evidence {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.6fr);
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.article-evidence-copy {
  padding: 0.35rem;
}

.article-evidence h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
}

.article-evidence p {
  margin-bottom: 0;
  color: var(--muted);
}

.article-evidence figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #111;
}

.article-evidence img {
  display: block;
  width: 100%;
  height: auto;
}

.deal-category-checked {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.settings-quick-links {
  margin: 1rem 0 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--accent) 5%, var(--surface));
  border: 1px solid var(--line);
}

.settings-quick-links .deal-jump-grid {
  margin-top: 0.75rem;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.answer-card {
  padding: 1rem;
}

.answer-card strong {
  display: block;
  margin: 0.35rem 0;
}

.answer-card p {
  margin: 0;
  font-size: 0.94rem;
}

.intent-box,
.affiliate-box,
.source-section,
.related-section {
  margin: 1rem 0;
  padding: 1.2rem;
}

.keyword-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.keyword-pills span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  background: var(--panel-strong);
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 750;
}

.strategy-page-hero > div {
  background:
    radial-gradient(circle at 10% 15%, rgba(15, 118, 110, 0.13), transparent 32%),
    radial-gradient(circle at 86% 28%, rgba(201, 119, 25, 0.14), transparent 30%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 242, 0.9)),
    var(--panel);
}

.strategy-principles,
.roadmap-full {
  margin: 1.25rem 0;
}

.roadmap-table {
  display: grid;
  gap: 0.75rem;
}

.roadmap-table article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr) minmax(120px, 0.24fr);
  gap: 0.9rem;
  align-items: start;
  overflow: hidden;
  padding: 1rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(230, 238, 249, 0.58)),
    var(--panel);
}

.roadmap-table strong,
.roadmap-table em,
.roadmap-table small {
  display: block;
}

.roadmap-table em {
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  background: var(--blue-soft);
  color: var(--blue);
  font-style: normal;
  font-weight: 850;
  text-align: center;
}

.roadmap-table small {
  grid-column: 2 / 4;
  color: var(--muted);
  font-weight: 700;
}

.priority-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.priority-list a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.priority-list a:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(12, 17, 22, 0.08);
  transform: translateY(-2px);
}

.priority-list span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.76rem;
}

.priority-list strong {
  line-height: 1.12;
}

.priority-list em {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 850;
}

.lesson-plan {
  margin: 1.25rem 0;
  border: 1px solid rgba(12, 17, 22, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(231, 241, 223, 0.86), rgba(222, 243, 239, 0.72)),
    var(--panel);
  box-shadow: 0 16px 45px rgba(12, 17, 22, 0.08);
}

.lesson-plan-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 260px);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(12, 17, 22, 0.1);
  background: rgba(255, 255, 255, 0.62);
}

.lesson-plan-top span,
.lesson-day-heading span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.lesson-plan-top strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.18rem;
}

.lesson-progress {
  display: grid;
  gap: 0.45rem;
}

.lesson-progress-count {
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 850;
}

.lesson-progress-bar {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(12, 17, 22, 0.1);
}

.lesson-progress-bar i {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--accent), var(--amber));
  transition: width 220ms ease;
}

.lesson-tabs {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.75rem;
}

.lesson-day-tab {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  justify-content: flex-start;
  border: 1px solid rgba(12, 17, 22, 0.12);
  border-radius: var(--radius);
  padding: 0.7rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  text-align: left;
  font: inherit;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.lesson-day-tab:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.lesson-day-tab.is-active {
  border-color: var(--accent);
  background: #10201d;
  color: #fff;
}

.lesson-day-tab span {
  color: inherit;
  opacity: 0.72;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.lesson-day-tab strong {
  line-height: 1.12;
}

.lesson-panels {
  padding: 0 1rem 1rem;
}

.lesson-day-panel {
  border: 1px solid rgba(12, 17, 22, 0.12);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.78);
}

.lesson-day-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: start;
}

.lesson-day-heading h3 {
  margin-top: 0.2rem;
}

.lesson-day-heading label {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  background: #fff;
  color: var(--accent-strong);
  font-weight: 850;
  white-space: nowrap;
}

.lesson-check {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.lesson-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.lesson-detail-grid div {
  border: 1px solid rgba(12, 17, 22, 0.1);
  border-radius: var(--radius);
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.72);
}

.lesson-detail-grid h4 {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
}

.lesson-detail-grid p {
  margin: 0;
  font-size: 0.94rem;
}

.lesson-steps {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.25rem;
}

.command-groups {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0;
}

.command-group {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid rgba(12, 17, 22, 0.12);
  border-radius: var(--radius);
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(230, 238, 249, 0.8), rgba(255, 241, 216, 0.58)),
    var(--panel);
}

.command-group span {
  display: inline-flex;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.command-group h3 {
  margin-top: 0.3rem;
}

.command-group p {
  margin-bottom: 0;
}

.command-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.command-card {
  display: grid;
  gap: 0.45rem;
  border: 1px solid rgba(12, 17, 22, 0.12);
  border-radius: var(--radius);
  padding: 0.85rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  text-align: left;
  font: inherit;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.command-card:hover,
.command-card.is-copied {
  border-color: var(--accent);
  background: #fff;
  transform: translateY(-1px);
}

.command-card code {
  overflow-x: auto;
  border-radius: 6px;
  padding: 0.45rem 0.55rem;
  background: #101820;
  color: #eaf5f3;
  font: 0.9rem/1.35 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  white-space: nowrap;
}

.command-card p {
  margin: 0;
  font-size: 0.92rem;
}

.article-section {
  padding: 2rem 0 1rem;
  border-bottom: 1px solid var(--line);
}

.article-section p,
.source-section p,
.affiliate-box p {
  max-width: 78ch;
}

.table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.code-block {
  overflow-x: auto;
  margin: 1rem 0;
  border: 1px solid rgba(12, 17, 22, 0.14);
  border-radius: var(--radius);
  padding: 1rem;
  background: #101820;
  color: #eaf5f3;
  font: 0.94rem/1.55 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

.code-block code {
  white-space: pre;
}

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

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

th {
  background: var(--panel-strong);
  color: var(--ink);
  font-size: 0.88rem;
}

tr:last-child td {
  border-bottom: 0;
}

.check-list {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.2rem;
}

.faq-section {
  padding: 2rem 0 1rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

details + details {
  margin-top: 0.6rem;
}

summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.8rem 1rem;
  font-weight: 850;
  list-style: none;
}

summary::after {
  content: "+";
  margin-left: auto;
  color: var(--accent-strong);
  font-size: 1.35rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.source-section ul {
  margin: 0;
  padding-left: 1.1rem;
}

.source-section a {
  color: var(--accent-strong);
  font-weight: 760;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 1rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 68ch;
  margin-bottom: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  min-width: 0;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.header-utility {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
}

.live-viewers {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  min-height: 34px;
  padding: 0.35rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.live-viewers[hidden] {
  display: none;
}

.live-viewers i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.13);
}

.live-viewers strong {
  color: var(--ink);
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .article-hero,
  .article-evidence,
  .intro-grid,
  .site-footer,
  .signal-board,
  .weekly-radar-heading,
  .friday-listening,
  .setup-finder .section-heading,
  .setup-finder-shell,
  .content-intel .section-heading,
  .streaming-band .section-heading,
  .release-row,
  .strategy-principles .section-heading,
  .roadmap-full .section-heading,
  .roadmap-table article,
  .setup-deck .section-heading,
  .topic-cluster-band .section-heading,
  .norway-deal-band .section-heading,
  .deal-category-heading,
  .deal-jump-panel,
  .alert-layout,
  .deal-rule-board,
  .gaming-gpu-map .section-heading,
  .steam-trending .section-heading,
  .steam-deals .section-heading,
  .game-hub .section-heading,
  .lesson-plan-top,
  .lesson-detail-grid,
  .command-group,
  .bench-lab .section-heading {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero-showcase {
    min-height: 580px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .trend-strip,
  .weekly-radar-grid,
  .desk-notes,
  .setup-route-grid,
  .intel-grid,
  .roadmap-preview,
  .streaming-preview-grid,
  .streaming-grid,
  .new-season-grid,
  .priority-list,
  .topic-cluster-grid,
  .deal-preview-grid,
    .gpu-tier-grid,
    .steam-trending-grid,
    .steam-sale-grid,
  .deal-pick-grid,
  .guide-grid,
  .answer-grid,
  .signal-grid,
  .game-grid,
  .lesson-tabs,
  .command-list,
  .bench-tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-note {
    grid-template-columns: 1fr;
  }

  .roadmap-table small {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    flex-direction: column;
    gap: 0.8rem;
  }

  .brand {
    width: 100%;
  }

  .site-nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-nav a {
    min-height: 36px;
    padding: 0.5rem 0.35rem;
    font-size: 0.76rem;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 1.5rem;
  }

  .hero-showcase {
    min-height: 520px;
  }

  .mini-specs {
    grid-template-columns: 1fr;
  }

  .product-card {
    width: 142px;
  }

  .card-gpu {
    left: 4%;
    top: 7%;
  }

  .card-cpu {
    right: 4%;
    top: 14%;
  }

  .card-monitor {
    left: 4%;
    bottom: 13%;
  }

  .card-game {
    right: 4%;
    bottom: 7%;
  }

  .rig-chip {
    display: none;
  }

  h1,
  .article-hero h1 {
    max-width: none;
    font-size: 2.45rem;
  }

  .trend-strip,
  .weekly-radar-grid,
  .desk-notes,
  .setup-route-grid,
  .intel-grid,
  .roadmap-preview,
  .streaming-preview-grid,
  .streaming-grid,
  .new-season-grid,
  .priority-list,
  .topic-cluster-grid,
  .deal-preview-grid,
    .gpu-tier-grid,
    .steam-trending-grid,
    .steam-sale-grid,
  .deal-pick-grid,
  .alert-benefit-grid,
  .guide-grid,
  .answer-grid,
  .signal-grid,
  .game-grid,
  .lesson-tabs,
  .command-list,
  .bench-tool-grid {
    grid-template-columns: 1fr;
  }

  .lesson-day-heading {
    grid-template-columns: 1fr;
  }

  .steam-filter-result {
    width: 100%;
    margin-left: 0;
  }

  .article-hero img {
    min-height: 240px;
  }

  .site-footer,
  .footer-links {
    justify-content: flex-start;
  }

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

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

@media (prefers-reduced-motion: no-preference) {
  .hero {
    animation: hero-focus 900ms ease both;
  }

  .guide-card,
  .trend-strip article,
  .setup-route,
  .signal-grid article,
  .steam-sale-card {
    animation: rise-in 540ms ease both;
  }

  .guide-card:nth-child(2n),
  .signal-grid article:nth-child(2) {
    animation-delay: 70ms;
  }

  .guide-card:nth-child(3n),
  .signal-grid article:nth-child(3) {
    animation-delay: 120ms;
  }

  @keyframes hero-focus {
    from {
      opacity: 0.96;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes rise-in {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Return-visit utilities: countdowns, calendar links, weekly digest, live Steam table, bandwidth tool */
.countdown-chip {
  display: inline-flex;
  align-items: center;
  margin: 0.15rem 0 0;
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.calendar-link,
.new-season-card footer .calendar-link,
.calendar-row-actions .calendar-link {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.calendar-link:hover {
  color: var(--accent-strong);
}

.calendar-row-actions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}

.news-week-link {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.steam-live-table-wrap {
  margin: 0 0 1.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--panel);
}

.steam-live-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.steam-live-table th,
.steam-live-table td {
  padding: 0.55rem 0.45rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.steam-move {
  display: inline-flex;
  min-width: 2rem;
  justify-content: center;
  font-weight: 900;
}

.steam-move-up { color: #1f8f4d; }
.steam-move-down { color: #c0392b; }
.steam-move-new { color: var(--accent-strong); font-size: 0.72rem; }
.steam-move-same { color: var(--muted); }

.this-week-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.this-week-panel {
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--panel);
}

.this-week-list {
  display: grid;
  gap: 0.75rem;
}

.this-week-list article {
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
}

.this-week-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.bandwidth-calculator {
  display: grid;
  gap: 1rem;
}

.bandwidth-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.bandwidth-controls label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.bandwidth-controls input,
.bandwidth-controls select {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  background: var(--panel);
  color: inherit;
}

.bandwidth-result {
  padding: 1rem;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--accent) 6%, var(--panel));
}

.bandwidth-standards {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.bandwidth-standards li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--line);
  background: var(--panel);
}

.bandwidth-standards li.is-ok span { color: #1f8f4d; font-weight: 800; }
.bandwidth-standards li.is-no span { color: #c0392b; font-weight: 800; }

.bandwidth-note,
.free-game-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .this-week-grid,
  .bandwidth-controls {
    grid-template-columns: 1fr;
  }

  .steam-live-table-wrap {
    overflow-x: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.rig-motion-enabled) *,
  body:not(.rig-motion-enabled) *::before,
  body:not(.rig-motion-enabled) *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Sparklines, premiere timeline, compare tool, PSU calculator */
.hardware-component-overview {
  padding: clamp(2.5rem, 6vw, 5rem) var(--page-gutter);
  border-bottom: 1px solid var(--line);
}

.hardware-component-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 1.5rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hardware-component-grid article {
  min-width: 0;
  padding: 1.35rem;
  background: var(--surface);
}

.hardware-component-grid article > span {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hardware-component-grid h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
}

.hardware-component-grid p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.hardware-component-grid strong {
  display: block;
  color: var(--text);
  font-size: 0.82rem;
}

.hardware-build-ladder {
  padding: clamp(2.5rem, 6vw, 5rem) var(--page-gutter);
  border-bottom: 1px solid var(--line);
}

.build-budget-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.build-budget-links a {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: var(--surface);
  color: inherit;
  text-decoration: none;
}

.build-budget-links a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.build-budget-links span,
.build-budget-links strong {
  display: block;
}

.build-budget-links span {
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.build-budget-links strong {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  line-height: 1.35;
}

.gaming-build-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 1.5rem 0;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.gaming-build-rules div {
  padding: 1rem;
  background: var(--surface);
}

.gaming-build-rules strong,
.gaming-build-rules span {
  display: block;
}

.gaming-build-rules strong {
  color: var(--accent-strong);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.gaming-build-rules span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.gaming-build-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.gaming-build-filters button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  background: var(--surface);
  color: var(--muted);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.gaming-build-filters button.is-active {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  color: var(--accent-strong);
}

.gaming-build-filters > span {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.gaming-build-list {
  display: grid;
  gap: 1rem;
}

.gaming-build-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.gaming-build-card > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.gaming-build-card > header span,
.gaming-build-card > header small {
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gaming-build-card h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.gaming-build-card header p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.gaming-build-pair {
  flex: 0 0 min(34%, 320px);
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
}

.gaming-build-pair strong,
.gaming-build-pair span,
.gaming-build-pair small {
  display: block;
}

.gaming-build-pair strong {
  margin: 0.25rem 0;
}

.gaming-build-budget-note {
  margin: 0;
  padding: 0.85rem 1.35rem;
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
  color: var(--text);
  font-weight: 700;
}

.gaming-build-live-prices {
  display: flex;
  align-items: stretch;
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.gaming-build-live-prices > span,
.gaming-build-live-prices a {
  padding: 0.75rem 0.9rem;
  background: var(--surface);
}

.gaming-build-live-prices > span {
  display: grid;
  place-items: center start;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gaming-build-live-prices a {
  display: grid;
  flex: 1 1 0;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.gaming-build-live-prices a:hover strong {
  color: var(--accent-strong);
}

.gaming-build-live-prices strong,
.gaming-build-live-prices em {
  overflow-wrap: anywhere;
}

.gaming-build-live-prices em {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
}

.gaming-build-table-wrap {
  overflow-x: auto;
}

.gaming-build-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.gaming-build-table th,
.gaming-build-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.gaming-build-table thead th {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.gaming-build-table tbody th {
  width: 10%;
  color: var(--accent-strong);
}

.gaming-build-table td:nth-child(2) {
  width: 27%;
}

.gaming-build-table td:nth-child(4) {
  white-space: nowrap;
}

.gaming-build-card > footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem 1.35rem;
}

.gaming-build-card > footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.gaming-build-card > footer strong {
  color: var(--text);
}

.gaming-build-method {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.gaming-build-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.sparkline {
  display: block;
  color: var(--accent-strong);
}

.sparkline-pending {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.premiere-timeline-wrap {
  margin: 1.5rem 0 2rem;
}

.premiere-timeline {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 0.5rem 0 1rem;
}

.timeline-month {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: min(88vw, 420px);
}

.timeline-month-label {
  margin: 0 0 0.75rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.timeline-month-events {
  display: grid;
  gap: 0.75rem;
}

.timeline-event {
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.timeline-event.is-today {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent);
}

.timeline-event time {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.timeline-event-category {
  display: inline-flex;
  margin: 0.35rem 0 0;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.timeline-event h3 {
  margin: 0.35rem 0 0;
  font-size: 1rem;
}

.timeline-event p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.timeline-event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.compare-tool,
.psu-calculator {
  margin: 1.25rem 0 0;
}

.compare-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.compare-tab {
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.compare-tab.is-active {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent-strong);
}

.compare-selectors,
.psu-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.compare-selectors label,
.psu-controls label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.compare-selectors select,
.psu-controls select,
.psu-controls input {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  background: var(--surface);
  color: inherit;
  font: inherit;
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.compare-table th[scope="row"] {
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.compare-cell {
  display: grid;
  gap: 0.35rem;
}

.compare-bar {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--line) 55%, transparent);
  overflow: hidden;
}

.compare-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 70%, transparent), var(--accent-strong));
}

.compare-note,
.psu-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.psu-result {
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.psu-load,
.psu-recommend {
  margin: 0 0 0.5rem;
}

.psu-breakdown {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.psu-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
}

.psu-breakdown strong {
  color: var(--muted);
}

.psu-sources {
  margin-top: 1.25rem;
}

.psu-sources ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.tool-cross-links {
  margin-top: 1.5rem;
}

.tool-cross-links > span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

  .gaming-build-card > header,
  .gaming-build-card > footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gaming-build-pair {
    padding: 0.75rem 0 0;
    border-top: 3px solid var(--accent);
    border-left: 0;
  }

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

  .compare-selectors,
  .psu-controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .gaming-build-live-prices {
    display: grid;
  }

  .build-budget-links,
  .gaming-build-rules {
    grid-template-columns: 1fr;
  }

  .gaming-build-filters > span {
    width: 100%;
    margin-left: 0;
  }

  .hardware-component-grid {
    grid-template-columns: 1fr;
  }
}

/* AI Workbench */
.theme-ai .brand-mark {
  background: linear-gradient(145deg, #6d28d9, #2563eb);
}

.ai-hub-hero,
.ai-main .section-hub-hero {
  width: min(100% - 2rem, 1180px);
  margin: 1.5rem auto 0;
}

.ai-start-grid,
.ai-tool-catalog,
.ai-hub-panels {
  width: min(100% - 2rem, 1180px);
  margin: 2rem auto 0;
}

.ai-tool-category {
  margin-top: 1.5rem;
}

.ai-tool-category h3 {
  margin: 0 0 0.75rem;
}

.ai-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.ai-tool-card {
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: var(--panel);
}

.ai-tool-card-head span {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ai-tool-card h3 {
  margin: 0.35rem 0 0;
  font-size: 1rem;
}

.ai-tool-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.ai-hub-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.ai-hub-panel,
.ai-news-main .news-hero {
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  background: var(--panel);
}

.ai-scatter-wrap,
.ai-value-chart-wrap {
  margin: 1rem 0 1.25rem;
}

.ai-scatter,
.ai-value-chart {
  width: 100%;
  height: auto;
  color: var(--accent-strong);
}

.ai-scatter-axis {
  stroke: color-mix(in srgb, var(--line) 85%, transparent);
  stroke-width: 1;
}

.ai-scatter text {
  fill: var(--muted);
  font-size: 11px;
}

.ai-scatter-point circle {
  fill: currentColor;
}

.ai-value-chart text {
  fill: var(--ink);
  font-size: 11px;
}

.ai-value-bar-row rect {
  fill: color-mix(in srgb, var(--accent) 72%, white);
}

.ai-value-bar-row text:last-child {
  fill: var(--accent-strong);
  font-weight: 800;
}

.ai-scatter-wrap figcaption,
.ai-value-chart-wrap figcaption {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.ai-model-provider {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
}

.ai-models-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.ai-models-table th,
.ai-models-table td {
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.ai-models-table td:nth-child(3),
.ai-models-table td:nth-child(4) {
  font-weight: 800;
  color: var(--accent-strong);
}

@media (max-width: 900px) {
  .ai-tool-grid,
  .ai-hub-panels {
    grid-template-columns: 1fr;
  }

  .ai-scatter-wrap,
  .ai-value-chart-wrap {
    overflow-x: auto;
  }
}
