:root {
  color-scheme: dark;
  --ink: #050711;
  --ink-soft: #090d1a;
  --panel: rgba(9, 13, 28, 0.86);
  --panel-solid: #0b1020;
  --paper: #f7fbff;
  --muted: #a9b7d2;
  --muted-strong: #d0d9ea;
  --cyan: #36e4ff;
  --cyan-rgb: 54, 228, 255;
  --magenta: #ff4fc3;
  --magenta-rgb: 255, 79, 195;
  --gold: #ffd75e;
  --lime: #a8ff78;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.19);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 15px;
  --shell: min(1480px, calc(100vw - 40px));
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background: var(--ink);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% -10%, rgba(var(--magenta-rgb), 0.16), transparent 34rem),
    radial-gradient(circle at 88% 5%, rgba(var(--cyan-rgb), 0.13), transparent 36rem),
    linear-gradient(180deg, #050711 0%, #060918 45%, #04060d 100%);
  font-family: var(--body);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  translate: 0 -150%;
  border-radius: 999px;
  padding: 11px 16px;
  color: #041017;
  background: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  transition: translate 160ms ease;
}

.skip-link:focus {
  translate: 0;
}

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

.webgl-stage {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.94;
  filter: saturate(1.16) contrast(1.05);
  mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 92%);
}

.webgl-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 7, 17, 0.22), rgba(5, 7, 17, 0.52) 60%, #050711 100%),
    radial-gradient(circle at center, transparent 20%, rgba(5, 7, 17, 0.42) 100%);
}

.webgl-stage::before {
  position: absolute;
  inset: -12%;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 8%, rgba(var(--cyan-rgb), 0.12), transparent 30%),
    radial-gradient(circle at 28% 16%, rgba(var(--magenta-rgb), 0.1), transparent 24%);
  mix-blend-mode: screen;
}

.webgl-stage canvas {
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  transition: opacity 700ms ease;
}

.webgl-stage.is-ready canvas {
  opacity: 1;
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.arcade-nav {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--shell);
  min-height: 78px;
  margin: 0 auto;
  gap: 20px;
}

.brand {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-width: max-content;
  gap: 11px;
  font-family: var(--display);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(var(--cyan-rgb), 0.46);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(var(--cyan-rgb), 0.16), rgba(var(--magenta-rgb), 0.11));
  box-shadow: inset 0 0 18px rgba(var(--cyan-rgb), 0.08), 0 0 24px rgba(var(--cyan-rgb), 0.08);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  border-radius: 999px;
}

.brand-mark::before {
  width: 15px;
  height: 15px;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 12px rgba(var(--cyan-rgb), 0.7);
}

.brand-mark::after {
  width: 4px;
  height: 4px;
  background: var(--magenta);
  box-shadow: 0 0 11px var(--magenta);
}

.brand-copy span {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: rgba(5, 8, 18, 0.64);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.nav-links a {
  min-height: 34px;
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.07);
}

.nav-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 8px;
}

.nav-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--muted-strong);
  background: rgba(5, 8, 18, 0.68);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.055em;
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-action:hover,
.nav-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(var(--cyan-rgb), 0.5);
  color: #fff;
  background: rgba(var(--cyan-rgb), 0.09);
}

.nav-action.primary {
  border-color: rgba(var(--cyan-rgb), 0.35);
  color: #041017;
  background: var(--cyan);
  box-shadow: 0 10px 28px rgba(var(--cyan-rgb), 0.2);
}

.nav-action.primary:hover,
.nav-action.primary:focus-visible {
  color: #041017;
  background: #7defff;
}

.play-deck,
.catalog,
.player-lounge,
.site-footer {
  width: var(--shell);
  margin-inline: auto;
}

.play-deck {
  display: flex;
  min-height: calc(100svh - 78px);
  flex-direction: column;
  justify-content: center;
  padding: 14px 0 34px;
}

.deck-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-bottom: 14px;
  gap: 24px;
}

