:root {
  color-scheme: light dark;
  --page: #f5f7ff;
  --surface: #ffffff;
  --surface-soft: #edf2ff;
  --ink: #07134f;
  --muted: #596183;
  --line: #dce2f5;
  --navy: #07134f;
  --red: #ea102d;
  --yellow: #ffb719;
  --green: #07944a;
  --blue: #0878f9;
  --focus: #0878f9;
  --shadow: 0 24px 70px rgb(7 19 79 / 12%);
  --shadow-small: 0 12px 32px rgb(7 19 79 / 9%);
  --sans: Inter, ui-rounded, "SF Pro Rounded", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #08113a;
    --surface: #101b4e;
    --surface-soft: #17235d;
    --ink: #f8f9ff;
    --muted: #bdc6e8;
    --line: #2c3b79;
    --focus: #72b5ff;
    --shadow: 0 26px 72px rgb(0 0 0 / 28%);
    --shadow-small: 0 12px 32px rgb(0 0 0 / 22%);
  }
}

* { box-sizing: border-box; }

html { min-width: 320px; scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 18%, rgb(255 183 25 / 13%) 0 7rem, transparent 7.1rem),
    radial-gradient(circle at 92% 42%, rgb(8 120 249 / 10%) 0 10rem, transparent 10.1rem),
    var(--page);
  color: var(--ink);
  font: 16px/1.6 var(--sans);
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; }
a { color: inherit; text-underline-offset: .18em; }
button, input, select, textarea { font: inherit; }
button, input[type="button"], input[type="submit"] { min-height: 40px; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: .5rem;
  left: .5rem;
  padding: .7rem 1rem;
  border: 2px solid var(--focus);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgb(7 19 79 / 9%);
  background: rgb(255 255 255 / 94%);
  color: var(--navy);
  backdrop-filter: blur(14px);
}

.site-header-inner,
.site-footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-name { display: inline-flex; align-items: center; padding: 7px 0; }
.site-name img { display: block; width: 168px; height: auto; }

.site-nav,
.site-footer nav { display: flex; align-items: center; gap: 6px; }

