:root {
  color-scheme: dark;
  --night: #24103f;
  --deep: #1448a5;
  --track: #2a1450;
  --panel: rgba(255, 250, 217, 0.92);
  --panel-solid: #fff2a8;
  --panel-2: #ff77bd;
  --text: #fff8de;
  --soft: #fff0b8;
  --muted: #5a3b72;
  --ink: #221133;
  --sand: #ffe55c;
  --sun: #ff9f2f;
  --cyan: #18f3ff;
  --hot: #ff4aa0;
  --green: #79ff6b;
  --lilac: #9c72ff;
  --line: rgba(34, 17, 51, 0.18);
  --line-bright: rgba(24, 243, 255, 0.58);
  --shadow: 0 30px 90px rgba(36, 16, 63, 0.32);
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #7ef4ff 0%, #8df3d6 22%, #ffe56d 48%, #ffb365 70%, #8b4fd1 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='280' viewBox='0 0 520 280'%3E%3Cpath d='M-40 170 C 60 78 145 245 260 148 S 460 132 570 72' fill='none' stroke='%23ffffff' stroke-opacity='.22' stroke-width='18' stroke-linecap='round'/%3E%3Cpath d='M-30 225 C 90 128 180 294 310 202 S 480 176 550 128' fill='none' stroke='%23ff4aa0' stroke-opacity='.16' stroke-width='10' stroke-linecap='round'/%3E%3Cpath d='M-60 105 C 70 42 142 164 248 92 S 430 34 568 104' fill='none' stroke='%2318f3ff' stroke-opacity='.18' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E") 50% 0 / 520px 280px repeat,
    radial-gradient(circle, rgba(255, 255, 255, 0.26) 0 2px, transparent 3px) 0 0 / 88px 88px,
    radial-gradient(circle, rgba(34, 17, 51, 0.16) 0 2px, transparent 3px) 44px 34px / 118px 118px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 30%, rgba(36, 16, 63, 0.42) 100%);
  pointer-events: none;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.scroll-meter {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hot), var(--sand), var(--cyan), var(--green));
  box-shadow: 0 0 22px rgba(25, 240, 226, 0.75);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(255, 238, 93, 0.94);
  border-bottom: 4px solid var(--hot);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 0 rgba(24, 243, 255, 0.55);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink);
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 0 40%, rgba(7, 8, 15, 0.9) 41% 53%, transparent 54%),
    conic-gradient(from 25deg, var(--cyan), var(--green), var(--sand), var(--hot), var(--cyan));
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.14), 0 0 22px rgba(25, 240, 226, 0.36);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--night);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-links a,
.header-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--ink);
  font-weight: 850;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.header-action:hover {
  color: var(--ink);
  background: rgba(255, 74, 160, 0.22);
  transform: translateY(-1px);
}

.header-action {
  color: #fff;
  background: var(--hot);
  box-shadow: 0 6px 0 var(--cyan);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px) clamp(18px, 4vw, 56px) 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(36, 16, 63, 0.9) 0%, rgba(36, 16, 63, 0.64) 34%, rgba(36, 16, 63, 0.08) 74%, rgba(0, 198, 220, 0.32) 100%),
    linear-gradient(180deg, rgba(255, 229, 92, 0.18), rgba(36, 16, 63, 0.58)),
    url("https://azgames.io/upload/imgs/curverush2.png") center / cover no-repeat;
  filter: saturate(1.55) brightness(1.12);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='520' viewBox='0 0 900 520'%3E%3Cpath d='M-80 370 C 80 240 220 500 410 325 S 720 230 980 340' fill='none' stroke='%2318f3ff' stroke-opacity='.22' stroke-width='22' stroke-linecap='round'/%3E%3Cpath d='M-120 450 C 60 330 270 560 510 392 S 760 320 1020 430' fill='none' stroke='%23ffe55c' stroke-opacity='.22' stroke-width='34' stroke-linecap='round'/%3E%3Cpath d='M-70 220 C 140 100 250 300 430 190 S 720 70 970 180' fill='none' stroke='%23ff4aa0' stroke-opacity='.18' stroke-width='14' stroke-linecap='round'/%3E%3C/svg%3E") center / cover no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 0 2px, transparent 3px) 0 0 / 96px 96px,
    linear-gradient(180deg, rgba(255, 229, 92, 0.08) 0%, rgba(36, 16, 63, 0.22) 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
  max-width: 1580px;
  min-height: calc(100svh - var(--header-height) - 104px);
  margin: 0 auto;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  width: max-content;
  max-width: 100%;
  align-self: start;
  margin: 0 0 16px;
  color: var(--ink);
  background: var(--green);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--hot);
}

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