.deck-heading h1 {
  display: flex;
  align-items: baseline;
  margin: 0;
  gap: clamp(12px, 2vw, 28px);
  font-family: var(--display);
  line-height: 0.86;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.deck-heading h1 strong {
  color: #fff;
  font-size: clamp(48px, 7.5vw, 112px);
  text-shadow: 0 0 38px rgba(var(--cyan-rgb), 0.18);
}

.deck-heading h1 span {
  color: var(--cyan);
  font-size: clamp(15px, 1.8vw, 25px);
  letter-spacing: 0.01em;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  margin-bottom: 3px;
  gap: 9px;
  border: 1px solid rgba(var(--cyan-rgb), 0.25);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--muted-strong);
  background: rgba(5, 8, 18, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 13px rgba(168, 255, 120, 0.84);
}

.feature-shell {
  position: relative;
  display: grid;
  min-height: min(610px, calc(100svh - 220px));
  max-height: 660px;
  grid-template-columns: minmax(0, 1fr) clamp(282px, 25vw, 360px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: rgba(4, 7, 16, 0.8);
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset,
    0 0 80px rgba(var(--active-rgb, 54, 228, 255), 0.08);
  isolation: isolate;
  backdrop-filter: blur(22px);
}

.feature-shell::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid rgba(var(--active-rgb, 54, 228, 255), 0.2);
  border-radius: inherit;
  pointer-events: none;
  content: "";
  opacity: 0.6;
  transition: border-color 260ms ease;
}

.feature-stage {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  align-items: flex-end;
  background: #080b17;
  isolation: isolate;
}

.feature-stage::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent 58%, rgba(3, 5, 12, 0.22) 100%),
    linear-gradient(180deg, transparent 35%, rgba(3, 5, 12, 0.16) 58%, rgba(3, 5, 12, 0.95) 100%);
}

.feature-stage::after {
  position: absolute;
  z-index: 3;
  right: -110px;
  bottom: -180px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(var(--active-rgb, 54, 228, 255), 0.26);
  border-radius: 50%;
  pointer-events: none;
  content: "";
  box-shadow:
    0 0 0 34px rgba(var(--active-rgb, 54, 228, 255), 0.025),
    0 0 0 72px rgba(var(--active-rgb, 54, 228, 255), 0.018);
}

.feature-art-frame {
  position: absolute;
  z-index: 0;
  inset: -2%;
  width: 104%;
  height: 104%;
  overflow: hidden;
}

.feature-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--feature-position, center);
  filter: saturate(1.06) contrast(1.03);
  transform: scale(var(--feature-scale, 1.01)) translate3d(var(--art-x, 0), var(--art-y, 0), 0);
  transition: opacity 210ms ease, filter 250ms ease, transform 500ms cubic-bezier(0.2, 0.72, 0.25, 1);
  will-change: transform;
}

.feature-art-foreground {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 78% 54%;
  pointer-events: none;
  filter:
    saturate(1.08)
    drop-shadow(0 18px 22px rgba(5, 17, 41, 0.46))
    drop-shadow(0 0 18px rgba(54, 228, 255, 0.22));
  transition: opacity 210ms ease, transform 500ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.feature-art-foreground[hidden] {
  display: none;
}

.feature-shell.is-switching .feature-art {
  opacity: 0.28;
  filter: saturate(0.7) blur(5px);
  transform: scale(1.045);
}

.feature-shell.is-switching .feature-art-foreground {
  opacity: 0;
  transform: translateY(8px) scale(1.025);
}

.feature-content {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(740px, calc(100% - 44px));
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin: 0 22px 22px;
  gap: 20px;
}

.feature-copy {
  min-width: 0;
}

.feature-title-row {
  display: flex;
  min-width: 0;
  align-items: center;
  margin-bottom: 13px;
  gap: 11px;
}

.feature-game-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(var(--active-rgb), 0.44);
  border-radius: 14px;
  background: rgba(4, 7, 16, 0.68);
  box-shadow: 0 0 28px rgba(var(--active-rgb), 0.15);
  backdrop-filter: blur(14px);
}

.feature-game-icon img {
  width: 100%;
  height: 100%;
}

.feature-title-row > div {
  min-width: 0;
}

.feature-now {
  display: block;
  margin-bottom: 3px;
  color: rgba(241, 247, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-title {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.72);
}

.feature-eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 8px;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: var(--active, var(--cyan));
  box-shadow: 0 0 12px var(--active, var(--cyan));
}

.feature-description {
  max-width: 56ch;
  margin: 0;
  color: rgba(246, 250, 255, 0.86);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 620;
  line-height: 1.48;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}

.feature-meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
  gap: 7px;
}