.site-nav a,
.site-footer nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover { background: #edf2ff; }

.home-page,
.game-page,
.legal-page { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
  margin: clamp(34px, 6vw, 72px) 0 clamp(72px, 9vw, 112px);
  padding: clamp(32px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.home-hero::before,
.home-hero::after { position: absolute; content: ""; border-radius: 50%; pointer-events: none; }
.home-hero::before { width: 170px; height: 170px; right: -72px; top: -74px; background: var(--yellow); opacity: .92; }
.home-hero::after { width: 88px; height: 88px; left: -34px; bottom: -38px; background: var(--green); opacity: .86; }
.hero-copy, .hero-playground { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0; font-family: var(--sans); line-height: 1.04; text-wrap: balance; }
h1 { max-width: 700px; font-size: clamp(48px, 7.2vw, 86px); letter-spacing: -.055em; }
h2 { font-size: clamp(34px, 4.7vw, 58px); letter-spacing: -.04em; }
h3 { font-size: 24px; letter-spacing: -.025em; }

.hero-lede { max-width: 650px; margin: 24px 0 0; color: var(--muted); font-size: clamp(18px, 2vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 21px;
  border: 2px solid var(--navy);
  border-radius: 16px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: #fff; box-shadow: 0 9px 0 rgb(7 19 79 / 14%); }
.button-primary:hover { box-shadow: 0 6px 0 rgb(7 19 79 / 14%); }
.button-secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.button-secondary:hover { background: var(--surface-soft); }

.hero-playground {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 30px;
  background: radial-gradient(circle at 20% 20%, rgb(255 255 255 / 13%) 0 4px, transparent 4.5px) 0 0 / 28px 28px, var(--navy);
  box-shadow: 0 20px 48px rgb(7 19 79 / 28%);
  color: #fff;
  transform: rotate(2deg);
}

.playground-badge {
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.playground-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.play-tile {
  aspect-ratio: 1.16;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 7px solid #fff;
  border-radius: 22px;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 950;
  line-height: 1;
  box-shadow: inset 0 -9px 0 rgb(0 0 0 / 9%), 0 9px 0 rgb(0 0 0 / 16%);
}

.play-tile small { align-self: flex-start; margin-top: 20%; font-size: .36em; }
.play-tile-red { background: var(--red); }
.play-tile-yellow { background: var(--yellow); color: var(--navy); }
.play-tile-green { background: var(--green); }
.play-tile-blue { background: var(--blue); }
.hero-playground > p { margin: 24px 0 0; text-align: center; font-size: 13px; font-weight: 800; letter-spacing: .04em; }
.hero-playground > p span { padding: 0 6px; color: var(--yellow); }

.game-library {
  margin-bottom: clamp(72px, 9vw, 112px);
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
#game-count { color: var(--muted); font: 800 12px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.game-finder { display: grid; grid-template-columns: auto minmax(160px, 1fr) auto; align-items: center; gap: 12px; margin: 0 0 18px; }
.game-finder label { font-weight: 850; }

.game-finder input {
  min-height: 48px;
  width: 100%;
  padding: 9px 15px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--ink);
}

.game-finder button,
.category-tabs button { border: 2px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--ink); cursor: pointer; font-weight: 800; }
.game-finder button { padding: 7px 17px; }
.category-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.category-tabs button { padding: 7px 14px; }
.category-tabs button.is-active { border-color: var(--navy); background: var(--navy); color: #fff; }
.game-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(245px, 100%), 1fr)); gap: 18px; }

.game-card {
  min-height: 285px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}

.game-card:nth-child(4n + 1) .game-card-icon { background: var(--red); }
.game-card:nth-child(4n + 2) .game-card-icon { background: var(--yellow); color: var(--navy); }
.game-card:nth-child(4n + 3) .game-card-icon { background: var(--green); }
.game-card:nth-child(4n) .game-card-icon { background: var(--blue); }
.game-card:hover { transform: translateY(-5px) rotate(-.35deg); box-shadow: var(--shadow-small); }
.game-card[hidden] { display: none; }
.game-card a { height: 100%; display: flex; flex-direction: column; padding: 22px; color: var(--ink); text-decoration: none; }

.game-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 4px solid #fff;
  border-radius: 14px;
  color: #fff;
  font-size: 23px;
  font-weight: 950;
  box-shadow: 0 5px 0 rgb(7 19 79 / 12%);
}

.game-card-category { margin-bottom: 10px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.game-card p { margin: 12px 0 22px; color: var(--muted); }
.game-card-action { margin-top: auto; color: var(--blue); font-weight: 900; }
.no-results { padding: 24px; border: 2px dashed var(--line); border-radius: 18px; color: var(--muted); text-align: center; }

.coming-soon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .86fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
  margin-bottom: clamp(78px, 10vw, 126px);
  padding: clamp(34px, 6vw, 68px);
  overflow: hidden;
  border-radius: 32px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.coming-copy .eyebrow { color: var(--yellow); }
.coming-copy > p:not(.eyebrow) { max-width: 620px; margin: 20px 0; color: #cbd4ff; font-size: 18px; }
.text-link { display: inline-flex; gap: 9px; align-items: center; color: #fff; font-weight: 850; }
.category-cloud { display: flex; flex-wrap: wrap; gap: 12px; transform: rotate(2deg); }

.category-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 9px 16px;
  border: 2px solid rgb(255 255 255 / 24%);
  border-radius: 14px;
  background: rgb(255 255 255 / 10%);
  font-weight: 800;
}

.category-cloud span:nth-child(4n + 1) { border-color: var(--red); }
.category-cloud span:nth-child(4n + 2) { border-color: var(--yellow); }
.category-cloud span:nth-child(4n + 3) { border-color: var(--green); }
.category-cloud span:nth-child(4n) { border-color: var(--blue); }

.why-ludoic { padding: 0 0 clamp(80px, 11vw, 132px); }
.why-heading { max-width: 700px; margin-bottom: 36px; }
.why-heading > p:last-child { margin: 18px 0 0; color: var(--muted); font-size: 19px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-grid article { padding: clamp(24px, 3vw, 34px); border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-small); }
.feature-grid article:nth-child(1) { border-top: 7px solid var(--red); }
.feature-grid article:nth-child(2) { border-top: 7px solid var(--green); }
.feature-grid article:nth-child(3) { border-top: 7px solid var(--blue); }
.feature-number { display: inline-block; margin-bottom: 30px; color: var(--muted); font: 800 12px/1 var(--mono); }
.feature-grid p { margin: 12px 0 0; color: var(--muted); }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0 38px; color: var(--muted); font-size: 13px; }
.breadcrumb a { color: var(--blue); font-weight: 750; }
.game-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, .75fr);
  align-items: end;
  column-gap: clamp(30px, 5vw, 68px);
  row-gap: 10px;
  margin-bottom: 32px;
}
.game-heading > .eyebrow { grid-column: 1 / -1; }
.game-heading h1 { max-width: none; font-size: clamp(40px, 4.6vw, 60px); }
.legal-page h1 { font-size: clamp(40px, 6vw, 66px); }
.game-heading > p:last-child { margin: 0 0 5px; color: var(--muted); font-size: 18px; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.game-stage {
  position: relative;
  margin-bottom: 80px;
}

.game-stage-toolbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  padding: 14px 16px 13px 20px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% -40%, rgb(8 120 249 / 55%) 0 88px, transparent 89px),
    var(--navy);
  box-shadow: var(--shadow-small);
  color: #fff;
}