h1 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 8rem;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    4px 4px 0 var(--hot),
    9px 9px 0 rgba(24, 243, 255, 0.68),
    14px 14px 0 rgba(121, 255, 107, 0.24),
    0 0 34px rgba(255, 229, 92, 0.5);
}

h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 4rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 580px;
  color: var(--soft);
  font-size: 1.24rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button,
.icon-button {
  border: 0;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 950;
}

.button:hover,
.icon-button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--sand);
  color: var(--ink);
  box-shadow: 0 10px 0 var(--hot), 0 0 28px rgba(255, 229, 92, 0.48);
}

.button.primary:hover {
  background: #fff09a;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.18);
  color: var(--text);
  border: 1px solid var(--line-bright);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.quick-facts div {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
  background: rgba(255, 250, 217, 0.92);
  border: 2px solid var(--ink);
  border-bottom: 6px solid var(--cyan);
  color: var(--ink);
}

.quick-facts dt {
  color: #b51675;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.game-shell {
  position: relative;
  min-width: 0;
  border: 3px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  background: #fff3a4;
  box-shadow:
    0 0 0 8px rgba(255, 74, 160, 0.72),
    0 0 0 14px rgba(24, 243, 255, 0.42),
    0 0 42px rgba(255, 229, 92, 0.38),
    var(--shadow);
}

.game-shell::before {
  content: "LIVE RUN";
  position: absolute;
  left: 18px;
  top: -2px;
  z-index: 3;
  padding: 4px 10px 5px;
  background: var(--hot);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
}

.game-toolbar {
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 14px 10px 104px;
  border-bottom: 3px solid var(--ink);
  color: var(--ink);
  background:
    repeating-linear-gradient(90deg, rgba(34, 17, 51, 0.08) 0 2px, transparent 2px 8px),
    var(--sand);
  font-weight: 900;
}

.game-toolbar div {
  display: flex;
  gap: 8px;
}

.icon-button {
  width: 38px;
  height: 38px;
  background: var(--sand);
  color: var(--ink);
  font-weight: 950;
  box-shadow: 0 4px 0 rgba(255, 79, 139, 0.78);
}

.game-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 430px;
  overflow: hidden;
  background: #050505;
}

.game-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #050505;
}

.answer-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1580px;
  margin: -18px auto 0;
  padding: 0 clamp(18px, 4vw, 56px);
  position: relative;
  z-index: 4;
}

.answer-item {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(24, 243, 255, 0.36), rgba(121, 255, 107, 0.28) 45%, transparent 45%),
    var(--panel-solid);
  border: 2px solid var(--ink);
  border-bottom: 5px solid var(--hot);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.answer-item:nth-child(2) {
  border-bottom-color: var(--sand);
}

.answer-item:nth-child(3) {
  border-bottom-color: var(--green);
}

.answer-item strong {
  font-size: 1.12rem;
  text-transform: uppercase;
}

.answer-item span {
  color: var(--muted);
}

.section {
  max-width: 1580px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 138px) clamp(18px, 4vw, 56px);
}