.feature-meta span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 6px 9px;
  color: rgba(247, 251, 255, 0.88);
  background: rgba(4, 7, 16, 0.52);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.feature-play {
  display: inline-flex;
  min-width: 152px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 999px;
  padding: 14px 20px;
  color: #041017;
  background: var(--active, var(--cyan));
  box-shadow:
    0 16px 36px rgba(var(--active-rgb, 54, 228, 255), 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.feature-play::before {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(4, 16, 23, 0.8);
  content: "▶";
  font-size: 9px;
  line-height: 1;
}

.feature-stage:hover .feature-play,
.feature-stage:focus-visible .feature-play {
  transform: translateY(-2px) scale(1.015);
  filter: brightness(1.08);
  box-shadow:
    0 20px 46px rgba(var(--active-rgb, 54, 228, 255), 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.feature-menu {
  position: relative;
  z-index: 4;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(15, 20, 39, 0.97), rgba(5, 8, 18, 0.97)),
    radial-gradient(circle at top, rgba(var(--active-rgb, 54, 228, 255), 0.11), transparent 70%);
}

.menu-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 22px 22px 14px;
  gap: 14px;
}

.menu-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.menu-heading strong {
  color: #fff;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.035em;
}

.menu-count {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-selector {
  display: grid;
  min-height: 0;
  flex: 1;
  grid-template-rows: repeat(7, minmax(54px, 1fr));
  overflow: hidden;
  padding: 0 10px 10px;
  gap: 4px;
}

.game-select {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 54px;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 7px 9px;
  gap: 10px;
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.game-select:hover,
.game-select:focus-visible {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.game-select[aria-selected="true"] {
  border-color: rgba(var(--select-rgb), 0.34);
  background:
    linear-gradient(90deg, rgba(var(--select-rgb), 0.16), rgba(var(--select-rgb), 0.045)),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 3px 0 0 rgb(var(--select-rgb));
}

.game-select[aria-selected="true"]::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(var(--select-rgb));
  box-shadow: 0 0 12px rgb(var(--select-rgb));
  content: "";
}

.game-glyph {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(var(--select-rgb), 0.25);
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(145deg, rgba(var(--select-rgb), 0.2), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 0 14px rgba(var(--select-rgb), 0.08);
}

.game-glyph img {
  width: 100%;
  height: 100%;
}

.game-label {
  min-width: 0;
}

.game-label strong,
.game-label span {
  display: block;
}

.game-label strong {
  overflow: hidden;
  color: #eef5ff;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-label span {
  margin-top: 4px;
  color: #aab7ce;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.feature-menu-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.menu-stat {
  min-width: 0;
  padding: 13px 8px;
  text-align: center;
}

.menu-stat + .menu-stat {
  border-left: 1px solid var(--line);
}

.menu-stat strong,
.menu-stat span {
  display: block;
}

.menu-stat strong {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.menu-stat span {
  margin-top: 3px;
  color: #aebbd1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deck-foot {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 6px 0;
  gap: 16px;
  color: #b2bfd4;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.deck-foot span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.deck-foot span::before {
  width: 22px;
  height: 1px;
  content: "";
  background: var(--line-strong);
}

.deck-foot a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c5d0e4;
}

.deck-foot a::after {
  content: "↓";
  color: var(--cyan);
}

.catalog {
  padding: clamp(74px, 9vw, 140px) 0 22px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  align-items: end;
  margin-bottom: 30px;
  gap: 44px;
}

.section-kicker {
  display: flex;
  align-items: center;
  margin: 0 0 13px;
  gap: 11px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 13px rgba(var(--cyan-rgb), 0.65);
  rotate: 45deg;
}

.section-heading h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5.8vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.section-heading h2 span {
  color: var(--cyan);
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.game-tile {
  --tile-rgb: 54, 228, 255;
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(10, 14, 29, 0.88);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.22);
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(var(--lift, 0));
  transform-style: preserve-3d;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  will-change: transform;
}

.game-tile:nth-child(1),
.game-tile:nth-child(2),
.game-tile:nth-last-child(1),
.game-tile:nth-last-child(2) {
  grid-column: span 6;
}

.game-tile:hover,
.game-tile:focus-visible {
  --lift: -5px;
  border-color: rgba(var(--tile-rgb), 0.52);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.4),
    0 0 45px rgba(var(--tile-rgb), 0.11);
}

.tile-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #101529;
}

.game-tile:nth-child(1) .tile-art,
.game-tile:nth-child(2) .tile-art {
  aspect-ratio: 16 / 8.8;
}

.tile-art::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 55%, rgba(3, 5, 13, 0.88) 100%),
    linear-gradient(90deg, rgba(var(--tile-rgb), 0.09), transparent 46%);
}

.tile-art::after {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: rgb(var(--tile-rgb));
  box-shadow: 0 0 15px rgb(var(--tile-rgb));
}

.tile-art > img:not(.tile-art-foreground) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--tile-position, center);
  filter: saturate(1.04) contrast(1.025);
  transform: scale(var(--tile-scale, 1.01));
  transition: filter 350ms ease, transform 550ms cubic-bezier(0.2, 0.75, 0.22, 1);
}