.game-stage-toolbar::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(to bottom, var(--red) 0 25%, var(--yellow) 25% 50%, var(--green) 50% 75%, var(--blue) 75%);
  content: "";
}

.game-stage-toolbar-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding-left: 4px;
}

.game-stage-kicker {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.game-stage-hint {
  color: #dce3ff;
  font-size: 14px;
  line-height: 1.35;
}

.game-fullscreen-toggle {
  min-height: 46px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 15px;
  border: 3px solid #fff;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 5px 0 rgb(0 0 0 / 22%);
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  touch-action: manipulation;
  transition: transform .16s ease, box-shadow .16s ease;
}

.game-fullscreen-toggle:hover { transform: translateY(-2px); box-shadow: 0 7px 0 rgb(0 0 0 / 20%); }
.game-fullscreen-toggle:active { transform: translateY(2px); box-shadow: 0 2px 0 rgb(0 0 0 / 22%); }
.game-fullscreen-toggle[aria-pressed="true"] { border-color: var(--yellow); background: var(--yellow); }
.game-fullscreen-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 18px;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 7px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 0 / 2px 7px no-repeat,
    linear-gradient(currentColor, currentColor) 100% 0 / 7px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 100% 0 / 2px 7px no-repeat,
    linear-gradient(currentColor, currentColor) 0 100% / 7px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 100% / 2px 7px no-repeat,
    linear-gradient(currentColor, currentColor) 100% 100% / 7px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 100% 100% / 2px 7px no-repeat;
  font-size: 0;
  line-height: 1;
  text-align: center;
}
.game-fullscreen-toggle[aria-pressed="true"] .game-fullscreen-icon {
  background: none;
  font-size: 22px;
}

.play-surface {
  margin-bottom: 0;
  padding: clamp(12px, 2.5vw, 28px);
  overflow: clip;
  border: 7px solid #fff;
  border-radius: 28px;
  background: var(--green);
  box-shadow: var(--shadow);
}

.play-surface button, .play-surface [role="button"] { min-width: 40px; min-height: 40px; }
.play-surface [data-score], .play-surface [data-time], .play-surface .score, .play-surface .timer { font-family: var(--mono); font-variant-numeric: tabular-nums; }

html.game-focus-active,
body.game-focus-active { overflow: hidden; overscroll-behavior: none; }

body.game-focus-active .game-page > :not(.game-stage),
body.game-focus-active > .skip-link,
body.game-focus-active > .site-header,
body.game-focus-active > .site-footer { display: none; }

.game-stage.is-fullscreen-active {
  width: 100vw;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  overflow: hidden;
  overscroll-behavior: contain;
  background: var(--navy);
}

.game-stage.is-focus-mode {
  position: fixed;
  z-index: 1000;
  inset: 0;
}

.game-stage.is-fullscreen-active .game-stage-toolbar {
  position: absolute;
  z-index: 100;
  top: max(10px, env(safe-area-inset-top));
  right: max(10px, env(safe-area-inset-right));
  width: auto;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}

.game-stage.is-fullscreen-active .game-stage-toolbar::before,
.game-stage.is-fullscreen-active .game-stage-toolbar-copy {
  display: none;
}

.game-stage.is-fullscreen-active .game-fullscreen-toggle {
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  gap: 0;
  padding: 0;
  border: 2px solid rgb(255 255 255 / 82%);
  border-radius: 50%;
  background: rgb(7 19 79 / 88%);
  box-shadow: 0 4px 18px rgb(0 0 0 / 32%);
  color: #fff;
  backdrop-filter: blur(8px);
}