.two-column,
.split-rule,
.comparison-section,
.guide-links,
.faq-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 78px);
  border-bottom: 3px dashed rgba(255, 255, 255, 0.4);
}

.section-main > p,
.media-copy p {
  max-width: 760px;
  color: var(--soft);
  font-size: 1.06rem;
}

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

.steps div {
  min-height: 232px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08)),
    var(--panel);
  border: 2px solid var(--ink);
  border-top: 8px solid var(--cyan);
  color: var(--ink);
}

.steps div:nth-child(2) {
  border-top-color: var(--sand);
}

.steps div:nth-child(3) {
  border-top-color: var(--hot);
}

.steps span {
  display: block;
  margin-bottom: 32px;
  color: #b51675;
  font-size: 1.6rem;
  font-weight: 950;
  line-height: 1;
}

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

.steps h3,
.page-grid h3 {
  color: var(--ink);
}

.media-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 12px;
  height: 12px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(255, 224, 107, 0.56);
}

.game-visual {
  margin: 0;
}

.game-visual img {
  width: 100%;
  border: 2px solid rgba(255, 224, 107, 0.74);
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.game-visual figcaption {
  margin-top: 12px;
  color: var(--soft);
  font-size: 0.94rem;
}

.tip-grid {
  position: relative;
  display: grid;
  gap: 28px;
  max-width: 980px;
  margin-top: 34px;
  padding: 16px 0 10px;
}

.tip-grid::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 28px;
  bottom: 28px;
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(var(--hot), var(--cyan), var(--sand), var(--green));
  box-shadow: 0 0 0 4px rgba(255, 250, 217, 0.45), 0 0 18px rgba(24, 243, 255, 0.42);
}

.tip-grid article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  column-gap: 20px;
  align-items: center;
  max-width: 820px;
  min-height: 96px;
  margin-left: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
}

.tip-grid article:nth-child(even) {
  margin-left: clamp(28px, 8vw, 124px);
}

.tip-grid article::after {
  content: none;
}

.tip-number {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--hot);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--cyan);
}

.tip-grid h3 {
  grid-column: 2;
  width: max-content;
  max-width: 100%;
  margin-bottom: 8px;
  padding: 5px 10px;
  background: var(--sand);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--hot);
  color: var(--ink);
}

.tip-grid p {
  grid-column: 2;
  margin: 0;
  max-width: 650px;
  padding: 0 0 0 10px;
  color: var(--muted);
  font-size: 1.05rem;
}

.version-rail,
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.version-card,
.link-grid a {
  min-height: 188px;
  padding: 24px;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0 10px, transparent 10px 20px),
    var(--panel-solid);
  border: 2px solid var(--ink);
  border-left: 10px solid var(--cyan);
  color: var(--ink);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.version-card:nth-child(2),
.link-grid a:nth-child(2) {
  border-left-color: var(--sand);
}

.version-card:nth-child(3),
.link-grid a:nth-child(3) {
  border-left-color: var(--hot);
}

.version-card:hover,
.link-grid a:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0 10px, transparent 10px 20px),
    #b7ff77;
}

.version-card span,
.link-grid span {
  display: block;
  margin-bottom: 18px;
  color: #b51675;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.version-card strong,
.link-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.12;
}

.version-card em {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-style: normal;
}

.comparison-table {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
  border: 1px solid var(--line);
  overflow: hidden;
}

.comparison-table > div,
.comparison-table > a {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1.2fr;
  gap: 18px;
  align-items: center;
  min-height: 70px;
  padding: 16px 18px;
  background: var(--panel-solid);
}

.comparison-table > a {
  color: var(--soft);
  transition: background 180ms ease, color 180ms ease;
}

.comparison-table > a:hover {
  color: var(--text);
  background: #172134;
}

.comparison-table [role="columnheader"],
.comparison-table span:first-child {
  color: var(--sand);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 930px;
  margin-top: 28px;
}