.tile-art-foreground {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 76% 54%;
  pointer-events: none;
  filter:
    saturate(1.08)
    drop-shadow(0 12px 16px rgba(5, 17, 41, 0.46))
    drop-shadow(0 0 12px rgba(54, 228, 255, 0.2));
  transition: transform 550ms cubic-bezier(0.2, 0.75, 0.22, 1);
}

.game-tile:hover .tile-art > img:not(.tile-art-foreground),
.game-tile:focus-visible .tile-art > img:not(.tile-art-foreground) {
  filter: saturate(1.13) contrast(1.04);
  transform: scale(calc(var(--tile-scale, 1.01) + 0.035));
}

.game-tile:hover .tile-art-foreground,
.game-tile:focus-visible .tile-art-foreground {
  transform: translateY(-4px) scale(1.025);
}

.tile-badge {
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 9px;
  color: #fff;
  background: rgba(4, 7, 16, 0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.tile-body {
  display: grid;
  min-height: 88px;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  padding: 15px 16px 16px;
  gap: 11px;
}

.tile-icon {
  display: block;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 13px;
  box-shadow: 0 0 24px rgba(var(--tile-rgb), 0.11);
}

.tile-icon img {
  width: 100%;
  height: 100%;
}

.tile-title {
  min-width: 0;
}

.tile-title strong,
.tile-title span {
  display: block;
}

.tile-title strong {
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(14px, 1.35vw, 19px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tile-title span {
  margin-top: 7px;
  color: #98a7c3;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tile-launch {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(var(--tile-rgb), 0.36);
  border-radius: 50%;
  color: #041017;
  background: rgb(var(--tile-rgb));
  box-shadow: 0 8px 24px rgba(var(--tile-rgb), 0.16);
  font-size: 10px;
  transition: transform 180ms ease;
}

.game-tile:hover .tile-launch,
.game-tile:focus-visible .tile-launch {
  transform: translateX(2px) scale(1.06);
}

.catalog-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding: 18px 2px;
  gap: 20px;
  color: #96a5bf;
  font-size: 13px;
  line-height: 1.6;
}

.catalog-note strong {
  color: #c9d3e5;
}

.catalog-note a {
  color: var(--cyan);
  font-weight: 850;
}

.player-lounge {
  padding: clamp(74px, 9vw, 132px) 0 36px;
}

.lounge-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--cyan-rgb), 0.22);
  border-radius: var(--radius-xl);
  padding: clamp(23px, 4vw, 50px);
  background:
    radial-gradient(circle at 88% 10%, rgba(var(--cyan-rgb), 0.11), transparent 28rem),
    radial-gradient(circle at 8% 110%, rgba(var(--magenta-rgb), 0.11), transparent 32rem),
    linear-gradient(135deg, rgba(14, 20, 40, 0.97), rgba(5, 8, 18, 0.97));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.lounge-shell::before {
  position: absolute;
  top: -125px;
  right: -95px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(var(--cyan-rgb), 0.18);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 38px rgba(var(--cyan-rgb), 0.018),
    0 0 0 76px rgba(var(--cyan-rgb), 0.012);
}

.pass-guest,
.pass-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.pass-kicker {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pass-title {
  max-width: 15ch;
  margin: 8px 0 9px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 62px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.pass-sub {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pass-guest > button,
.pass-callout a {
  display: inline-flex;
  min-height: 48px;
  flex: none;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  color: #041017;
  background: var(--cyan);
  box-shadow: 0 14px 34px rgba(var(--cyan-rgb), 0.19);
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.pass-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pass-edit {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--cyan-rgb), 0.3);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--cyan);
  background: rgba(var(--cyan-rgb), 0.05);
  font-size: 10px;
  font-weight: 850;
  cursor: pointer;
}

.pass-edit:disabled {
  opacity: 0.5;
  cursor: default;
}

.founding {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 215, 94, 0.34);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--gold);
  background: rgba(255, 215, 94, 0.06);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pass-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
  gap: 10px;
}

