:root {
  --midnight: #24143d;
  --midnight-deep: #160d28;
  --peach: #ff9f85;
  --peach-soft: #ffc3ad;
  --mint: #b9f5d8;
  --cream: #fff7e9;
  --paper: #f4ead9;
  --ink: #0c0a10;
  --ink-2: #302a35;
  --ink-3: #635b68;
  --ink-4: #8e8790;
  --line: rgba(12, 10, 16, .16);
  --line-soft: rgba(12, 10, 16, .09);
  --line-light: rgba(255, 247, 233, .22);
  --shadow: 8px 8px 0 var(--ink);
  --radius: 28px;
  --page: min(1440px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif; font-size: 16px; line-height: 1.55; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.055em; line-height: .96; }
h1 em, h2 em { color: var(--peach); font-family: Georgia, serif; font-weight: 400; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 16px; color: var(--cream); background: var(--ink); border-radius: 999px; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 4px solid var(--peach); outline-offset: 4px; }

.site-header { position: relative; z-index: 20; width: var(--page); min-height: 76px; margin: 16px auto 0; padding: 10px 12px 10px 20px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--cream); background: var(--midnight); border: 2px solid var(--ink); border-radius: 24px; box-shadow: 5px 5px 0 var(--ink); }
.brand { display: inline-flex; align-items: center; gap: 11px; color: inherit; text-decoration: none; font-size: 17px; font-weight: 900; letter-spacing: -.04em; line-height: .82; }
.brand small { display: block; margin-top: 6px; color: var(--mint); font-size: 10px; letter-spacing: .24em; }
.brand-mark { position: relative; width: 38px; height: 30px; display: inline-block; flex: 0 0 auto; background: var(--mint); border: 2px solid var(--ink); border-radius: 11px 11px 14px 14px; transform: rotate(-4deg); }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; background: var(--midnight); border-radius: 2px; }
.brand-mark::before { width: 13px; height: 4px; left: 5px; top: 12px; }
.brand-mark::after { width: 4px; height: 13px; left: 9px; top: 8px; }
.brand-mark i { position: absolute; width: 5px; height: 5px; right: 6px; top: 8px; background: var(--peach); border: 1px solid var(--ink); border-radius: 50%; }
.brand-mark i:nth-child(2) { top: 16px; right: 12px; }
.brand-mark i:nth-child(n+3) { display: none; }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 38px); }
.main-nav a { position: relative; color: var(--cream); font-size: 13px; font-weight: 800; text-decoration: none; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: -5px; left: 0; height: 2px; background: var(--mint); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.main-nav > a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 13px 18px; color: var(--ink) !important; background: var(--peach); border: 2px solid var(--ink); border-radius: 14px; box-shadow: 3px 3px 0 var(--ink); transition: transform .2s, box-shadow .2s; }
.nav-cta:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 12px; border: 0; background: var(--peach); border-radius: 13px; }
.nav-toggle span { display: block; height: 2px; margin: 4px 0; background: var(--ink); }