details {
  border: 2px solid var(--ink);
  border-left: 10px solid var(--cyan);
  border-radius: 12px;
  background: rgba(255, 250, 217, 0.9);
  overflow: hidden;
}

details:nth-child(even) {
  border-left-color: var(--hot);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 950;
  color: var(--ink);
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 30px;
  align-items: start;
  padding: 46px clamp(18px, 4vw, 56px);
  background:
    repeating-linear-gradient(135deg, rgba(255, 74, 160, 0.24) 0 16px, rgba(24, 243, 255, 0.2) 16px 32px),
    #35165a;
  border-top: 5px solid var(--sand);
}

.site-footer p {
  max-width: 560px;
  color: var(--soft);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--soft);
}

.fine-print {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.88rem;
}

.page-hero {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 56px) clamp(34px, 6vw, 70px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hero-inner,
.article-layout {
  max-width: 1120px;
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 940px;
  font-size: 6.5rem;
}

.page-hero p {
  max-width: 760px;
  color: var(--soft);
  font-size: 1.15rem;
}

.page-game-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) clamp(18px, 4vw, 56px) 0;
}

.page-game-inner {
  display: grid;
  gap: 14px;
}

.page-game-note {
  margin: 0;
  color: var(--soft);
  font-size: 0.96rem;
}

.page-game-section .game-frame-wrap {
  min-height: 520px;
}

.article-layout {
  padding: clamp(48px, 7vw, 88px) clamp(18px, 4vw, 56px);
}

.article-layout h2 {
  margin-top: 56px;
  font-size: 3.2rem;
}

.article-layout h3 {
  margin-top: 32px;
}

.article-layout p,
.article-layout li {
  color: var(--soft);
  font-size: 1.03rem;
}

.article-layout a {
  color: var(--sand);
  font-weight: 850;
}

.article-callout {
  margin: 34px 0;
  padding: 24px;
  border-left: 5px solid var(--cyan);
  background: rgba(255, 255, 255, 0.06);
}

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

.page-grid div {
  padding: 20px;
  background: var(--panel-solid);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
}

.page-grid p {
  color: var(--soft);
}

.reveal {
  opacity: 1;
  transform: none;
  animation: rise-in 540ms ease both;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 1180px) {
  h1 {
    font-size: 6.2rem;
  }

  h2 {
    font-size: 3.3rem;
  }

  .hero-grid,
  .media-section,
  .two-column,
  .split-rule,
  .comparison-section,
  .guide-links,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 860px;
  }

  .answer-band,
  .steps,
  .version-rail,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .game-frame-wrap {
    min-height: 360px;
  }

  .page-game-section .game-frame-wrap {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    gap: 10px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .nav-links {
    display: none;
  }

  .header-action {
    min-height: 36px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-grid {
    min-height: auto;
  }

  h1,
  .page-hero h1 {
    font-size: 4.25rem;
  }

  h2,
  .article-layout h2 {
    font-size: 2.35rem;
  }

  .hero-lede {
    font-size: 1.06rem;
  }

  .hero-actions,
  .quick-facts,
  .tip-grid,
  .comparison-table > div,
  .comparison-table > a,
  .page-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .game-toolbar {
    align-items: start;
    flex-direction: column;
    padding-left: 14px;
    padding-top: 32px;
  }

  .game-shell::before {
    left: 14px;
  }

  .game-frame-wrap {
    min-height: 260px;
  }

  .page-game-section .game-frame-wrap {
    min-height: 260px;
  }

  .answer-band {
    margin-top: 0;
    padding: 0;
  }

  .answer-item {
    min-height: 124px;
  }

  .steps div,
  .tip-grid article,
  .version-card,
  .link-grid a {
    min-height: auto;
  }

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

@media (max-width: 420px) {
  h1,
  .page-hero h1 {
    font-size: 3.45rem;
  }

  h2,
  .article-layout h2 {
    font-size: 2rem;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.72rem;
  }
}