.pass-stat,
.game-board {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(2, 5, 14, 0.38);
}

.pass-stat {
  padding: 15px;
}

.pass-stat b,
.pass-stat span {
  display: block;
}

.pass-stat b {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 30px);
}

.pass-stat span {
  margin-top: 5px;
  color: #91a1bc;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pass-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
  gap: 18px;
}

.pass-panel {
  min-width: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.pass-panel h3,
.game-board h3 {
  margin: 0 0 11px;
  color: #aebbd3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pass-rewards {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pass-reward {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  padding: 8px 10px;
  gap: 6px;
  color: #dce5f5;
  background: rgba(255, 255, 255, 0.03);
  font-size: 10px;
  font-weight: 760;
}

.leader-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  padding: 8px 0;
  gap: 8px;
  color: #b7c3da;
  font-size: 11px;
}

.leader-row:last-child {
  border-bottom: 0;
}

.leader-row.you {
  color: var(--cyan);
}

.leader-rank {
  color: #65728d;
  font-weight: 900;
}

.leader-score {
  color: #fff;
  font-weight: 900;
}

.pass-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 215, 94, 0.18);
  border-radius: var(--radius-md);
  margin-top: 14px;
  padding: 13px;
  gap: 14px;
  background: rgba(255, 215, 94, 0.04);
}

.pass-callout b,
.pass-callout span {
  display: block;
}

.pass-callout b {
  color: var(--gold);
  font-size: 12px;
}

.pass-callout span {
  margin-top: 4px;
  color: #8b99b5;
  font-size: 10px;
  line-height: 1.5;
}

.pass-callout a {
  min-height: 44px;
  padding: 9px 12px;
  font-size: 10px;
}

.game-boards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  gap: 10px;
}

.game-board {
  padding: 13px;
}

.game-board .leader-row {
  grid-template-columns: 22px minmax(0, 1fr) auto;
  padding: 6px 0;
  font-size: 9px;
}

.pass-name-input {
  min-width: 0;
  width: min(260px, 56vw);
  border: 1px solid rgba(var(--cyan-rgb), 0.4);
  border-radius: 11px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(2, 5, 14, 0.64);
}

.pass-name-input:focus {
  border-color: var(--cyan);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--cyan-rgb), 0.11);
}

.pass-name-error {
  color: #ff94b9;
  font-size: 10px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 25px 2px 36px;
  gap: 24px;
  color: #aab8cf;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer strong {
  color: #eef5ff;
}

.site-footer a {
  color: var(--cyan);
  font-weight: 800;
}

.gate[hidden] {
  display: none;
}

.gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

.gate-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 4, 11, 0.88);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.gate-panel {
  position: relative;
  width: min(100%, 500px);
  border: 1px solid rgba(var(--cyan-rgb), 0.29);
  border-radius: 24px;
  padding: clamp(24px, 5vw, 38px);
  background:
    radial-gradient(circle at 92% 0, rgba(var(--cyan-rgb), 0.12), transparent 18rem),
    linear-gradient(145deg, #121a31, #060a17);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.68);
}

.gate-close {
  position: absolute;
  top: 11px;
  right: 13px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #aab7cf;
  background: transparent;
  font-size: 25px;
  cursor: pointer;
}

.gate-close:hover,
.gate-close:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.gate-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gate-panel h2 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(29px, 6vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.gate-copy {
  margin: 15px 0 0;
  color: #bdc8dc;
  font-size: 14px;
  line-height: 1.6;
}

.gate-form {
  display: flex;
  margin-top: 22px;
  gap: 9px;
}

.gate-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  padding: 13px 14px;
  color: #fff;
  outline: none;
  background: #050914;
  font-size: 16px;
}

.gate-form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(var(--cyan-rgb), 0.11);
}

.gate-form button {
  border: 0;
  border-radius: 13px;
  padding: 13px 17px;
  color: #041017;
  background: var(--cyan);
  font-weight: 900;
  cursor: pointer;
}