.hero { position: relative; width: var(--page); min-height: 700px; margin: 18px auto 64px; padding: clamp(42px, 6vw, 88px); display: grid; grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr); align-items: center; gap: clamp(32px, 5vw, 80px); overflow: hidden; background: var(--mint); border: 2px solid var(--ink); border-radius: 34px 34px 110px 34px; }
.hero::before { content: ""; position: absolute; width: 180px; height: 180px; top: -70px; left: 35%; border: 2px solid var(--ink); border-radius: 50%; opacity: .13; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-index { font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.eyebrow span { color: var(--peach); -webkit-text-stroke: 1px var(--ink); }
.hero h1 { max-width: 720px; margin-bottom: 30px; font-size: clamp(54px, 6.2vw, 96px); }
.hero h1 em { color: var(--midnight); }
.hero-lead { max-width: 600px; color: var(--ink-2); font-family: Arial, sans-serif; font-size: 18px; }
.hero-actions { margin: 34px 0 44px; display: flex; align-items: center; gap: 26px; }
.button { display: inline-flex; align-items: center; gap: 20px; padding: 16px 22px; border: 2px solid var(--ink); border-radius: 15px; box-shadow: 4px 4px 0 var(--peach); font-size: 14px; font-weight: 900; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--peach); }
.button-dark { color: var(--cream); background: var(--midnight); }
.text-link { font-size: 13px; font-weight: 900; text-underline-offset: 5px; }
.hero-stats { max-width: 600px; margin: 0; padding: 22px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; border-top: 1px solid var(--line); }
.hero-stats li { padding-right: 16px; }
.hero-stats strong { display: block; font-size: 22px; line-height: 1.2; }
.hero-stats span { color: var(--ink-3); font-family: Arial, sans-serif; font-size: 12px; }
.hero-visual { position: relative; z-index: 1; min-width: 0; transform: rotate(2deg); }
.hero-visual::before, .hero-visual::after { content: ""; position: absolute; z-index: -1; width: 90px; height: 90px; background: var(--peach); border: 2px solid var(--ink); }
.hero-visual::before { top: -28px; right: -28px; border-radius: 50%; }
.hero-visual::after { bottom: -38px; left: -30px; border-radius: 26px; transform: rotate(18deg); }
.hero-visual img { width: 100%; aspect-ratio: 1.25; object-fit: cover; border: 2px solid var(--ink); border-radius: 40% 26px 34% 26px; box-shadow: var(--shadow); }
.player-pill { position: absolute; z-index: 2; top: -18px; left: 30px; padding: 10px 14px; background: var(--cream); border: 2px solid var(--ink); border-radius: 999px; box-shadow: 3px 3px 0 var(--ink); font-size: 12px; font-weight: 900; }
.player-pill span { margin-left: 8px; color: #26715a; font-size: 9px; letter-spacing: .1em; }
.hero-sticker { position: absolute; right: -16px; bottom: -28px; width: 108px; height: 108px; display: grid; place-content: center; text-align: center; background: var(--peach); border: 2px solid var(--ink); border-radius: 50%; box-shadow: 5px 5px 0 var(--ink); font-size: 11px; line-height: 1.1; transform: rotate(-11deg); }
.hero-sticker strong { font-size: 23px; }
.cable { position: absolute; right: 17%; bottom: -22px; width: 42%; height: 90px; border: 4px solid var(--ink); border-top: 0; border-radius: 0 0 60px 60px; opacity: .85; }

.ticker { overflow: hidden; padding: 18px 0; color: var(--cream); background: var(--midnight); border-block: 2px solid var(--ink); transform: rotate(-1deg); }
.ticker div { width: max-content; display: flex; gap: 28px; align-items: center; animation: marquee 24s linear infinite; }
.ticker span { font-size: 16px; font-weight: 900; letter-spacing: .12em; }
.ticker b { color: var(--peach); }
@keyframes marquee { to { transform: translateX(-25%); } }

.section { width: var(--page); margin: 0 auto; padding: 120px clamp(12px, 4vw, 60px); }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 18px 60px; align-items: end; margin-bottom: 50px; }
.section-heading .section-index { grid-column: 1 / -1; }
.section-heading h2, .collection-copy h2, .latency h2, .checklist h2 { margin-bottom: 0; font-size: clamp(48px, 6.2vw, 92px); }
.section-heading > p:last-child { max-width: 480px; margin-bottom: 4px; color: var(--ink-3); font-family: Arial, sans-serif; }
.section-heading h2 em, .collection-copy h2 em, .checklist h2 em { color: var(--midnight); }
.recommendations { padding-top: 150px; }
.game-stack { border-top: 2px solid var(--ink); }
.game-card { position: relative; padding: 34px 24px; display: grid; grid-template-columns: 70px minmax(0, 1fr) minmax(220px, .45fr); align-items: center; gap: 26px; border-bottom: 2px solid var(--ink); transition: background .25s, padding .25s; }
.game-card:hover { padding-inline: 34px 14px; background: var(--paper); }
.game-number { align-self: start; color: var(--ink-3); font-size: 13px; font-weight: 900; }
.game-main h3 { margin: 12px 0 10px; font-size: clamp(26px, 3vw, 44px); letter-spacing: -.04em; line-height: 1; }
.game-main p { max-width: 680px; margin: 0; color: var(--ink-3); font-family: Arial, sans-serif; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-row span { padding: 4px 8px; background: var(--mint); border: 1px solid var(--ink); border-radius: 999px; font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.game-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.game-meta div { padding-left: 14px; border-left: 1px solid var(--line); }
.game-meta dt { color: var(--ink-3); font-family: Arial, sans-serif; font-size: 10px; }
.game-meta dd { margin: 4px 0 0; font-size: 12px; font-weight: 900; }

.collection { padding-inline: 0; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.collection-image { position: relative; min-height: 760px; overflow: hidden; border: 2px solid var(--ink); border-radius: 36px 100px 36px 36px; }
.collection-image img { width: 100%; height: 100%; object-fit: cover; }
.image-note { position: absolute; bottom: 28px; left: 28px; padding: 10px 14px; background: var(--cream); border: 2px solid var(--ink); border-radius: 999px; box-shadow: 3px 3px 0 var(--ink); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.collection-copy { padding: clamp(40px, 7vw, 100px); background: var(--peach); border: 2px solid var(--ink); border-left: 0; border-radius: 0 36px 36px 0; }
.collection-copy h2 { margin: 24px 0 28px; }
.collection-copy > p:not(.section-index) { max-width: 590px; font-family: Arial, sans-serif; }
.filter-row { margin: 34px 0 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.filter { padding: 9px 13px; background: transparent; border: 1px solid var(--ink); border-radius: 999px; cursor: pointer; font-size: 11px; font-weight: 900; }
.filter:hover, .filter.is-active { color: var(--cream); background: var(--midnight); }
.mini-games { border-top: 2px solid var(--ink); }
.mini-games article { padding: 20px 2px; border-bottom: 1px solid var(--line); transition: opacity .2s, transform .2s; }
.mini-games article.is-hidden { display: none; }
.mini-games span { font-family: Arial, sans-serif; font-size: 10px; }
.mini-games h3 { margin: 4px 0; font-size: 22px; }
.mini-games p { margin: 0; font-family: Arial, sans-serif; font-size: 13px; }

.setup { padding-top: 150px; }
.section-heading-wide { grid-template-columns: 1fr; }
.section-heading-wide h2 { max-width: 1000px; }
.section-heading-wide > p:last-child { max-width: 680px; }
.setup-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.steps { margin: 0; padding: 0; list-style: none; counter-reset: step; border-top: 2px solid var(--ink); }
.steps li { padding: 24px 0; display: grid; grid-template-columns: 48px 1fr; gap: 16px; border-bottom: 1px solid var(--line); }
.steps li > span { width: 38px; height: 38px; display: grid; place-items: center; background: var(--mint); border: 1px solid var(--ink); border-radius: 50%; font-size: 11px; font-weight: 900; }
.steps h3 { margin-bottom: 6px; font-size: 19px; }
.steps p { margin: 0; color: var(--ink-3); font-family: Arial, sans-serif; font-size: 14px; }
.setup-image { position: relative; margin: 0; }
.setup-image::before { content: "+"; position: absolute; z-index: 2; top: -30px; right: -20px; width: 82px; height: 82px; display: grid; place-items: center; color: var(--cream); background: var(--midnight); border: 2px solid var(--ink); border-radius: 23px; font-size: 52px; transform: rotate(8deg); }
.setup-image img { width: 100%; aspect-ratio: 1.35; object-fit: cover; border: 2px solid var(--ink); border-radius: 30px 100px 30px 30px; box-shadow: var(--shadow); }
.setup-image figcaption { margin: 20px 0 0; color: var(--ink-3); font-family: Arial, sans-serif; font-size: 12px; }
.setup-image figcaption span { margin-right: 10px; color: var(--ink); font-family: "Arial Rounded MT Bold", sans-serif; font-weight: 900; }

.latency { position: relative; width: 100%; padding-inline: max(32px, calc((100% - 1320px) / 2)); display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px 90px; color: var(--cream); background: var(--midnight); overflow: hidden; }
.latency::before { content: ""; position: absolute; width: 420px; height: 420px; right: -120px; top: -140px; border: 2px solid var(--line-light); border-radius: 50%; box-shadow: inset 0 0 0 70px var(--midnight), inset 0 0 0 72px var(--line-light), inset 0 0 0 140px var(--midnight), inset 0 0 0 142px var(--line-light); }
.light { color: var(--mint); }
.latency h2 { margin: 20px 0 24px; }
.latency h2 em { color: var(--peach); }
.latency-copy { position: relative; z-index: 1; }
.latency-copy > p:not(.section-index):not(.latency-status) { color: #cfc6d7; font-family: Arial, sans-serif; }
.latency-copy label { display: block; margin: 30px 0 12px; font-size: 13px; font-weight: 900; }
.latency-copy output { float: right; color: var(--mint); font-size: 20px; }
input[type="range"] { width: 100%; accent-color: var(--peach); cursor: ew-resize; }
.latency-status { min-height: 50px; margin-top: 10px; color: #cfc6d7; font-family: Arial, sans-serif; font-size: 13px; }
.latency-status strong { color: var(--cream); }
.signal { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }
.signal-stop { position: relative; width: 130px; height: 130px; display: grid; place-content: center; text-align: center; background: var(--mint); color: var(--ink); border: 2px solid var(--ink); border-radius: 50%; box-shadow: 5px 5px 0 var(--peach); }
.signal-stop:nth-of-type(2) { background: var(--peach); transform: translateY(-34px); }
.signal-stop span { position: absolute; top: 8px; left: 14px; font-size: 11px; }
.signal-stop b { font-size: 13px; }
.signal-stop small { font-family: Arial, sans-serif; }
.signal i { width: clamp(28px, 5vw, 90px); border-top: 3px dotted var(--cream); }
.quick-fix { position: relative; z-index: 1; grid-column: 1 / -1; max-width: 900px; margin: 0 auto; padding: 18px 24px; display: flex; gap: 24px; align-items: center; color: var(--ink); background: var(--peach); border: 2px solid var(--ink); border-radius: 18px; transform: rotate(-1deg); }
.quick-fix b { flex: 0 0 auto; font-size: 12px; }
.quick-fix p { margin: 0; font-family: Arial, sans-serif; font-size: 13px; }

.access { padding-block: 150px; }
.access-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.access-grid article { min-height: 310px; padding: 28px; border: 2px solid var(--ink); border-radius: 22px; box-shadow: 5px 5px 0 var(--ink); transition: transform .2s; }
.access-grid article:hover { transform: translateY(-5px) rotate(-1deg); }
.access-grid article:nth-child(2) { background: var(--mint); }
.access-grid article:nth-child(3) { background: var(--peach); }
.access-grid article:nth-child(4) { color: var(--cream); background: var(--midnight); }
.access-grid article > span { width: 62px; height: 62px; display: grid; place-content: center; margin-bottom: 60px; border: 2px solid currentColor; border-radius: 50%; font-size: 25px; font-weight: 900; }
.access-grid h3 { font-size: 20px; }
.access-grid p { margin: 0; color: inherit; opacity: .72; font-family: Arial, sans-serif; font-size: 13px; }

.checklist { width: 100%; padding-inline: max(32px, calc((100% - 1320px) / 2)); display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; background: var(--mint); border-block: 2px solid var(--ink); }
.check-intro { position: sticky; top: 30px; align-self: start; }
.checklist h2 { margin: 22px 0 28px; }
.check-intro > p:not(.section-index) { max-width: 440px; color: var(--ink-3); font-family: Arial, sans-serif; }
.progress-wrap { margin-top: 36px; font-size: 12px; font-weight: 900; }
.progress { height: 12px; margin-top: 10px; overflow: hidden; background: var(--cream); border: 1px solid var(--ink); border-radius: 999px; }
.progress i { display: block; width: 0; height: 100%; background: var(--peach); border-right: 1px solid var(--ink); transition: width .3s; }
.check-form { border-top: 2px solid var(--ink); }
.check-form label { padding: 20px 8px; display: grid; grid-template-columns: 32px 42px 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); cursor: pointer; transition: background .2s; }
.check-form label:hover { background: rgba(255, 247, 233, .38); }
.check-form input { width: 22px; height: 22px; accent-color: var(--midnight); }
.check-form label > span { color: var(--ink-3); font-size: 11px; }
.check-form b { font-size: 15px; }
.check-form small { color: var(--ink-3); font-family: Arial, sans-serif; }
.check-form label:has(input:checked) b { text-decoration: line-through; opacity: .55; }

.site-footer { padding: 90px max(24px, calc((100% - 1320px) / 2)) 30px; color: var(--cream); background: var(--midnight-deep); }
.footer-top { padding-bottom: 90px; display: flex; justify-content: space-between; align-items: end; }
.footer-kicker { color: var(--mint); font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.footer-top h2 { margin: 20px 0 0; font-size: clamp(48px, 7vw, 98px); }
.footer-top h2 em { color: var(--peach); }
.round-link { width: 112px; height: 112px; display: grid; place-content: center; text-align: center; color: var(--ink); background: var(--mint); border: 2px solid var(--ink); border-radius: 50%; box-shadow: 6px 6px 0 var(--peach); font-size: 34px; text-decoration: none; transition: transform .2s; }
.round-link:hover { transform: rotate(8deg); }
.round-link small { display: block; font-size: 9px; letter-spacing: .18em; }
.footer-bottom { padding-top: 28px; display: grid; grid-template-columns: 1fr 1fr 1fr auto; align-items: center; gap: 30px; border-top: 1px solid var(--line-light); }
.brand-footer { color: var(--cream); }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom nav a { color: #d9d0dd; font-family: Arial, sans-serif; font-size: 12px; text-underline-offset: 4px; }
.footer-bottom p { margin: 0; color: #9f95a8; font-family: Arial, sans-serif; font-size: 11px; }

.legal-page { background: var(--paper); }
.legal-main { width: var(--page); margin: 18px auto 0; }
.legal-hero { padding: clamp(70px, 10vw, 150px) clamp(24px, 8vw, 120px); background: var(--mint); border: 2px solid var(--ink); border-radius: 32px 32px 90px 32px; }
.legal-hero h1 { margin: 22px 0 30px; font-size: clamp(58px, 9vw, 126px); }
.legal-hero h1 em { color: var(--midnight); }
.legal-hero > p:last-child { margin: 0; color: var(--ink-3); font-family: Arial, sans-serif; }
.legal-layout { padding: 100px clamp(0px, 6vw, 90px) 140px; display: grid; grid-template-columns: 260px minmax(0, 760px); gap: clamp(40px, 8vw, 120px); justify-content: center; }
.legal-layout aside { position: sticky; top: 24px; align-self: start; padding: 22px; background: var(--peach); border: 2px solid var(--ink); border-radius: 20px; box-shadow: 5px 5px 0 var(--ink); }
.legal-layout aside strong { font-size: 20px; }
.legal-layout aside p { margin: 10px 0 0; font-family: Arial, sans-serif; font-size: 13px; }
.legal-copy section { padding: 0 0 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal-copy h2 { margin-bottom: 16px; font-family: "Arial Rounded MT Bold", sans-serif; font-size: 23px; letter-spacing: -.03em; line-height: 1.2; }
.legal-copy p { color: var(--ink-2); font-family: Arial, sans-serif; }
.legal-copy a { font-weight: 700; text-underline-offset: 3px; }
.legal-footer { padding-top: 30px; }
.legal-footer .footer-bottom { border-top: 0; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; padding-bottom: 100px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(720px, 90%); margin: 0 auto; }
  .section-heading { grid-template-columns: 1fr; }
  .game-card { grid-template-columns: 48px 1fr; }
  .game-meta { grid-column: 2; }
  .collection { grid-template-columns: 1fr; }
  .collection-image { min-height: 560px; border-radius: 36px 90px 0 0; }
  .collection-copy { border-left: 2px solid var(--ink); border-top: 0; border-radius: 0 0 36px 36px; }
  .setup-layout { grid-template-columns: 1fr; }
  .setup-image { order: -1; }
  .latency { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: repeat(2, 1fr); }
  .checklist { grid-template-columns: 1fr; }
  .check-intro { position: static; }
  .footer-bottom { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --page: calc(100% - 20px); --shadow: 5px 5px 0 var(--ink); }
  .site-header { min-height: 66px; margin-top: 10px; }
  .nav-toggle { display: block; }
  .main-nav { position: absolute; top: calc(100% + 8px); right: 0; left: 0; padding: 18px; display: none; align-items: stretch; flex-direction: column; background: var(--midnight); border: 2px solid var(--ink); border-radius: 20px; box-shadow: 5px 5px 0 var(--ink); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 9px; font-size: 15px; }
  .hero { min-height: 0; margin-top: 12px; padding: 54px 22px 80px; grid-template-columns: 1fr; border-radius: 26px 26px 70px 26px; }
  .hero h1 { font-size: clamp(46px, 14vw, 68px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-stats { gap: 12px; }
  .hero-stats span { line-height: 1.2; }
  .hero-visual { width: 100%; }
  .hero-sticker { width: 86px; height: 86px; right: -8px; }
  .section { padding: 88px 8px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .collection-copy h2, .latency h2, .checklist h2 { font-size: clamp(46px, 14vw, 66px); }
  .game-card { padding: 26px 4px; grid-template-columns: 30px 1fr; gap: 10px; }
  .game-card:hover { padding-inline: 4px; }
  .game-meta { grid-template-columns: 1fr; }
  .game-meta div { padding: 8px 0 0; display: flex; justify-content: space-between; border-top: 1px solid var(--line); border-left: 0; }
  .collection { padding-inline: 0; }
  .collection-image { min-height: 380px; }
  .collection-copy { padding: 48px 24px; }
  .setup-layout { gap: 42px; }
  .setup-image::before { right: 0; }
  .latency { padding-inline: 22px; }
  .signal-stop { width: 90px; height: 90px; }
  .signal-stop:nth-of-type(2) { transform: translateY(-20px); }
  .signal-stop small { font-size: 9px; }
  .quick-fix { align-items: flex-start; flex-direction: column; gap: 5px; }
  .access-grid { grid-template-columns: 1fr; }
  .access-grid article { min-height: 260px; }
  .access-grid article > span { margin-bottom: 38px; }
  .checklist { padding-inline: 22px; gap: 44px; }
  .check-form label { grid-template-columns: 30px 30px 1fr; }
  .check-form small { grid-column: 3; }
  .footer-top { align-items: flex-start; flex-direction: column; gap: 50px; }
  .round-link { align-self: flex-end; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom nav { flex-direction: column; gap: 8px; }
  .legal-hero { border-radius: 26px 26px 60px 26px; }
  .legal-layout { padding-block: 60px 90px; grid-template-columns: 1fr; }
  .legal-layout aside { position: static; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