.game-stage.is-fullscreen-active .game-fullscreen-toggle:hover {
  box-shadow: 0 6px 20px rgb(0 0 0 / 38%);
}

.game-stage.is-fullscreen-active .game-fullscreen-toggle[aria-pressed="true"] {
  border-color: var(--yellow);
  background: rgb(7 19 79 / 88%);
  color: #fff;
}

.game-stage.is-fullscreen-active [data-game-fullscreen-label] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.game-stage.is-fullscreen-active [data-game-fullscreen-hide] {
  display: none !important;
}

.game-stage.is-fullscreen-active .play-surface {
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--navy);
  box-shadow: none;
}

.game-stage.is-fullscreen-active .play-surface > div {
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
}

.legal-page { max-width: 840px; padding: 54px 0 86px; }
.legal-page header { margin-bottom: 34px; }
.legal-updated { color: var(--muted); font: 13px/1.4 var(--mono); }
.legal-page > p { font-size: 17px; }
.legal-page section { margin-top: 36px; }
.legal-page h2 { font-size: 28px; }
.legal-page p, .legal-page li { color: var(--muted); }
.legal-page a { color: var(--blue); }
.legal-page code { padding: 2px 6px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); color: var(--ink); }

.site-footer { border-top: 6px solid var(--blue); background: var(--navy); color: #fff; }
.site-footer-inner { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #cbd4ff; font-size: 13px; }
.site-footer p { margin: 0; }
.site-footer p a { color: #fff; font-size: 18px; font-weight: 900; text-decoration: none; }
.site-footer nav a { color: #fff; }
.site-footer nav a:hover { background: rgb(255 255 255 / 12%); }

@media (max-width: 900px) {
  .home-hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-playground { min-height: 340px; width: min(520px, 100%); justify-self: center; }
  .coming-soon { grid-template-columns: 1fr; }
  .category-cloud { max-width: 650px; transform: none; }
}

@media (max-width: 720px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { display: grid; grid-template-columns: auto 1fr; column-gap: 18px; }
  .feature-number { grid-row: 1 / 3; margin: 5px 0 0; }
  .feature-grid p { grid-column: 2; }
}

@media (max-width: 820px) {
  .game-heading { grid-template-columns: 1fr; row-gap: 12px; }
  .game-heading > .eyebrow,
  .game-heading > p:last-child { grid-column: 1; }
  .game-heading > p:last-child { margin: 0; }
}

@media (max-width: 640px) {
  .site-header-inner, .site-footer-inner, .home-page, .game-page, .legal-page { width: min(100% - 28px, 1180px); }
  .site-header-inner { min-height: 68px; gap: 8px; }
  .site-name img { width: 126px; }
  .site-nav { gap: 0; }
  .site-nav a { min-height: 38px; padding-inline: 8px; font-size: 13px; }
  .home-hero { margin-top: 22px; padding: 28px 20px 24px; border-radius: 26px; }
  h1 { font-size: clamp(43px, 14vw, 62px); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-playground { min-height: 0; padding: 24px; border-radius: 23px; transform: rotate(1deg); }
  .play-tile { border-width: 5px; border-radius: 16px; }
  .game-library { padding: 26px 16px; border-radius: 24px; }
  .section-heading { align-items: start; }
  .game-finder { grid-template-columns: 1fr auto; }
  .game-finder label { grid-column: 1 / -1; }
  .coming-soon { padding: 32px 22px; border-radius: 25px; }
  .category-cloud { gap: 8px; }
  .category-cloud span { min-height: 42px; padding: 7px 11px; font-size: 13px; }
  .game-stage-toolbar { padding: 11px 11px 11px 16px; border-radius: 16px; }
  .game-stage-hint { display: none; }
  .game-fullscreen-toggle { min-height: 44px; padding: 7px 11px; }
  .play-surface { margin-inline: -14px; border-inline: 0; border-radius: 0; }
  .site-footer-inner { min-height: 145px; flex-direction: column; align-items: flex-start; justify-content: center; }
}

@media (max-width: 380px) {
  body { font-size: 15px; }
  .site-nav a { padding-inline: 6px; font-size: 12px; }
  .site-name img { width: 112px; }
  .category-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .playground-grid { gap: 9px; }
  .play-tile { border-width: 4px; }
}

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