.gate-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: #91f5ca;
  font-size: 12px;
  line-height: 1.5;
}

.gate-fine {
  margin: 10px 0 0;
  color: #7785a0;
  font-size: 10px;
  line-height: 1.5;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 28px, 1480px);
  }

  .arcade-nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .feature-shell {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .game-tile {
    grid-column: span 6;
  }

  .game-tile:nth-child(1),
  .game-tile:nth-child(2),
  .game-tile:nth-last-child(1),
  .game-tile:nth-last-child(2) {
    grid-column: span 6;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 24px);
    --radius-xl: 22px;
  }

  html {
    scroll-padding-top: 70px;
  }

  .webgl-stage {
    opacity: 0.76;
  }

  .arcade-nav {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    padding: 10px 0 7px;
    gap: 7px 8px;
  }

  .nav-links {
    display: flex;
    width: 100%;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    padding: 3px;
    gap: 2px;
  }

  .nav-links a {
    min-height: 30px;
    flex: 1;
    padding: 7px 5px;
    font-size: 9px;
    letter-spacing: 0.07em;
    text-align: center;
  }

  .brand {
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .nav-action {
    min-height: 40px;
    padding: 9px 11px;
    font-size: 11px;
  }

  .nav-action.news-link {
    display: inline-flex;
    min-width: 56px;
    padding-inline: 9px;
    font-size: 0;
  }

  .nav-action.news-link::after {
    content: "News ↗";
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .play-deck {
    min-height: 0;
    justify-content: flex-start;
    padding: 9px 0 0;
  }

  .deck-heading {
    display: block;
    margin: 2px 2px 13px;
  }

  .deck-heading h1 {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    justify-content: start;
    gap: 5px;
    line-height: 1;
  }

  .deck-heading h1 strong {
    font-size: clamp(44px, 13vw, 56px);
    line-height: 0.88;
  }

  .deck-heading h1 span {
    display: inline-flex;
    max-width: none;
    align-items: center;
    gap: 8px;
    font-size: clamp(13px, 3.6vw, 14px);
    line-height: 1.2;
    letter-spacing: 0.09em;
    text-align: left;
  }

  .deck-heading h1 span::before {
    width: 18px;
    height: 2px;
    flex: none;
    content: "";
    background: currentColor;
    box-shadow: 0 0 12px rgba(var(--cyan-rgb), 0.72);
  }

  .live-pill {
    display: none;
  }

  .feature-shell {
    min-height: 0;
    max-height: none;
    grid-template-columns: 1fr;
    overflow: visible;
    border-radius: var(--radius-xl);
    background: transparent;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: none;
  }

  .feature-shell::before {
    display: none;
  }

  .feature-stage {
    display: block;
    min-height: 0;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }

  .feature-stage::before {
    display: none;
  }

  .feature-stage::after {
    display: none;
  }

  .feature-art-frame {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1200 / 630;
  }

  .feature-art {
    position: absolute;
    inset: 0;
  }

  .feature-art-foreground {
    object-position: 76% 52%;
  }

  .feature-content {
    position: relative;
    grid-template-columns: 1fr;
    align-items: end;
    width: 100%;
    margin: 0;
    padding: 14px;
    gap: 10px;
    background:
      radial-gradient(circle at 100% 0, rgba(var(--active-rgb, 54, 228, 255), 0.1), transparent 15rem),
      linear-gradient(180deg, #0a0e1c, #060914);
  }

  .feature-title-row {
    margin-bottom: 9px;
    gap: 9px;
  }

  .feature-game-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .feature-title {
    font-size: clamp(20px, 6.3vw, 28px);
    line-height: 1;
  }

  .feature-now {
    font-size: 10px;
  }

  .feature-eyebrow {
    margin-bottom: 7px;
    font-size: 11px;
  }

  .feature-description {
    display: block;
    max-width: none;
    overflow: visible;
    font-size: 13px;
    line-height: 1.5;
    -webkit-line-clamp: unset;
  }

  .feature-meta {
    display: none;
  }

  .feature-play {
    width: 100%;
    min-height: 50px;
  }

  .feature-menu {
    overflow: hidden;
    border: 1px solid var(--line);
    border-top: 0;
    border-left: 1px solid var(--line);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  }

  .feature-menu-foot {
    display: none;
  }

  .menu-heading {
    display: flex;
    align-items: baseline;
    padding: 9px 11px 3px;
  }

  .menu-heading > div {
    display: block;
  }

  .menu-heading p,
  .menu-count {
    font-family: var(--body);
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-heading strong {
    display: none;
  }

  .game-selector {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, 48px);
    overflow: hidden;
    padding: 8px;
    gap: 6px;
  }

  .game-select {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    grid-column: auto;
    grid-template-columns: 32px minmax(0, 1fr);
    grid-template-rows: 1fr;
    justify-items: stretch;
    border-radius: 12px;
    padding: 6px 7px;
    gap: 7px;
    text-align: left;
  }

  .game-select::before {
    display: none;
    content: none;
  }

  .game-select:nth-child(5),
  .game-select:nth-child(6) {
    grid-column: auto;
  }

  .game-select:nth-child(7) {
    width: calc(50% - 3px);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .game-select[aria-selected="true"] {
    box-shadow: inset 3px 0 0 rgb(var(--select-rgb));
  }

  .game-select[aria-selected="true"]::after {
    position: static;
    display: block;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    box-shadow: none;
    content: attr(data-mobile-label);
  }

  .game-glyph {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .game-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .game-select::after {
    position: static;
    display: block;
    width: auto;
    height: auto;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    border-radius: 0;
    color: #eef5ff;
    background: none;
    box-shadow: none;
    content: attr(data-mobile-label);
    font-size: 11px;
    line-height: 1.14;
    font-weight: 850;
    white-space: nowrap;
  }

  .deck-foot {
    display: none;
  }

  .catalog {
    padding-top: 62px;
  }

  .section-heading {
    display: block;
    margin-bottom: 22px;
  }

  .section-heading h2 {
    max-width: 11ch;
    font-size: clamp(38px, 12.5vw, 62px);
  }

  .section-heading > p {
    margin-top: 17px;
    font-size: 12px;
  }

  .game-grid {
    gap: 10px;
  }

  .game-tile,
  .game-tile:nth-child(1),
  .game-tile:nth-child(2),
  .game-tile:nth-last-child(1),
  .game-tile:nth-last-child(2) {
    grid-column: span 6;
    border-radius: 16px;
  }

  .tile-art,
  .game-tile:nth-child(1) .tile-art,
  .game-tile:nth-child(2) .tile-art {
    aspect-ratio: 1 / 1;
  }

  .tile-body {
    min-height: 82px;
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 12px 11px 13px;
    gap: 9px;
  }

  .tile-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .tile-title strong {
    font-size: 13px;
  }

  .tile-title span {
    margin-top: 5px;
    font-size: 9px;
    line-height: 1.35;
  }

  .tile-launch {
    position: absolute;
    z-index: 4;
    right: 10px;
    bottom: 72px;
    width: 44px;
    height: 44px;
  }

  .tile-badge {
    top: 9px;
    left: 9px;
    padding: 6px 7px;
    font-size: 9px;
  }

  .catalog-note {
    display: block;
    font-size: 12px;
  }

  .catalog-note a {
    display: inline-block;
    margin-top: 8px;
  }

  .player-lounge {
    padding-top: 86px;
  }

  .lounge-shell {
    padding: 22px 17px;
  }

  .pass-guest,
  .pass-top {
    flex-direction: column;
    align-items: stretch;
  }

  .pass-title {
    font-size: 38px;
  }

  .pass-guest > button {
    width: 100%;
  }

  .pass-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .pass-grid,
  .game-boards {
    grid-template-columns: 1fr;
  }

  .pass-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .gate-form {
    flex-direction: column;
  }

  .gate-form button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .brand {
    font-size: 11px;
    letter-spacing: 0.045em;
  }

  .nav-action {
    padding-inline: 10px;
  }

  .feature-content {
    padding-inline: 13px;
  }

  .game-selector {
    padding-inline: 8px;
    gap: 6px 4px;
  }
}

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

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

  .webgl-stage {
    display: none;
  }

  .game-tile,
  .feature-art {
    transform: none !important;
  }
}

@media (forced-colors: active) {
  .webgl-stage {
    display: none;
  }

  .feature-shell,
  .game-tile,
  .lounge-shell,
  .nav-action {
    border: 1px solid CanvasText;
  }
}
