@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800;900&display=swap");

:root {
  color-scheme: light;
  --ink: #203126;
  --muted: #6a7a70;
  --paper: #fbfaf4;
  --panel: #ffffff;
  --line: #d8ddd2;
  --leaf: #2f8f5b;
  --leaf-dark: #24543b;
  --mango: #f3b33d;
  --coral: #d96b53;
  --sky: #78b7c6;
  --shadow: 0 18px 42px rgba(24, 33, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 30;
  padding: 10px 12px;
  color: #f5faee;
  background: var(--leaf-dark);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 0 clamp(16px, 4vw, 48px);
  background: rgba(251, 250, 244, 0.92);
  border-bottom: 1px solid rgba(216, 221, 210, 0.82);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.game-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 1.26fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100svh - 68px);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 74px) 0 28px;
}

.game-introduction {
  max-width: 470px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.summary {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.55;
}

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

.flash-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  background: #d9efe8;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.flash-container[data-state="playing"] {
  background: #101713;
}

.game-poster {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(120, 183, 198, 0.58), rgba(251, 250, 244, 0.18)),
    radial-gradient(circle at 22% 24%, rgba(243, 179, 61, 0.65), transparent 18rem),
    #d6ead5;
}

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

.sun {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--mango);
  box-shadow: 0 0 0 14px rgba(243, 179, 61, 0.18);
}

.branch {
  position: absolute;
  right: -8%;
  bottom: 22%;
  width: 78%;
  height: 28px;
  border-radius: 999px;
  background: #6e4b30;
  transform: rotate(-9deg);
  box-shadow: inset 0 -7px 0 rgba(0, 0, 0, 0.14);
}

.leaf {
  position: absolute;
  width: 160px;
  height: 76px;
  border-radius: 100% 0 100% 0;
  background: var(--leaf);
  opacity: 0.96;
}

.leaf-one {
  right: 8%;
  top: 16%;
  transform: rotate(24deg);
}

.leaf-two {
  left: -3%;
  bottom: 20%;
  background: #77a948;
  transform: rotate(-22deg);
}

.bug {
  position: absolute;
  width: 20px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow:
    -9px -4px 0 rgba(255, 255, 255, 0.55),
    9px -4px 0 rgba(255, 255, 255, 0.55);
}

.bug-one {
  top: 34%;
  left: 36%;
}

.bug-two {
  top: 56%;
  left: 20%;
  background: #6b8ed6;
}

.poster-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
}

.play-game {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 180px;
  min-height: 58px;
  padding: 0 25px;
  color: #f5faee;
  background: var(--coral);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(93, 39, 31, 0.24);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 850;
}

.play-game:hover,
.play-game:focus-visible {
  background: #d94f3d;
  transform: translateY(-1px);
}

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

.game-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.game-status {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.tool-button {
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 750;
}

.tool-button:not(:disabled):hover,
.tool-button:not(:disabled):focus-visible {
  border-color: var(--leaf);
  color: var(--leaf-dark);
}

.tool-button:disabled {
  color: #9ca69e;
  cursor: not-allowed;
}

.content-band {
  padding: clamp(44px, 8vw, 88px) 16px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.content-band.muted {
  background:
    radial-gradient(circle at 16% 12%, rgba(184, 255, 156, 0.12), transparent 18rem),
    radial-gradient(circle at 86% 18%, rgba(186, 246, 255, 0.1), transparent 18rem),
    linear-gradient(180deg, #3b2e1f, #241c15);
  border-top-color: rgba(184, 255, 156, 0.16);
}

.content-inner {
  width: min(960px, 100%);
  margin: 0 auto;
}

.content-inner.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

.content-inner h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.content-inner p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

code {
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: #edf0e8;
  color: var(--leaf-dark);
  font-size: 0.92em;
}

.guide-section {
  padding: clamp(46px, 7vw, 84px) 16px;
  background:
    linear-gradient(180deg, rgba(251, 250, 246, 0.16), transparent 64px),
    radial-gradient(circle at 86% 12%, rgba(143, 255, 122, 0.11), transparent 17rem),
    linear-gradient(180deg, #443522, #3b2e1f);
  border-top: 1px solid rgba(185, 255, 161, 0.16);
}

.guide-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.guide-inner > h2 {
  margin-bottom: 28px;
  color: #f5faee;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
}

.guide-copy + .guide-copy {
  margin-top: 26px;
}

.guide-copy h3 {
  margin-bottom: 16px;
  color: #a9f6b2;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guide-copy p {
  max-width: 980px;
  margin-bottom: 20px;
  color: rgba(230, 241, 224, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.5;
}

.guide-copy ul {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding-left: 38px;
  color: rgba(230, 241, 224, 0.8);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.45;
}

.guide-copy li::marker {
  color: #aee8f0;
  font-size: 1.15em;
}

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

#faq {
  color: rgba(230, 241, 224, 0.78);
}

.faq-list details {
  overflow: hidden;
  color: rgba(230, 241, 224, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 255, 156, 0.18);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(8, 7, 6, 0.18);
}

.faq-list details[open] {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(184, 255, 156, 0.3);
}

.faq-list summary {
  padding: 16px 18px;
  color: #f2ffe4;
  cursor: pointer;
  font-weight: 850;
}

.faq-list summary:hover,
.faq-list summary:focus-visible {
  color: #a9f6b2;
}

.faq-list summary::marker {
  color: #aee8f0;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: rgba(230, 241, 224, 0.76);
  line-height: 1.7;
}

#faq .eyebrow {
  color: #aee8f0;
}

#faq .content-inner h2 {
  color: #a9f6b2;
  text-shadow: 0 10px 30px rgba(184, 255, 156, 0.12);
}

#faq .content-inner p {
  color: rgba(230, 241, 224, 0.78);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  min-height: 70px;
  color: rgba(230, 241, 224, 0.68);
  background: #241c15;
  border-top: 1px solid rgba(184, 255, 156, 0.16);
}

.site-footer a {
  color: #a9f6b2;
  font-weight: 750;
}

.policy-page {
  min-height: calc(100svh - 158px);
  padding:
    clamp(38px, 7vw, 84px)
    max(18px, calc((100vw - 1020px) / 2));
  background:
    radial-gradient(circle at 16% 12%, rgba(184, 255, 156, 0.12), transparent 18rem),
    radial-gradient(circle at 84% 18%, rgba(186, 246, 255, 0.1), transparent 20rem),
    linear-gradient(180deg, #2d241a, #241c15);
}

.policy-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 4.5vw, 48px);
  color: rgba(230, 241, 224, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 255, 156, 0.18);
  border-radius: 16px;
  box-shadow: 0 24px 54px rgba(8, 7, 6, 0.2);
}

.policy-card .eyebrow {
  color: #aee8f0;
}

.policy-card h1 {
  margin-right: 0;
  margin-bottom: 18px;
  margin-left: 0;
  color: #a9f6b2;
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 0.95;
  text-shadow: 0 10px 30px rgba(184, 255, 156, 0.12);
}

.policy-card h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: #f2ffe4;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.2;
}

.policy-card p {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(230, 241, 224, 0.78);
  font-size: 1rem;
  line-height: 1.75;
}

.press-nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
}

.press-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  border: 1px solid rgba(216, 221, 210, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.press-nav a[aria-current="page"] {
  color: #203126;
  background: #b8ff9c;
  border-color: rgba(184, 255, 156, 0.72);
}

.press-page {
  min-height: calc(100svh - 158px);
  padding:
    clamp(34px, 6vw, 74px)
    max(18px, calc((100vw - 1100px) / 2));
  color: rgba(230, 241, 224, 0.8);
  background:
    radial-gradient(circle at 16% 8%, rgba(184, 255, 156, 0.12), transparent 18rem),
    radial-gradient(circle at 86% 16%, rgba(186, 246, 255, 0.1), transparent 20rem),
    linear-gradient(180deg, #2d241a, #241c15);
}

.press-hero,
.press-section {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.press-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
  margin-bottom: clamp(26px, 5vw, 54px);
}

.press-hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  color: #a9f6b2;
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  line-height: 0.92;
  text-shadow: 0 10px 30px rgba(184, 255, 156, 0.14);
}

.press-hero .summary {
  max-width: 720px;
  color: rgba(230, 241, 224, 0.82);
}

.press-facts,
.press-copy-grid article,
.asset-grid article,
.submission-block {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 255, 156, 0.18);
  border-radius: 16px;
  box-shadow: 0 24px 54px rgba(8, 7, 6, 0.16);
}

.press-facts {
  padding: clamp(20px, 3vw, 28px);
}

.press-facts h2,
.press-section h2 {
  margin-bottom: 16px;
  color: #f2ffe4;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.1;
}

.press-facts dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.press-facts dt,
.asset-grid span {
  margin-bottom: 4px;
  color: #aee8f0;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.press-facts dd {
  margin: 0;
  color: rgba(230, 241, 224, 0.84);
  line-height: 1.55;
}

.press-facts a,
.asset-grid a,
.submission-block a {
  color: #a9f6b2;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.press-section {
  margin-bottom: clamp(24px, 4vw, 42px);
}

.press-copy-grid,
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.press-copy-grid article,
.asset-grid article,
.submission-block {
  padding: clamp(18px, 3vw, 24px);
}

.press-copy-grid h3,
.submission-block h3 {
  margin-bottom: 8px;
  color: #a9f6b2;
  font-size: 1.05rem;
}

.press-copy-grid p,
.press-list,
.submission-block p,
.press-note {
  color: rgba(230, 241, 224, 0.78);
  line-height: 1.7;
}

.press-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.asset-grid article {
  display: grid;
  gap: 6px;
}

.press-note {
  margin-top: 14px;
  margin-bottom: 0;
}

.submission-block {
  max-width: 820px;
}

.submission-block p:not(:last-child) {
  margin-bottom: 18px;
}

.comparison-page {
  min-height: calc(100svh - 158px);
  padding:
    clamp(34px, 6vw, 74px)
    max(18px, calc((100vw - 1120px) / 2));
  color: rgba(230, 241, 224, 0.82);
  background:
    radial-gradient(circle at 12% 10%, rgba(120, 183, 198, 0.13), transparent 18rem),
    radial-gradient(circle at 88% 12%, rgba(243, 179, 61, 0.12), transparent 18rem),
    linear-gradient(180deg, #2d241a, #241c15);
}

.comparison-hero,
.comparison-section {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.comparison-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
  margin-bottom: clamp(26px, 5vw, 56px);
}

.comparison-hero h1 {
  max-width: 820px;
  color: #a9f6b2;
  font-size: clamp(2.45rem, 6vw, 5rem);
  line-height: 0.94;
  text-shadow: 0 10px 30px rgba(184, 255, 156, 0.14);
}

.comparison-hero .summary {
  max-width: 760px;
  color: rgba(230, 241, 224, 0.82);
}

.comparison-note,
.verdict-grid article,
.alternative-grid article,
.split-comparison aside {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 255, 156, 0.18);
  border-radius: 16px;
  box-shadow: 0 24px 54px rgba(8, 7, 6, 0.16);
}

.comparison-note {
  padding: clamp(20px, 3vw, 28px);
}

.comparison-note h2,
.comparison-section h2 {
  margin-bottom: 14px;
  color: #f2ffe4;
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  line-height: 1.12;
}

.comparison-note p,
.comparison-section p,
.comparison-section li {
  color: rgba(230, 241, 224, 0.78);
  line-height: 1.75;
}

.comparison-section {
  margin-bottom: clamp(28px, 4.5vw, 52px);
}

.verdict-grid,
.alternative-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.verdict-grid article,
.alternative-grid article {
  padding: clamp(18px, 3vw, 24px);
}

.verdict-grid h3,
.alternative-grid h3,
.split-comparison h3 {
  margin-bottom: 8px;
  color: #a9f6b2;
  font-size: 1.08rem;
}

.alternative-grid span,
.keyword-cloud span {
  color: #aee8f0;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(184, 255, 156, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 54px rgba(8, 7, 6, 0.16);
}

.comparison-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  color: rgba(230, 241, 224, 0.78);
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(184, 255, 156, 0.12);
}

.comparison-table thead th {
  color: #f2ffe4;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.18);
}

.comparison-table tbody th {
  color: #a9f6b2;
  font-weight: 850;
}

.comparison-table a,
.source-list a {
  color: #a9f6b2;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.split-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(18px, 4vw, 42px);
}

.split-comparison aside {
  padding: clamp(18px, 3vw, 24px);
}

.split-comparison ul,
.source-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.keyword-cloud {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.keyword-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(186, 246, 255, 0.24);
  border-radius: 999px;
  background: rgba(186, 246, 255, 0.08);
}

.comparison-faq details {
  border: 1px solid rgba(184, 255, 156, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.comparison-faq details + details {
  margin-top: 10px;
}

.comparison-faq summary {
  cursor: pointer;
  padding: 16px 18px;
  color: #f2ffe4;
  font-weight: 850;
}

.comparison-faq p {
  margin: 0;
  padding: 0 18px 18px;
}

.guide-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.guide-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  color: #a9f6b2;
  font-weight: 850;
  border: 1px solid rgba(184, 255, 156, 0.24);
  border-radius: 999px;
  background: rgba(184, 255, 156, 0.08);
}

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

.guide-card,
.step-list li,
.phase-list article {
  padding: clamp(18px, 3vw, 24px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 255, 156, 0.18);
  border-radius: 16px;
  box-shadow: 0 24px 54px rgba(8, 7, 6, 0.14);
}

.guide-card h3,
.step-list h3,
.phase-list h3 {
  margin-bottom: 8px;
  color: #a9f6b2;
  font-size: 1.08rem;
}

.step-list,
.phase-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list span,
.phase-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  color: #241c15;
  font-weight: 900;
  border-radius: 999px;
  background: #b8ff9c;
}

.guide-callout {
  padding: clamp(20px, 3.5vw, 30px);
  border: 1px solid rgba(186, 246, 255, 0.22);
  border-radius: 16px;
  background: rgba(186, 246, 255, 0.08);
}

.guide-callout h3 {
  margin-bottom: 10px;
  color: #aee8f0;
}

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

.guide-links a {
  display: block;
  padding: 18px;
  color: #a9f6b2;
  font-weight: 850;
  border: 1px solid rgba(184, 255, 156, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-block: 14px;
  }

  .game-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .game-introduction {
    max-width: 720px;
  }

  .content-inner.split {
    grid-template-columns: 1fr;
  }

  .press-hero,
  .press-copy-grid,
  .asset-grid,
  .comparison-hero,
  .verdict-grid,
  .alternative-grid,
  .split-comparison,
  .guide-grid,
  .guide-card-grid,
  .guide-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .game-section {
    width: 100%;
    padding-top: 24px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .flash-container {
    min-height: 220px;
  }

  .sun {
    width: 64px;
    height: 64px;
  }

  .game-toolbar {
    align-items: stretch;
    flex-direction: column;
    justify-content: stretch;
  }

  .poster-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(260px, 100%);
  }

  .play-game {
    width: 100%;
  }

  .tool-button {
    flex: 1;
  }
}

/* Steam guide game shell */
body {
  background:
    radial-gradient(circle at 14% 10%, rgba(184, 255, 156, 0.12), transparent 20rem),
    radial-gradient(circle at 84% 16%, rgba(120, 183, 198, 0.16), transparent 22rem),
    linear-gradient(180deg, #221a13 0%, #2d241a 38%, #fbfaf6 78%);
  font-family:
    Outfit, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  justify-content: flex-start;
  min-height: 88px;
  padding: 0 clamp(18px, 5vw, 66px);
  background: rgba(34, 26, 19, 0.82);
  border-bottom: 1px solid rgba(184, 255, 156, 0.18);
  box-shadow: 0 10px 28px rgba(12, 10, 8, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  gap: 14px;
  color: #f2ffe4;
  font-size: 1.05rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  background: #f8ffe9;
  border: 1px solid rgba(184, 255, 156, 0.28);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(8, 7, 6, 0.18);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-mark::before,
.brand-mark::after {
  display: none;
}

.language-switcher {
  position: relative;
  min-width: max-content;
  margin-left: auto;
  color: rgba(242, 255, 228, 0.78);
  flex: 0 0 auto;
}

.site-header .press-nav + .language-switcher {
  margin-left: 0;
}

.language-menu {
  position: relative;
}

.language-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  color: #f2ffe4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 255, 156, 0.22);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 900;
  list-style: none;
  white-space: nowrap;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.language-menu[open] summary {
  color: #203126;
  background: #b8ff9c;
}

.language-menu[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.language-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 25;
  display: grid;
  min-width: 190px;
  padding: 8px;
  background: rgba(34, 26, 19, 0.96);
  border: 1px solid rgba(184, 255, 156, 0.2);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(8, 7, 6, 0.28);
  backdrop-filter: blur(16px);
}

.language-options a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  color: rgba(242, 255, 228, 0.82);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
}

.language-options a:hover,
.language-options a:focus-visible {
  color: #a9f6b2;
  background: rgba(184, 255, 156, 0.1);
}

.language-options a[aria-current="true"] {
  color: #203126;
  background: #b8ff9c;
}

.game-section {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vw, 30px);
  width: 100%;
  min-height: auto;
  box-sizing: border-box;
  padding:
    clamp(22px, 3.5vw, 36px)
    max(24px, calc((100vw - 1220px) / 2))
    clamp(28px, 5vw, 52px);
}

.hero-copy {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-copy .eyebrow {
  margin-bottom: 10px;
  color: #a9f6b2;
  letter-spacing: 0.16em;
}

.hero-copy h1 {
  margin-bottom: 12px;
  color: #a9f6b2;
  font-size: clamp(2.65rem, 6.6vw, 5.25rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 10px 34px rgba(184, 255, 156, 0.18);
}

.hero-copy .summary {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(230, 241, 224, 0.82);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-button,
.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
}

.hero-button {
  color: #203126;
  background: #b8ff9c;
  box-shadow: 0 14px 30px rgba(184, 255, 156, 0.18);
}

.hero-link {
  color: rgba(242, 255, 228, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 255, 156, 0.18);
}

.game-introduction {
  width: min(980px, 100%);
  max-width: none;
  margin: 0 auto;
  padding-top: clamp(6px, 1.6vw, 16px);
  text-align: left;
}

.game-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.game-highlights article {
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(184, 255, 156, 0.17);
  border-radius: 12px;
  color: rgba(230, 241, 224, 0.78);
}

.game-highlights span {
  display: block;
  margin-bottom: 7px;
  color: #aee8f0;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-highlights strong {
  display: block;
  margin-bottom: 8px;
  color: #f2ffe4;
  font-size: 1rem;
  line-height: 1.15;
}

.game-highlights p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.game-introduction .eyebrow {
  margin-bottom: 8px;
  color: #aee8f0;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.game-introduction h1 {
  margin-right: 0;
  margin-left: 0;
}

.kicker {
  margin-bottom: 8px;
  color: #596a62;
  font-size: 1.05rem;
  font-weight: 850;
}

h1 {
  max-width: 980px;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  color: #1f2d28;
  font-size: clamp(2.25rem, 5.2vw, 4.05rem);
  line-height: 1.05;
}

h1 .accent,
#game-title {
  background: none;
  -webkit-background-clip: text;
  background-clip: text;
}

#game-title {
  color: #a9f6b2;
}

.summary {
  max-width: 760px;
  margin: 0;
  color: rgba(230, 241, 224, 0.78);
}

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

.intro-grid article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 255, 156, 0.17);
  border-radius: 8px;
}

.intro-grid h2 {
  margin-bottom: 8px;
  color: #f2ffe4;
  font-size: 1rem;
  line-height: 1.25;
}

.intro-grid p {
  margin: 0;
  color: rgba(230, 241, 224, 0.76);
  font-size: 0.95rem;
  line-height: 1.55;
}

.playground-grid {
  display: grid;
  grid-template-columns: minmax(0, 1180px);
  gap: 0;
  align-items: start;
  justify-content: center;
  justify-items: center;
  width: 100%;
  margin-inline: auto;
}

.flash-container {
  border: 1px solid rgba(184, 255, 156, 0.25);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.game-shell {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 0;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.flash-container {
  width: min(900px, 100%);
  min-height: 506px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #4f8f8a;
  transition:
    width 240ms ease,
    min-height 240ms ease,
    border-radius 240ms ease,
    box-shadow 240ms ease;
}

.flash-container[data-state="playing"] {
  width: min(1180px, 100%);
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.2);
}

.game-poster {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 72% 74%, rgba(255, 255, 255, 0.2), transparent 8rem),
    linear-gradient(135deg, #4f9690, #477b78);
}

.poster-actions {
  position: relative;
  inset: auto;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.play-game {
  min-width: 260px;
  min-height: 82px;
  margin: 0 auto;
  padding: 0 38px;
  background: #ffffff;
  color: #203126;
  border-radius: 999px;
  box-shadow: 0 18px 28px rgba(24, 31, 54, 0.16);
  font-size: 1.35rem;
  text-align: center;
  text-transform: uppercase;
}

.play-game:hover,
.play-game:focus-visible {
  background: #f8fafc;
}

.game-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(820px, 100%);
  margin-top: 14px;
  margin-right: auto;
  margin-left: auto;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(184, 255, 156, 0.18);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(91, 91, 121, 0.08);
}

.toolbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
  flex-wrap: wrap;
}

.game-status {
  min-width: 0;
  flex: 1 1 260px;
}

.tool-button {
  border-radius: 999px;
}

.tool-button.quiet {
  color: rgba(242, 255, 228, 0.76);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(184, 255, 156, 0.14);
}

.tool-button.quiet:hover,
.tool-button.quiet:focus-visible {
  color: #3d5049;
  background: #ffffff;
}

.home-shortcuts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  gap: 12px;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 255, 156, 0.17);
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.home-shortcuts__grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 26vw, 260px);
  gap: 10px;
  min-width: 0;
  overflow-x: auto;
  padding: 2px 2px 7px;
  scrollbar-width: thin;
}

.home-shortcut {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 96px;
  padding: 10px;
  overflow: hidden;
  color: rgba(230, 241, 224, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 255, 156, 0.16);
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.home-shortcut img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid rgba(184, 255, 156, 0.14);
  border-radius: 8px;
}

.home-shortcut__copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.home-shortcut__name {
  overflow: hidden;
  color: #f2ffe4;
  font-size: 0.93rem;
  font-weight: 850;
  line-height: 1.15;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-shortcut__meta {
  overflow: hidden;
  color: #aee8f0;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-shortcut:hover,
.home-shortcut:focus-visible,
.home-shortcuts__all:hover,
.home-shortcuts__all:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(184, 255, 156, 0.34);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
  outline: none;
}

.home-shortcuts__all {
  display: grid;
  place-items: center;
  min-height: 54px;
  color: #203126;
  background: #b8ff9c;
  border: 1px solid rgba(184, 255, 156, 0.34);
  border-radius: 8px;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(184, 255, 156, 0.12);
  transition:
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.home-shortcuts__all::before {
  content: "+";
}

.home-all-games {
  display: grid;
  gap: 14px;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 14px;
  background:
    radial-gradient(circle at 14% 8%, rgba(120, 183, 198, 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(65, 55, 43, 0.96), rgba(45, 36, 27, 0.96));
  border: 1px solid rgba(184, 255, 156, 0.17);
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.home-all-games__bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.home-all-games__title,
.home-all-games__count {
  margin: 0;
}

.home-all-games__title {
  color: #aee8f0;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-all-games__count {
  color: rgba(230, 241, 224, 0.68);
  font-size: 0.86rem;
  font-weight: 850;
}

.home-all-games__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: minmax(86px, auto);
  gap: 10px;
}

.home-all-games__grid.is-updating {
  pointer-events: none;
}

.home-all-card {
  appearance: none;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-width: 0;
  min-height: 86px;
  padding: 8px;
  color: rgba(230, 241, 224, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 255, 156, 0.16);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-decoration: none;
  transition:
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

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

.home-all-card img {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 255, 156, 0.14);
  border-radius: 8px;
}

.home-all-card__copy {
  display: grid;
  gap: 4px;
  align-content: center;
  min-width: 0;
}

.home-all-card__name {
  overflow: hidden;
  color: #f2ffe4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.12;
}

.home-all-card__meta {
  overflow: hidden;
  color: #aee8f0;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-all-card:hover,
.home-all-card:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(184, 255, 156, 0.34);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
  outline: none;
}

.home-all-games__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.home-all-games__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 40px;
  padding: 0 12px;
  color: rgba(242, 255, 228, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 255, 156, 0.16);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    border-color 160ms ease;
}

.home-all-games__page:hover,
.home-all-games__page:focus-visible {
  color: #203126;
  background: #b8ff9c;
  border-color: rgba(184, 255, 156, 0.72);
  transform: translateY(-1px);
  outline: none;
}

.home-all-games__page[aria-pressed="true"] {
  color: #203126;
  background: #b8ff9c;
  border-color: rgba(184, 255, 156, 0.72);
}

.home-all-games__page:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 720px) {
  .home-shortcuts {
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 10px;
    padding: 10px;
  }

  .home-shortcuts__grid {
    grid-auto-columns: minmax(240px, 100%);
  }

  .home-shortcut {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 10px;
    min-height: 86px;
    padding: 9px;
  }

  .home-shortcut img {
    width: 56px;
    height: 56px;
  }

  .home-shortcuts__all {
    min-height: 48px;
  }

  .home-all-games {
    padding: 10px;
  }

  .home-all-games__bar {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .home-all-games__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(78px, auto);
    gap: 9px;
  }

  .home-all-card {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 78px;
    padding: 8px;
  }

  .home-all-card img {
    width: 58px;
    height: 58px;
  }

  .home-all-games__pagination {
    justify-content: flex-start;
  }

  .home-all-games__page {
    min-width: 39px;
    min-height: 38px;
    padding: 0 10px;
  }
}

.library-section {
  padding: clamp(46px, 7vw, 86px) 16px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(251, 250, 246, 0.96), rgba(238, 244, 237, 0.98)),
    #fbfaf6;
  border-top: 1px solid rgba(216, 221, 210, 0.88);
}

.library-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

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

.library-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.library-count {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.library-controls {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.search-field {
  display: grid;
  gap: 7px;
  max-width: 420px;
}

.search-field span {
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  outline: none;
}

.search-field input:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(47, 143, 91, 0.16);
}

.filter-row {
  display: flex;
  gap: 8px;
  max-width: 100%;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.category-row {
  padding-top: 2px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  flex: 0 0 auto;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.filter-chip[aria-pressed="true"] {
  color: #f5faee;
  background: var(--leaf-dark);
  border-color: var(--leaf-dark);
}

.filter-chip__count {
  min-width: 24px;
  padding: 2px 7px;
  color: inherit;
  background: rgba(24, 33, 29, 0.08);
  border-radius: 999px;
  font-size: 0.74rem;
}

.filter-chip[aria-pressed="true"] .filter-chip__count {
  background: rgba(255, 255, 255, 0.2);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(184px, 1fr));
  gap: 14px;
}

.game-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 292px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(216, 221, 210, 0.92);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(24, 33, 29, 0.08);
}

.game-card__media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(243, 179, 61, 0.5), transparent 4.8rem),
    linear-gradient(135deg, #78b7c6, #2f8f5b);
}

.game-card:nth-child(3n + 2) .game-card__media {
  background:
    radial-gradient(circle at 20% 24%, rgba(233, 95, 77, 0.5), transparent 4.6rem),
    linear-gradient(135deg, #5c7fbc, #3f6f66);
}

.game-card:nth-child(3n + 3) .game-card__media {
  background:
    radial-gradient(circle at 76% 72%, rgba(120, 183, 198, 0.46), transparent 4.6rem),
    linear-gradient(135deg, #f3b33d, #2f8f5b);
}

.game-card__media::after {
  content: attr(data-letter);
  color: rgba(245, 250, 238, 0.74);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
}

.game-card__source {
  position: absolute;
  top: 10px;
  left: 10px;
  max-width: calc(100% - 20px);
  padding: 5px 8px;
  overflow: hidden;
  color: #173024;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-card__title {
  margin: 0;
  padding: 13px 14px 8px;
  font-size: 1rem;
  line-height: 1.18;
}

.game-card__categories {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 14px 12px;
}

.game-card__category {
  padding: 4px 7px;
  color: var(--leaf-dark);
  background: rgba(47, 143, 91, 0.1);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.game-card .game-card__play {
  width: auto;
  min-width: 0;
  min-height: 42px;
  margin: 0 14px 14px;
  padding: 0 14px;
  color: #f5faee;
  background: var(--coral);
  border-radius: 8px;
  box-shadow: none;
  font-size: 0.9rem;
  text-transform: none;
}

.game-card .game-card__play:hover,
.game-card .game-card__play:focus-visible {
  background: #d94f3d;
}

.library-empty,
.library-loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  color: var(--muted);
  background: #ffffff;
  border: 1px dashed var(--line);
  border-radius: 8px;
  text-align: center;
}

@media (max-width: 1120px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding-block: 12px;
  }

  .language-switcher {
    margin-left: auto;
  }

  .press-nav {
    order: 2;
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  .site-header > .language-switcher:not(.press-nav) {
    order: 1;
    margin-left: auto;
  }

  .playground-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .game-shell {
    order: 1;
  }

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

  .intro-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 680px) {
  .site-header {
    position: relative;
    gap: 10px;
    min-height: auto;
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
    padding-right: 0;
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-width: 3px;
  }

  .language-switcher {
    margin-top: 2px;
    margin-left: auto;
  }

  .press-nav {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .press-nav::-webkit-scrollbar {
    display: none;
  }

  .press-nav a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .language-menu summary {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.84rem;
  }

  .language-options {
    right: 0;
    min-width: 172px;
  }

  .game-section {
    width: 100%;
    gap: 22px;
    padding-top: 16px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  .hero-copy .summary {
    margin: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .game-highlights {
    grid-template-columns: 1fr;
  }

  .library-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .library-count {
    white-space: normal;
  }

  .game-grid {
    grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  }

  .game-card {
    min-height: 270px;
  }

  .game-introduction {
    min-height: auto;
  }

  .game-introduction .eyebrow,
  .kicker {
    font-size: 0.92rem;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .summary {
    font-size: 1rem;
    line-height: 1.45;
  }

  .flash-container {
    height: clamp(320px, 52dvh, 460px);
    min-height: 0;
    aspect-ratio: auto;
  }

  .flash-container[data-state="playing"] {
    height: calc(100dvh - 172px);
    min-height: 420px;
  }

  .poster-actions {
    width: min(280px, 100%);
    align-items: stretch;
    flex-direction: column;
  }

  .play-game {
    width: 100%;
  }

  .game-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .game-status {
    min-width: 0;
    flex: 0 1 auto;
  }

  .toolbar-actions {
    justify-content: stretch;
  }

  .tool-button {
    flex: 1 1 128px;
  }
}

/* SEO guide hubs and map detail pages */
.comparison-page.guide-hub {
  padding-top: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 12% 8%, rgba(120, 183, 198, 0.16), transparent 20rem),
    radial-gradient(circle at 82% 14%, rgba(243, 179, 61, 0.11), transparent 18rem),
    radial-gradient(circle at 50% 52%, rgba(217, 107, 83, 0.08), transparent 22rem),
    linear-gradient(180deg, #221a13 0%, #2d241a 48%, #241c15 100%);
}

.guide-hub .comparison-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: stretch;
}

.guide-hub .comparison-hero h1 {
  margin-left: 0;
  color: #b8ff9c;
  font-size: clamp(2.7rem, 6vw, 5.15rem);
}

.guide-hub .comparison-note {
  display: grid;
  align-content: start;
  gap: 12px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06)),
    rgba(34, 26, 19, 0.54);
}

.guide-hub .comparison-note p:last-child,
.guide-hub .comparison-section p:last-child {
  margin-bottom: 0;
}

.content-rail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: clamp(18px, 4vw, 40px);
  width: min(1120px, 100%);
  margin: 0 auto clamp(28px, 4.5vw, 52px);
  align-items: start;
}

.content-rail > * {
  min-width: 0;
}

.content-rail .comparison-section {
  width: 100%;
  margin-bottom: 0;
}

.side-rail {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 12px;
}

.page-toc,
.quick-card,
.map-directory-card,
.related-card {
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(184, 255, 156, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 44px rgba(8, 7, 6, 0.14);
}

.page-toc h2,
.quick-card h2 {
  margin-bottom: 10px;
  color: #aee8f0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-toc a,
.quick-card a,
.map-directory-card a,
.related-card a,
.comparison-section a {
  color: #b8ff9c;
  font-weight: 850;
  text-decoration: none;
}

.page-toc ol,
.quick-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.page-toc li,
.quick-card li {
  color: rgba(230, 241, 224, 0.76);
  line-height: 1.45;
}

.guide-section-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(184, 255, 156, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.055)),
    rgba(34, 26, 19, 0.42);
  box-shadow: 0 24px 54px rgba(8, 7, 6, 0.14);
}

.guide-section-card + .guide-section-card {
  margin-top: 16px;
}

.guide-section-card h2 {
  color: #f2ffe4;
  font-size: clamp(1.55rem, 3vw, 2.28rem);
}

.guide-section-card h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  color: #b8ff9c;
  font-size: 1.12rem;
}

.guide-section-card ul,
.guide-section-card ol {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
  color: rgba(230, 241, 224, 0.78);
  line-height: 1.65;
}

.guide-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.map-directory-card,
.related-card {
  display: grid;
  gap: 8px;
}

.map-directory-card span,
.related-card span,
.stat-strip span {
  color: #aee8f0;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-directory-card h3,
.related-card h3 {
  margin: 0;
  color: #f2ffe4;
  font-size: 1.08rem;
}

.map-directory-card p,
.related-card p {
  margin-bottom: 0;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.stat-strip article {
  padding: 14px;
  border: 1px solid rgba(186, 246, 255, 0.2);
  border-radius: 10px;
  background: rgba(186, 246, 255, 0.07);
}

.stat-strip strong {
  display: block;
  margin-top: 6px;
  color: #f2ffe4;
  line-height: 1.25;
}

.guide-table-wrap {
  overflow-x: auto;
  margin-top: 16px;
  border: 1px solid rgba(184, 255, 156, 0.18);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.12);
}

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

.guide-table th,
.guide-table td {
  padding: 14px 16px;
  color: rgba(230, 241, 224, 0.78);
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(184, 255, 156, 0.12);
}

.guide-table th {
  color: #f2ffe4;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.18);
}

.guide-table tr:last-child th,
.guide-table tr:last-child td {
  border-bottom: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.feature-list article {
  padding: 16px;
  border: 1px solid rgba(184, 255, 156, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-list h3 {
  margin-top: 0;
}

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

.guide-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(243, 179, 61, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(243, 179, 61, 0.16), rgba(217, 107, 83, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.guide-cta h2 {
  margin-bottom: 6px;
}

.guide-cta .hero-actions {
  margin-top: 0;
}

@media (max-width: 940px) {
  .content-rail,
  .guide-hub .comparison-hero,
  .map-directory,
  .guide-card-grid.three,
  .stat-strip,
  .feature-list,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .side-rail {
    position: static;
  }
}

@media (max-width: 560px) {
  .comparison-page.guide-hub {
    padding-right: 14px;
    padding-left: 14px;
  }

  .guide-section-card,
  .page-toc,
  .quick-card,
  .map-directory-card,
  .related-card {
    padding: 16px;
  }

  .guide-hub .comparison-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }
}

/* Arcade visual upgrade */
:root {
  color-scheme: dark;
  --mc-night: #080a0d;
  --mc-cabinet: #15100d;
  --mc-panel: rgba(255, 255, 255, 0.085);
  --mc-panel-strong: rgba(255, 255, 255, 0.13);
  --mc-line: rgba(203, 255, 161, 0.2);
  --mc-line-strong: rgba(203, 255, 161, 0.38);
  --mc-neon: #b8ff9c;
  --mc-yellow: #ffd45a;
  --mc-coral: #ff715b;
  --mc-aqua: #87f7ff;
  --mc-text: #f4ffe8;
  --mc-soft: rgba(238, 248, 228, 0.78);
  --mc-dim: rgba(238, 248, 228, 0.58);
  --mc-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

body {
  color: var(--mc-text);
  background:
    linear-gradient(rgba(135, 247, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 255, 156, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #090b0e 0, #15100d 42%, #2a2118 100%);
  background-size: 30px 30px, 30px 30px, auto;
  font-family:
    "Trebuchet MS", Outfit, Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.028) 0,
      rgba(255, 255, 255, 0.028) 1px,
      transparent 1px,
      transparent 5px
    ),
    linear-gradient(115deg, rgba(184, 255, 156, 0.09), transparent 34%),
    linear-gradient(245deg, rgba(255, 212, 90, 0.08), transparent 38%);
  mix-blend-mode: screen;
}

.site-header {
  min-height: 82px;
  background: rgba(8, 10, 13, 0.9);
  border-bottom: 1px solid var(--mc-line);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.38);
}

.brand {
  color: var(--mc-text);
  font-weight: 950;
  text-shadow: 0 0 18px rgba(184, 255, 156, 0.16);
}

.brand-mark {
  background:
    linear-gradient(135deg, rgba(255, 212, 90, 0.94), rgba(184, 255, 156, 0.95));
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 0 0 4px rgba(184, 255, 156, 0.12),
    0 14px 28px rgba(0, 0, 0, 0.32);
}

.site-header .press-nav a,
.language-menu summary,
.hero-link,
.tool-button.quiet,
.home-all-games__page {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.075));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 18px rgba(0, 0, 0, 0.18);
}

.site-header .press-nav a {
  color: var(--mc-soft);
}

.site-header .press-nav a:hover,
.site-header .press-nav a:focus-visible,
.site-header .press-nav a[aria-current="page"],
.language-menu[open] summary {
  color: #11170f;
  background: linear-gradient(180deg, #d7ff9c, var(--mc-neon));
  border-color: rgba(184, 255, 156, 0.75);
  outline: none;
}

.game-section {
  gap: 26px;
  padding-top: 34px;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: none;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 11px;
  color: #12160e;
  background: var(--mc-yellow);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(255, 212, 90, 0.18);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  color: var(--mc-neon);
  font-size: 5rem;
  letter-spacing: 0;
  text-shadow:
    0 3px 0 rgba(7, 12, 8, 0.82),
    0 0 32px rgba(184, 255, 156, 0.26);
}

.hero-copy .summary {
  color: var(--mc-soft);
  font-size: 1.14rem;
}

.hero-button,
.play-game,
.poster-play,
.game-card .game-card__play,
.home-shortcuts__all,
.primary-link {
  color: #14130a;
  background:
    linear-gradient(180deg, #ffe277 0, var(--mc-yellow) 58%, #f5b942 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    inset 0 -4px 0 rgba(101, 69, 0, 0.2),
    0 18px 34px rgba(255, 212, 90, 0.2);
}

.hero-button:hover,
.hero-button:focus-visible,
.play-game:hover,
.play-game:focus-visible,
.poster-play:hover,
.poster-play:focus-visible,
.game-card .game-card__play:hover,
.game-card .game-card__play:focus-visible,
.home-shortcuts__all:hover,
.home-shortcuts__all:focus-visible,
.primary-link:hover,
.primary-link:focus-visible {
  color: #10140d;
  background:
    linear-gradient(180deg, #e9ffb8 0, var(--mc-neon) 66%, #8eea73 100%);
  border-color: rgba(184, 255, 156, 0.8);
  transform: translateY(-2px);
  outline: none;
}

.hero-button::before,
.play-game::before,
.poster-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.flash-container {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #254847, #5a9a8f 58%, #23322a);
  background-size: 24px 24px, 24px 24px, auto;
  border: 1px solid var(--mc-line-strong);
  border-radius: 18px;
  box-shadow:
    0 0 0 5px rgba(184, 255, 156, 0.055),
    var(--mc-shadow);
}

.flash-container::before {
  content: none;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 6px 10px;
  color: var(--mc-aqua);
  background: rgba(8, 10, 13, 0.54);
  border: 1px solid rgba(135, 247, 255, 0.3);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.flash-container[data-state="playing"]::before {
  display: none;
}

.game-poster {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 10, 13, 0.16) 2px, transparent 2px),
    linear-gradient(90deg, rgba(8, 10, 13, 0.16) 2px, transparent 2px),
    linear-gradient(135deg, #315f5a, #6aa99e 54%, #243227);
  background-size: 34px 34px, 34px 34px, auto;
}

.game-poster::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  pointer-events: none;
}

.game-poster::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 26px;
  width: 124px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--mc-neon) 0 68%, rgba(255, 255, 255, 0.14) 68%),
    rgba(8, 10, 13, 0.38);
  box-shadow: 0 0 22px rgba(184, 255, 156, 0.24);
}

.play-game {
  position: relative;
  z-index: 2;
  min-width: 270px;
  min-height: 80px;
  font-size: 1.28rem;
}

.game-toolbar,
.game-highlights article,
.intro-grid article,
.home-shortcuts,
.home-all-games {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.065));
  border: 1px solid var(--mc-line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.game-highlights article,
.intro-grid article,
.home-shortcut,
.home-all-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.game-highlights article::before,
.intro-grid article::before,
.home-shortcut::before,
.home-all-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 4px;
  background: linear-gradient(90deg, var(--mc-yellow), var(--mc-neon));
}

.game-highlights span,
.home-all-games__title,
.home-shortcut__meta,
.home-all-card__meta {
  color: var(--mc-aqua);
}

.game-highlights strong,
.intro-grid h2,
.home-shortcut__name,
.home-all-card__name {
  color: var(--mc-text);
}

.home-all-games {
  border-radius: 8px;
}

.home-all-card,
.home-shortcut {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.065));
}

.home-all-card:hover,
.home-all-card:focus-visible,
.home-shortcut:hover,
.home-shortcut:focus-visible {
  border-color: var(--mc-line-strong);
  box-shadow:
    0 0 0 3px rgba(184, 255, 156, 0.08),
    0 18px 36px rgba(0, 0, 0, 0.28);
}

.home-all-card img,
.home-shortcut img {
  border-color: rgba(255, 255, 255, 0.2);
}

.library-section,
.content-band {
  background:
    linear-gradient(rgba(8, 10, 13, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 10, 13, 0.03) 1px, transparent 1px),
    #f7f4e8;
  background-size: 26px 26px, 26px 26px, auto;
}

.library-section .game-card {
  background: #fffaf0;
  border-color: rgba(27, 36, 28, 0.14);
}

.site-footer {
  background:
    linear-gradient(180deg, #15100d, #080a0d);
  border-top-color: var(--mc-line);
}

.site-footer a {
  color: var(--mc-neon);
}

@media (prefers-reduced-motion: no-preference) {
  .play-game,
  .hero-button,
  .game-card,
  .home-shortcut,
  .home-all-card,
  .tool-button {
    transition:
      transform 180ms ease,
      box-shadow 180ms ease,
      border-color 180ms ease,
      background 180ms ease,
      color 180ms ease;
  }

  .flash-container::before {
    animation: mc-status-pulse 2.8s ease-in-out infinite;
  }
}

@keyframes mc-status-pulse {
  0%,
  100% {
    opacity: 0.74;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .hero-copy h1 {
    font-size: 4rem;
  }
}

@media (max-width: 680px) {
  body {
    background-size: 24px 24px, 24px 24px, auto;
  }

  .site-header {
    background: rgba(8, 10, 13, 0.96);
  }

  .hero-copy::before {
    min-height: 24px;
    font-size: 0.68rem;
  }

  .hero-copy h1 {
    font-size: 3rem;
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .hero-copy .summary {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-button,
  .hero-link {
    flex: 1 1 150px;
    padding: 0 14px;
  }

  .flash-container {
    min-height: 350px;
    border-radius: 14px;
  }

  .flash-container::before {
    top: 10px;
    left: 10px;
  }

  .game-poster::after {
    right: 16px;
    bottom: 16px;
    width: 92px;
  }

  .poster-actions {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 54px 18px 30px;
  }

  .play-game {
    min-width: min(270px, calc(100% - 44px));
    min-height: 70px;
    font-size: 1.08rem;
  }

  .game-toolbar {
    gap: 10px;
  }

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

  .tool-button {
    min-width: 0;
    padding: 0 9px;
    font-size: 0.82rem;
  }
}

/* Top navigation alignment */
@media (min-width: 1121px) {
  .site-header {
    gap: 14px;
  }

  .site-header .press-nav {
    margin-left: auto;
  }

  .site-header .press-nav + .language-switcher {
    margin-left: 0;
  }
}

/* Mature game portal refinement */
@media (min-width: 901px) {
  body.has-arcade-dock {
    padding-left: 76px;
  }
}

.mc-arcade-dock {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 76px;
  padding: 28px 10px 18px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 26px 38px, rgba(184, 255, 156, 0.18), transparent 30px),
    radial-gradient(circle at 20px 74%, rgba(255, 230, 109, 0.1), transparent 42px),
    linear-gradient(180deg, rgba(39, 48, 31, 0.86), rgba(87, 73, 48, 0.78)),
    rgba(17, 22, 14, 0.84);
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0 56px 56px 0;
  box-shadow: 14px 0 34px rgba(0, 0, 0, 0.22);
  scrollbar-width: none;
}

.mc-arcade-dock::-webkit-scrollbar {
  display: none;
}

.mc-arcade-dock__link {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  color: #11170f;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    rgba(9, 12, 10, 0.48);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 10px 20px rgba(0, 0, 0, 0.26);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.mc-arcade-dock__link img {
  display: block;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: rgba(4, 8, 6, 0.2);
  border-radius: 50%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 15px rgba(0, 0, 0, 0.22);
  transition:
    filter 160ms ease,
    transform 160ms ease;
}

.mc-arcade-dock__link span {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  z-index: 2;
  max-width: 190px;
  padding: 7px 10px;
  color: var(--mc-text);
  background: rgba(8, 10, 13, 0.92);
  border: 1px solid var(--mc-line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(-6px, -50%);
  transition:
    opacity 150ms ease,
    transform 150ms ease;
  white-space: nowrap;
}

.mc-arcade-dock__link[aria-current="page"] {
  border-color: rgba(255, 230, 109, 0.92);
  box-shadow:
    0 0 0 4px rgba(255, 230, 109, 0.13),
    0 0 22px rgba(184, 255, 156, 0.28),
    0 14px 28px rgba(0, 0, 0, 0.32);
}

.mc-arcade-dock__link[aria-current="page"] img {
  filter: saturate(1.12) brightness(1.05);
}

.mc-arcade-dock__link:hover,
.mc-arcade-dock__link:focus-visible {
  border-color: rgba(184, 255, 156, 0.82);
  box-shadow:
    0 0 0 4px rgba(184, 255, 156, 0.1),
    0 14px 28px rgba(0, 0, 0, 0.32);
  transform: translateX(3px) scale(1.04);
  outline: none;
}

.mc-arcade-dock__link:hover img,
.mc-arcade-dock__link:focus-visible img {
  transform: scale(1.04);
}

.mc-arcade-dock__link:hover span,
.mc-arcade-dock__link:focus-visible span {
  opacity: 1;
  transform: translate(0, -50%);
}

.game-section {
  padding-top: 28px;
}

.hero-copy h1 {
  max-width: 1060px;
}

.playground-grid {
  position: relative;
}

.playground-grid::before {
  content: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(900px, 100%);
  min-height: 54px;
  margin: 0 auto -8px;
  color: rgba(244, 255, 232, 0.82);
  background:
    linear-gradient(90deg, transparent, rgba(184, 255, 156, 0.13), transparent),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(184, 255, 156, 0.14);
  border-radius: 999px 999px 18px 18px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.flash-container {
  border-radius: 30px;
}

.game-poster::before {
  border-radius: 24px;
}

.home-all-games {
  border-radius: 28px;
}

.home-all-games__grid {
  grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
}

.home-all-card {
  grid-template-columns: 76px minmax(0, 1fr);
  min-height: 96px;
  border-radius: 22px;
}

.home-all-card img {
  width: 76px;
  height: 76px;
  border-radius: 18px;
}

.home-all-card__name {
  font-size: 0.9rem;
}

.game-highlights article,
.intro-grid article {
  border-radius: 22px;
}

@media (max-width: 900px) {
  .mc-arcade-dock {
    display: none;
  }

  .playground-grid::before {
    min-height: 42px;
    margin-bottom: -4px;
    border-radius: 20px;
    font-size: 0.66rem;
  }
}

@media (max-width: 680px) {
  .home-all-games__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-all-card {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 82px;
    border-radius: 16px;
  }

  .home-all-card img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }
}

/* Text color refinement inspired by the local game template */
:root {
  --mc-text: #f8ffe9;
  --mc-soft: rgba(246, 255, 238, 0.9);
  --mc-dim: rgba(226, 239, 218, 0.76);
  --mc-muted-readable: rgba(214, 229, 206, 0.7);
  --mc-heading-warm: #fde047;
  --mc-link-readable: #c7ff8f;
  --mc-link-hover: #fff3a3;
  --mc-on-bright: #10170e;
}

body {
  color: var(--mc-text);
}

.brand,
.language-menu summary,
.hero-copy h1,
.home-all-card__name,
.game-card__title,
.game-card__title a,
.game-highlights h3,
.intro-grid h3,
.library-section h2,
.site-footer strong {
  color: var(--mc-text);
}

.hero-copy .summary,
.home-all-games p,
.game-highlights p,
.intro-grid p,
.library-section p,
.game-status,
.tool-button.quiet,
.home-all-card__meta,
.game-card__categories,
.site-footer {
  color: var(--mc-soft);
}

.press-nav a,
.language-options a,
.hero-link,
.home-all-games__page {
  color: var(--mc-soft);
}

.press-nav a:hover,
.press-nav a:focus-visible,
.press-nav a[aria-current="page"],
.language-menu[open] summary,
.language-options a:hover,
.language-options a:focus-visible,
.language-options a[aria-current="true"],
.home-all-games__page[aria-current="page"] {
  color: var(--mc-on-bright);
}

.hero-copy .eyebrow,
.game-section h2,
.home-all-games h2,
.library-section .eyebrow,
.game-highlights .eyebrow,
.intro-grid .eyebrow,
.playground-grid::before {
  color: var(--mc-heading-warm);
}

.hero-copy h1 {
  color: #bfff9f;
  text-shadow:
    0 3px 0 rgba(5, 10, 5, 0.82),
    0 0 34px rgba(184, 255, 156, 0.28);
}

.primary-link,
.poster-play,
.game-card .game-card__play {
  color: var(--mc-on-bright);
}

.primary-link:hover,
.primary-link:focus-visible,
.poster-play:hover,
.poster-play:focus-visible,
.game-card .game-card__play:hover,
.game-card .game-card__play:focus-visible {
  color: #071007;
}

.hero-link:hover,
.hero-link:focus-visible,
.tool-button:hover,
.tool-button:focus-visible {
  color: var(--mc-link-hover);
}

.tool-button:disabled,
.tool-button[disabled],
.play-game:disabled {
  color: var(--mc-muted-readable);
}

.game-card__category,
.game-card__source {
  color: #122113;
}

.home-all-card:hover .home-all-card__name,
.home-all-card:focus-within .home-all-card__name,
.game-card:hover .game-card__title,
.game-card:hover .game-card__title a,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--mc-link-hover);
}

.site-footer a {
  color: var(--mc-link-readable);
}

.mc-arcade-dock__link span {
  color: var(--mc-text);
}

@media (max-width: 680px) {
  .hero-copy .summary,
  .home-all-games p,
  .game-highlights p,
  .intro-grid p,
  .site-footer {
    color: rgba(246, 255, 238, 0.92);
  }
}

/* Template-informed text contrast pass */
:root {
  --mc-title: #fff0a8;
  --mc-title-strong: #fde047;
  --mc-title-soft: #fff8d8;
  --mc-body-readable: rgba(245, 248, 238, 0.94);
  --mc-body-soft: rgba(226, 234, 220, 0.84);
  --mc-body-muted: rgba(202, 214, 196, 0.74);
  --mc-link-readable: #fde047;
  --mc-link-hover: #fff8c9;
  --mc-state-green: #b8ff9c;
  --mc-on-bright: #071007;
}

body {
  color: var(--mc-body-readable);
}

.hero-copy h1,
.home-all-games h2,
.library-section h2,
.game-section h2 {
  color: var(--mc-title);
  text-shadow:
    0 3px 0 rgba(4, 7, 4, 0.86),
    0 0 28px rgba(253, 224, 71, 0.22);
}

.hero-copy h1,
#game-title {
  color: var(--mc-title-soft);
  -webkit-text-fill-color: var(--mc-title-soft);
}

.hero-copy .eyebrow,
.home-all-games .eyebrow,
.library-section .eyebrow,
.game-highlights .eyebrow,
.intro-grid .eyebrow,
.playground-grid::before {
  color: var(--mc-title-strong);
}

.brand,
.home-all-card__name,
.game-card__title,
.game-card__title a,
.game-highlights h3,
.intro-grid h3,
.site-footer strong {
  color: var(--mc-title-soft);
}

/* Game category rail restores the left-side category entrance. */
@media (min-width: 901px) {
  body.has-arcade-dock {
    padding-left: 76px;
  }
}

@media (max-width: 900px) {
  body.has-arcade-dock {
    padding-left: 0;
  }

  .mc-arcade-dock {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: min(100% - 20px, 760px);
    margin: 10px auto 0;
    padding: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    scroll-padding-inline: 8px;
  }

  .mc-arcade-dock__link {
    width: 48px;
    height: 48px;
    transform: none;
  }

  .mc-arcade-dock__link:hover,
  .mc-arcade-dock__link:focus-visible {
    transform: translateY(-2px);
  }

  .mc-arcade-dock__link img {
    width: 42px;
    height: 42px;
  }

  .mc-arcade-dock__link span {
    display: none;
  }
}

@media (max-width: 680px) {
  .press-nav,
  .site-header .press-nav {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .press-nav a,
  .site-header .press-nav a {
    flex: 1 1 88px;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
    line-height: 1.12;
  }
}

/* Natural game launcher composition */
.playground-grid {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.game-shell {
  width: min(1120px, 100%);
}

.flash-container {
  width: min(100%, 1040px);
  min-height: clamp(420px, 50vw, 620px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, #1f3630 0%, #4f897f 52%, #18211a 100%);
  background-size: 28px 28px, 28px 28px, auto;
  border-radius: 22px;
  border-color: rgba(188, 255, 154, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 80px rgba(0, 0, 0, 0.42);
}

.flash-container[data-state="playing"] {
  width: min(1180px, 100%);
  min-height: 0;
  border-radius: 18px;
}

.game-poster {
  min-height: 100%;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.04), rgba(7, 9, 13, 0.5)),
    radial-gradient(circle at 50% 38%, rgba(199, 255, 116, 0.18), transparent 19rem),
    linear-gradient(135deg, #355f57, #6f9c83 54%, #1d281f);
}

.game-poster::before {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.game-poster::after {
  content: none;
}

.poster-scene {
  inset: 0;
  overflow: hidden;
}

.poster-glow {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.72;
}

.poster-glow--one {
  top: 7%;
  left: 16%;
  width: min(34vw, 360px);
  height: min(17vw, 170px);
  background: rgba(130, 243, 255, 0.18);
  transform: rotate(-8deg);
}

.poster-glow--two {
  right: 14%;
  bottom: 14%;
  width: min(30vw, 320px);
  height: min(18vw, 190px);
  background: rgba(255, 225, 109, 0.16);
  transform: rotate(9deg);
}

.poster-tile {
  border-radius: 18px;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 46px rgba(0, 0, 0, 0.26);
}

.poster-tile::after {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.02), rgba(7, 9, 13, 0.26)),
    linear-gradient(90deg, rgba(184, 255, 156, 0.08), transparent);
}

.poster-tile--one {
  top: 8%;
  left: 7%;
  width: clamp(138px, 22vw, 270px);
  aspect-ratio: 16 / 10;
  transform: rotate(-4deg);
}

.poster-tile--two {
  top: 9%;
  right: 8%;
  width: clamp(156px, 25vw, 310px);
  aspect-ratio: 16 / 9;
  transform: rotate(4deg);
}

.poster-tile--three {
  left: auto;
  right: 16%;
  bottom: 8%;
  width: clamp(150px, 23vw, 285px);
  aspect-ratio: 4 / 3;
  opacity: 0.72;
  transform: rotate(-2deg);
}

.poster-actions {
  display: flex;
  position: relative;
  z-index: 3;
  inset: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  width: min(420px, calc(100% - 44px));
  height: auto;
  min-height: 210px;
  padding: clamp(22px, 4vw, 34px);
  margin: auto;
  color: var(--taste-ink, #f9ffe8);
  background:
    linear-gradient(180deg, rgba(12, 18, 14, 0.66), rgba(10, 15, 12, 0.48)),
    rgba(7, 9, 13, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 58px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px) saturate(1.15);
}

.poster-kicker,
.poster-helper {
  display: block;
  max-width: 100%;
  margin: 0;
  color: rgba(249, 255, 232, 0.78);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
  text-wrap: balance;
}

.poster-kicker {
  color: rgba(199, 255, 116, 0.9);
}

.poster-helper {
  color: rgba(230, 241, 224, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
}

.play-game {
  width: min(100%, 300px);
  min-width: 0;
  min-height: 68px;
  padding-inline: 28px;
  color: #071007;
  border-radius: 18px;
  font-size: clamp(1.05rem, 1.8vw, 1.26rem);
  letter-spacing: 0;
  box-shadow:
    inset 0 -4px 0 rgba(58, 73, 4, 0.18),
    0 16px 34px rgba(199, 255, 116, 0.2);
}

.play-game:hover,
.play-game:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 -4px 0 rgba(58, 73, 4, 0.16),
    0 20px 42px rgba(199, 255, 116, 0.26);
}

.play-game:active {
  transform: translateY(1px) scale(0.99);
}

@media (max-width: 720px) {
  .flash-container {
    min-height: clamp(420px, 118vw, 560px);
    border-radius: 18px;
  }

  .game-poster::before {
    inset: 12px;
    border-radius: 14px;
  }

  .poster-actions {
    width: min(100% - 28px, 360px);
    min-height: 188px;
    padding: 20px;
    border-radius: 20px;
  }

  .poster-tile--one {
    top: 8%;
    left: -4%;
    width: 168px;
  }

  .poster-tile--two {
    top: 10%;
    right: -7%;
    width: 190px;
  }

  .poster-tile--three {
    right: 5%;
    bottom: 7%;
    width: 160px;
  }

  .play-game {
    min-height: 62px;
  }
}

/* Long-form overflow fixes */
.comparison-page,
.comparison-page * {
  min-width: 0;
}

.comparison-page .comparison-section,
.comparison-page .guide-section-card,
.comparison-page .side-rail,
.comparison-page .page-toc,
.comparison-page .quick-card,
.comparison-page .map-directory-card,
.comparison-page .guide-card,
.comparison-page .feature-list article {
  overflow-wrap: anywhere;
  word-break: normal;
}

.comparison-page .stat-strip {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 128px), 1fr));
}

.comparison-page .stat-strip article,
.comparison-page .stat-strip strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.comparison-page .page-toc a,
.comparison-page .quick-card a,
.comparison-page .map-directory-card a,
.comparison-page .comparison-section a {
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .press-nav {
    overflow: visible;
    white-space: normal;
  }

  .press-nav a {
    white-space: normal;
  }

  .guide-table {
    min-width: 0;
    table-layout: fixed;
  }

  .guide-table th,
  .guide-table td {
    padding: 10px 9px;
    overflow-wrap: anywhere;
    font-size: 0.78rem;
    letter-spacing: 0;
  }
}

/* gpt-taste homepage pass */
:root {
  --taste-night: #07090d;
  --taste-ink: #f9ffe8;
  --taste-soft: rgba(246, 255, 238, 0.84);
  --taste-dim: rgba(214, 232, 206, 0.68);
  --taste-lime: #c7ff74;
  --taste-yellow: #ffe16d;
  --taste-aqua: #82f3ff;
  --taste-coral: #ff7a59;
  --taste-violet: #b8a4ff;
  --taste-panel: rgba(255, 255, 255, 0.08);
  --taste-line: rgba(255, 255, 255, 0.16);
  --taste-line-strong: rgba(199, 255, 116, 0.42);
  --taste-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

html,
body,
.taste-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  color: var(--taste-ink);
  background:
    radial-gradient(circle at 9% 8%, rgba(130, 243, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 92% 7%, rgba(255, 122, 89, 0.16), transparent 22rem),
    radial-gradient(circle at 72% 40%, rgba(184, 164, 255, 0.12), transparent 25rem),
    linear-gradient(180deg, #07090d 0, #11170f 48rem, #251a13 100%);
  font-family: Outfit, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
  top: 14px;
  width: min(1160px, calc(100% - 32px));
  min-height: 66px;
  margin: 14px auto 0;
  padding: 0 clamp(14px, 2.8vw, 22px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.065)),
    rgba(7, 9, 13, 0.82);
  border: 1px solid var(--taste-line);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 60px rgba(0, 0, 0, 0.34);
}

.brand {
  color: var(--taste-ink);
}

.site-header .press-nav a,
.language-menu summary {
  min-height: 38px;
  color: var(--taste-soft);
  border-radius: 8px;
}

.site-header .press-nav a:hover,
.site-header .press-nav a:focus-visible,
.site-header .press-nav a[aria-current="page"],
.language-menu[open] summary {
  color: #071007;
  background: linear-gradient(180deg, #fff2a8, var(--taste-lime));
  border-color: rgba(199, 255, 116, 0.72);
}

.taste-page {
  isolation: isolate;
}

.game-section {
  position: relative;
  gap: clamp(38px, 7vw, 112px);
  min-height: calc(100svh - 92px);
  padding:
    clamp(52px, 9vw, 112px)
    max(20px, calc((100vw - 1240px) / 2))
    clamp(76px, 12vw, 150px);
}

.game-section::before,
.game-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.game-section::before {
  inset: -8rem max(-6vw, -5rem) auto;
  height: min(76rem, 112vh);
  background:
    linear-gradient(115deg, rgba(255, 225, 109, 0.16), transparent 38%),
    radial-gradient(circle at 24% 20%, rgba(199, 255, 116, 0.22), transparent 18rem),
    radial-gradient(circle at 78% 32%, rgba(130, 243, 255, 0.16), transparent 24rem);
  filter: saturate(118%);
}

.game-section::after {
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 7px
    );
  mask-image: linear-gradient(180deg, #000 0, transparent 74%);
  opacity: 0.45;
}

.hero-copy {
  width: min(1120px, 100%);
  text-align: center;
}

.hero-copy::before,
.playground-grid::before {
  content: none;
}

.hero-copy h1,
#game-title {
  max-width: min(1120px, 100%);
  margin-inline: auto;
  color: var(--taste-ink);
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
  text-shadow:
    0 4px 0 rgba(5, 8, 6, 0.74),
    0 0 34px rgba(255, 225, 109, 0.2),
    0 0 70px rgba(130, 243, 255, 0.14);
}

.hero-copy .summary {
  max-width: 760px;
  margin-top: clamp(16px, 2.4vw, 24px);
  color: var(--taste-soft);
  font-size: clamp(1.04rem, 1.55vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions {
  margin-top: 26px;
}

.hero-button,
.hero-link,
.play-game,
.tool-button,
.home-all-games__page {
  border-radius: 8px;
}

.hero-button,
.play-game,
.poster-play,
.game-card .game-card__play,
.home-shortcuts__all,
.primary-link {
  color: #071007;
  background: linear-gradient(180deg, #fff3a8 0, var(--taste-yellow) 50%, var(--taste-lime) 100%);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 0 -4px 0 rgba(58, 73, 4, 0.18),
    0 22px 48px rgba(199, 255, 116, 0.2);
}

.hero-link,
.tool-button.quiet {
  color: var(--taste-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    rgba(7, 9, 13, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-marquee {
  width: min(860px, 100%);
  margin: 28px auto 0;
  overflow: hidden;
  color: rgba(249, 255, 232, 0.74);
  mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
}

.hero-marquee__track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: taste-marquee 24s linear infinite;
}

.hero-marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: var(--taste-soft);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

@keyframes taste-marquee {
  to {
    transform: translateX(-50%);
  }
}

.playground-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.game-shell {
  position: relative;
}

.flash-container {
  min-height: clamp(390px, 52vw, 650px);
  border-color: var(--taste-line-strong);
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 36px 90px rgba(0, 0, 0, 0.42);
}

.flash-container::before {
  content: none;
}

.game-poster {
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.06), rgba(7, 9, 13, 0.52)),
    radial-gradient(circle at 52% 34%, rgba(199, 255, 116, 0.18), transparent 20rem),
    linear-gradient(135deg, #3c6254, #8aa25f 52%, #1b2219);
}

.game-poster::before {
  inset: 18px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

.game-poster::after {
  right: clamp(20px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 36px);
  width: clamp(96px, 14vw, 180px);
  height: 12px;
  opacity: 0.88;
}

.poster-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.poster-tile {
  position: absolute;
  display: block;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.poster-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.06), rgba(7, 9, 13, 0.3));
}

.poster-tile--one {
  top: 11%;
  left: 8%;
  width: clamp(120px, 18vw, 210px);
  aspect-ratio: 1;
  background-image: url("/assets/social/a-weird-game-about-sausage-og-1200x630.jpg");
  transform: rotate(-5deg);
}

.poster-tile--two {
  right: 10%;
  top: 16%;
  width: clamp(120px, 19vw, 235px);
  aspect-ratio: 4 / 3;
  background-image: url("/assets/uploads/2026/06/hide-n-seek-240x190.png");
  transform: rotate(4deg);
}

.poster-tile--three {
  left: 17%;
  bottom: 10%;
  width: clamp(150px, 24vw, 280px);
  aspect-ratio: 16 / 10;
  background-image: url("/assets/uploads/2026/06/super-bunny-man-240x190.png");
  transform: rotate(2deg);
}

.poster-actions {
  position: relative;
  z-index: 2;
}

.play-game {
  min-width: min(310px, calc(100% - 32px));
  min-height: 76px;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.game-toolbar {
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(7, 9, 13, 0.52);
  border-color: rgba(255, 255, 255, 0.16);
}

.home-all-games,
.game-highlights article,
.intro-grid article,
.strategy-panel {
  border-radius: 8px;
}

.home-all-games {
  width: min(1160px, 100%);
  margin-inline: auto;
  padding: clamp(16px, 3vw, 24px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)),
    rgba(7, 9, 13, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.home-all-games__grid {
  grid-auto-flow: dense;
  gap: 12px;
}

.home-all-card {
  border-radius: 8px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.home-all-card img,
.game-card__media img,
.strategy-panel__image {
  transition:
    transform 700ms ease,
    filter 700ms ease,
    opacity 700ms ease;
}

.home-all-card:hover,
.home-all-card:focus-visible,
.home-all-card:focus-within {
  transform: translateY(-3px);
}

.home-all-card:hover img,
.home-all-card:focus-visible img,
.home-all-card:focus-within img,
.game-card:hover .game-card__media img,
.strategy-panel:hover .strategy-panel__image,
.strategy-panel:focus-within .strategy-panel__image {
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.04);
}

.game-highlights {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.game-highlights article {
  grid-column: span 3;
  min-height: 178px;
  padding: clamp(18px, 2.5vw, 24px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(7, 9, 13, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.game-highlights article:nth-child(1) {
  border-color: rgba(255, 225, 109, 0.3);
}

.game-highlights article:nth-child(2) {
  border-color: rgba(199, 255, 116, 0.32);
}

.game-highlights article:nth-child(3) {
  border-color: rgba(130, 243, 255, 0.28);
}

.game-highlights article:nth-child(4) {
  border-color: rgba(255, 122, 89, 0.28);
}

.game-highlights span,
.home-all-games__title,
.home-all-card__meta {
  color: var(--taste-aqua);
}

.game-highlights strong,
.intro-grid h2,
.strategy-panel h2,
.home-all-card__name {
  color: var(--taste-ink);
}

.strategy-accordion {
  display: flex;
  gap: 12px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.strategy-panel {
  min-width: 0;
  flex: 1 1 0;
  overflow: hidden;
  padding: 14px;
  color: var(--taste-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055)),
    rgba(7, 9, 13, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.25);
  transition:
    flex-basis 360ms ease,
    flex-grow 360ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.strategy-panel:hover,
.strategy-panel:focus-within {
  flex-grow: 1.65;
  border-color: rgba(199, 255, 116, 0.42);
  transform: translateY(-3px);
}

.strategy-panel__image {
  min-height: 168px;
  margin-bottom: 16px;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.02), rgba(7, 9, 13, 0.38)),
    var(--strategy-image) center / cover;
  border-radius: 6px;
}

.strategy-panel__image--paint {
  --strategy-image: url("/assets/social/a-weird-game-about-sausage-og-1200x630.jpg");
}

.strategy-panel__image--pose {
  --strategy-image: url("/assets/uploads/2026/06/rolling-ball-3d-240x190.png");
}

.strategy-panel__image--route {
  --strategy-image: url("/assets/uploads/2026/06/hide-n-seek-240x190.png");
}

.strategy-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(1.18rem, 2vw, 1.62rem);
  line-height: 1;
}

.strategy-panel p {
  margin: 0;
  color: var(--taste-soft);
  line-height: 1.55;
}

.game-introduction {
  width: min(1160px, 100%);
}

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

.intro-grid article {
  min-height: 190px;
  padding: clamp(20px, 3vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(7, 9, 13, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.guide-section {
  padding: clamp(90px, 14vw, 190px) 20px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 122, 89, 0.14), transparent 21rem),
    radial-gradient(circle at 88% 18%, rgba(130, 243, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, #251a13, #090b0d);
}

.guide-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(28px, 6vw, 72px);
  width: min(1160px, 100%);
}

.guide-inner > h2 {
  position: sticky;
  top: 120px;
  align-self: start;
  max-width: 460px;
  margin: 0;
  color: var(--taste-yellow);
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.9;
  text-wrap: balance;
}

.taste-reveal {
  grid-column: 2;
  margin: 0 0 18px;
  color: var(--taste-ink);
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
}

.taste-reveal span {
  display: inline-block;
  will-change: opacity, transform;
}

.guide-copy {
  grid-column: 2;
  padding: clamp(22px, 3.2vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.guide-copy + .guide-copy {
  margin-top: 0;
}

.guide-copy h3 {
  color: var(--taste-ink);
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  text-transform: none;
}

.guide-copy p,
.guide-copy li,
.faq-list p {
  color: var(--taste-soft);
}

.content-band.muted {
  padding: clamp(90px, 12vw, 160px) 20px;
  background:
    radial-gradient(circle at 16% 16%, rgba(199, 255, 116, 0.13), transparent 22rem),
    radial-gradient(circle at 82% 20%, rgba(184, 164, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, #090b0d, #060709);
}

#faq .content-inner {
  width: min(900px, 100%);
}

.faq-list details {
  border-radius: 8px;
}

.site-footer {
  padding: 20px;
  background: #060709;
}

@media (prefers-reduced-motion: no-preference) {
  .poster-tile--one {
    animation: taste-float 6.2s ease-in-out infinite;
  }

  .poster-tile--two {
    animation: taste-float 7s ease-in-out 0.5s infinite reverse;
  }

  .poster-tile--three {
    animation: taste-float 6.6s ease-in-out 0.9s infinite;
  }
}

@keyframes taste-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@media (max-width: 1040px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-block: 12px;
  }

  .game-section {
    padding-top: clamp(44px, 8vw, 76px);
  }

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

  .game-highlights article {
    grid-column: auto;
  }

  .strategy-accordion,
  .intro-grid,
  .guide-inner {
    grid-template-columns: 1fr;
  }

  .strategy-accordion {
    display: grid;
  }

  .guide-inner > h2,
  .taste-reveal,
  .guide-copy {
    grid-column: 1;
  }

  .guide-inner > h2 {
    position: static;
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 8px;
    width: min(100% - 20px, 560px);
    margin-top: 8px;
  }

  .site-header .press-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .site-header .press-nav::-webkit-scrollbar {
    display: none;
  }

  .game-section {
    gap: 34px;
    padding-inline: 14px;
  }

  .hero-copy h1,
  #game-title {
    font-size: clamp(3rem, 15vw, 4.25rem);
    line-height: 0.9;
    overflow-wrap: normal;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-button,
  .hero-link {
    flex: 0 0 auto;
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
  }

  .flash-container {
    min-height: 360px;
  }

  .poster-tile--one {
    left: 5%;
    width: 116px;
  }

  .poster-tile--two {
    right: 5%;
    width: 126px;
  }

  .poster-tile--three {
    left: 8%;
    width: 150px;
  }

  .game-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .game-highlights,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .home-all-games {
    padding: 12px;
  }

  .home-all-card {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 80px;
  }

  .home-all-card img {
    width: 58px;
    height: 58px;
    border-radius: 8px;
  }

  .strategy-panel__image {
    min-height: 138px;
  }

  .guide-section,
  .content-band.muted {
    padding-block: 76px;
  }

  .taste-reveal {
    font-size: 1.32rem;
  }
}

.hero-copy .summary,
.home-all-games p,
.game-highlights p,
.intro-grid p,
.library-section p,
.game-status,
.site-footer {
  color: var(--mc-body-readable);
}

.home-all-card__meta,
.game-card__categories,
.tool-button.quiet,
.language-options a {
  color: var(--mc-body-soft);
}

.press-nav a,
.language-menu summary,
.hero-link,
.home-all-games__page {
  color: var(--mc-body-readable);
}

.press-nav a:hover,
.press-nav a:focus-visible,
.press-nav a[aria-current="page"],
.language-menu[open] summary,
.language-options a:hover,
.language-options a:focus-visible,
.language-options a[aria-current="true"],
.home-all-games__page[aria-current="page"] {
  color: var(--mc-on-bright);
}

.site-footer a,
.hero-link:hover,
.hero-link:focus-visible,
.home-all-card:hover .home-all-card__name,
.home-all-card:focus-within .home-all-card__name,
.game-card:hover .game-card__title,
.game-card:hover .game-card__title a {
  color: var(--mc-link-readable);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--mc-link-hover);
}

.primary-link,
.poster-play,
.game-card .game-card__play {
  color: var(--mc-on-bright);
}

.primary-link:hover,
.primary-link:focus-visible,
.poster-play:hover,
.poster-play:focus-visible,
.game-card .game-card__play:hover,
.game-card .game-card__play:focus-visible {
  color: #020702;
}

.game-card__source,
.game-card__category {
  color: var(--mc-on-bright);
}

.tool-button:disabled,
.tool-button[disabled],
.play-game:disabled,
[aria-disabled="true"] {
  color: #53604f;
}

.mc-arcade-dock__link span {
  color: var(--mc-title-soft);
}

/* Collapsible category menu control */
.mc-arcade-dock {
  gap: 10px;
  width: 286px;
  padding: 10px;
  overflow: hidden;
}

.mc-arcade-dock__toggle {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  padding: 0;
  color: #fff;
  appearance: none;
  cursor: pointer;
  background: #9d4edd;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 10px 24px rgba(37, 17, 54, 0.38);
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.mc-arcade-dock__toggle::before,
.mc-arcade-dock__toggle::after {
  position: absolute;
  width: 27px;
  height: 4px;
  content: "";
  background: currentColor;
  border-radius: 999px;
  opacity: 1;
  transition:
    opacity 160ms ease,
    transform 180ms ease;
}

.mc-arcade-dock__toggle::before {
  transform: rotate(45deg);
}

.mc-arcade-dock__toggle::after {
  transform: rotate(-45deg);
}

.mc-arcade-dock__toggle:hover {
  background: #ad64e8;
  transform: translateY(-1px);
}

.mc-arcade-dock__toggle:active {
  transform: scale(0.96);
}

.mc-arcade-dock__toggle:focus-visible {
  outline: 3px solid #ffe66d;
  outline-offset: 3px;
}

.mc-arcade-dock__toggle-icon {
  display: grid;
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  gap: 3px;
  opacity: 0;
  transform: rotate(35deg) scale(0.7);
  transition:
    opacity 160ms ease,
    transform 180ms ease;
}

.mc-arcade-dock__toggle-icon > span {
  display: block;
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
}

.mc-arcade-dock__toggle-icon > span:nth-child(2),
.mc-arcade-dock__toggle-icon > span:nth-child(3) {
  border-radius: 4px 2px 4px 2px;
}

.mc-arcade-dock__links {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 1;
  scrollbar-width: none;
  transform: translateX(0);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear;
}

.mc-arcade-dock__links::-webkit-scrollbar {
  display: none;
}

.mc-arcade-dock--collapsed .mc-arcade-dock__links {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s;
}

.mc-arcade-dock--collapsed .mc-arcade-dock__toggle-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.mc-arcade-dock--collapsed .mc-arcade-dock__toggle::before,
.mc-arcade-dock--collapsed .mc-arcade-dock__toggle::after {
  opacity: 0;
  transform: rotate(0) scale(0.7);
}

.mc-arcade-dock--collapsed {
  width: 76px;
}

.mc-arcade-dock:not(.mc-arcade-dock--collapsed) .mc-arcade-dock__link {
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  justify-items: start;
  width: 100%;
  height: auto;
  min-height: 62px;
  padding: 3px 12px 3px 0;
  color: #c8ffae;
  background: rgba(8, 12, 9, 0.14);
  border: 1px solid transparent;
  border-radius: 16px;
  box-shadow: none;
}

.mc-arcade-dock:not(.mc-arcade-dock--collapsed) .mc-arcade-dock__link span {
  position: static;
  display: block;
  max-width: none;
  padding: 0;
  color: #c8ffae;
  text-align: left;
  text-transform: uppercase;
  white-space: normal;
  pointer-events: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 0.88rem;
  line-height: 1.08;
  opacity: 1;
  transform: none;
}

.mc-arcade-dock:not(.mc-arcade-dock--collapsed) .mc-arcade-dock__link:hover,
.mc-arcade-dock:not(.mc-arcade-dock--collapsed) .mc-arcade-dock__link:focus-visible {
  background: rgba(184, 255, 156, 0.1);
  border-color: rgba(184, 255, 156, 0.38);
  transform: translateX(3px);
}

.mc-arcade-dock:not(.mc-arcade-dock--collapsed) .mc-arcade-dock__link:hover span,
.mc-arcade-dock:not(.mc-arcade-dock--collapsed) .mc-arcade-dock__link:focus-visible span {
  opacity: 1;
  transform: none;
}

.mc-arcade-dock:not(.mc-arcade-dock--collapsed) .mc-arcade-dock__link[aria-current="page"] {
  background: rgba(255, 230, 109, 0.1);
  border-color: rgba(255, 230, 109, 0.52);
  box-shadow: inset 4px 0 0 #ffe66d;
}

@media (min-width: 901px) {
  body.has-arcade-dock.arcade-dock-is-expanded {
    padding-left: 286px;
  }
}

@media (max-width: 900px) {
  .mc-arcade-dock {
    gap: 10px;
    width: min(100% - 20px, 760px);
    padding: 8px;
    overflow: hidden;
  }

  .mc-arcade-dock__toggle {
    width: 48px;
    height: 48px;
  }

  .mc-arcade-dock__links {
    flex: 1 1 auto;
    flex-direction: row;
    gap: 10px;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 8px;
  }

  .mc-arcade-dock:not(.mc-arcade-dock--collapsed) .mc-arcade-dock__link {
    display: grid;
    grid-template-columns: 1fr;
    width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 50%;
  }

  .mc-arcade-dock:not(.mc-arcade-dock--collapsed) .mc-arcade-dock__link span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mc-arcade-dock__toggle,
  .mc-arcade-dock__toggle-icon,
  .mc-arcade-dock__links {
    transition: none;
  }
}

@media (max-width: 680px) {
  .hero-copy .summary,
  .home-all-games p,
  .game-highlights p,
  .intro-grid p,
  .library-section p,
  .site-footer {
    color: rgba(248, 251, 242, 0.95);
  }
}

/* Guide and long-form content text correction */
.guide-inner > h2,
.comparison-page .comparison-hero h1,
.comparison-page .comparison-section h2,
.comparison-page .guide-section-card h2,
.comparison-page .comparison-note h2,
.comparison-page .page-toc h2,
.comparison-page .quick-card h2 {
  color: var(--mc-title);
  text-shadow:
    0 3px 0 rgba(4, 7, 4, 0.78),
    0 0 26px rgba(253, 224, 71, 0.18);
}

#guide .guide-copy h3,
.comparison-page .guide-card h3,
.comparison-page .step-list h3,
.comparison-page .phase-list h3,
.comparison-page .guide-section-card h3,
.comparison-page .verdict-grid h3,
.comparison-page .alternative-grid h3,
.comparison-page .split-comparison h3,
.comparison-page .related-card h3,
.comparison-page .map-directory-card h3 {
  color: var(--mc-title-soft);
  text-shadow:
    0 2px 0 rgba(4, 7, 4, 0.7),
    0 0 22px rgba(253, 224, 71, 0.14);
}

#guide .guide-copy p,
#guide .guide-copy li,
.comparison-page,
.comparison-page .comparison-hero .summary,
.comparison-page .comparison-note p,
.comparison-page .comparison-section p,
.comparison-page .comparison-section li,
.comparison-page .guide-section-card li,
.comparison-page .page-toc li,
.comparison-page .quick-card li {
  color: var(--mc-body-readable);
}

#guide .guide-copy li::marker {
  color: var(--mc-title-strong);
}

#guide .guide-copy a,
.comparison-page a,
.comparison-page .comparison-section a,
.comparison-page .guide-nav a,
.comparison-page .guide-links a,
.comparison-page .page-toc a,
.comparison-page .quick-card a,
.comparison-page .map-directory-card a,
.comparison-page .related-card a {
  color: var(--mc-link-readable);
}

#guide .guide-copy a:hover,
#guide .guide-copy a:focus-visible,
.comparison-page a:hover,
.comparison-page a:focus-visible {
  color: var(--mc-link-hover);
}

.comparison-page .hero-button {
  color: var(--mc-on-bright);
}

/* Site-wide heading hierarchy audit */
:root {
  --mc-heading-shadow: 0 3px 0 rgba(4, 7, 4, 0.82), 0 0 28px rgba(253, 224, 71, 0.2);
  --mc-card-heading-shadow: 0 2px 0 rgba(4, 7, 4, 0.66), 0 0 18px rgba(253, 224, 71, 0.12);
}

.hero-copy h1,
#game-title,
.guide-inner > h2,
#faq .content-inner h2,
.content-band.muted .content-inner h2,
.policy-card h1,
.press-hero h1,
.press-facts h2,
.press-section h2,
.comparison-page .comparison-hero h1,
.comparison-page .comparison-note h2,
.comparison-page .comparison-section h2,
.comparison-page .guide-section-card h2,
.comparison-page .page-toc h2,
.comparison-page .quick-card h2,
.comparison-page .guide-cta h2 {
  color: var(--mc-title);
  text-shadow: var(--mc-heading-shadow);
}

.game-highlights h3,
.intro-grid h2,
.intro-grid h3,
.home-shortcut__name,
.home-all-card__name,
.game-card__title,
.game-card__title a,
.guide-copy h3,
.faq-list summary,
.comparison-faq summary,
.policy-card h2,
.press-copy-grid h3,
.submission-block h3,
.comparison-page .guide-card h3,
.comparison-page .step-list h3,
.comparison-page .phase-list h3,
.comparison-page .guide-section-card h3,
.comparison-page .map-directory-card h3,
.comparison-page .related-card h3,
.comparison-page .stat-strip strong,
.comparison-page .guide-table th {
  color: var(--mc-title-soft);
}

.guide-copy h3,
.faq-list summary,
.comparison-faq summary,
.policy-card h2,
.press-copy-grid h3,
.submission-block h3,
.comparison-page .guide-card h3,
.comparison-page .step-list h3,
.comparison-page .phase-list h3,
.comparison-page .guide-section-card h3,
.comparison-page .map-directory-card h3,
.comparison-page .related-card h3 {
  text-shadow: var(--mc-card-heading-shadow);
}

.hero-copy .eyebrow,
.home-all-games__title,
.home-shortcut__meta,
.home-all-card__meta,
.game-card__category,
.content-inner .eyebrow,
#faq .eyebrow,
.policy-card .eyebrow,
.press-page .eyebrow,
.press-facts dt,
.asset-grid span,
.comparison-page .eyebrow,
.comparison-page .map-directory-card span,
.comparison-page .related-card span,
.comparison-page .stat-strip span {
  color: var(--mc-title-strong);
}

.faq-list summary:hover,
.faq-list summary:focus-visible,
.comparison-faq summary:hover,
.comparison-faq summary:focus-visible {
  color: var(--mc-link-hover);
}

.faq-list summary::marker,
.comparison-faq summary::marker {
  color: var(--mc-title-strong);
}

.site-footer strong {
  color: var(--mc-title-soft);
}

/* Mobile navigation refinement: compact header, icon rail, and named expanded menu. */
@media (max-width: 900px) {
  body.has-arcade-dock,
  body.has-arcade-dock.arcade-dock-is-expanded {
    padding-left: 0;
  }

  .mc-arcade-dock.mc-arcade-dock--collapsed {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 10px;
    width: min(100% - 20px, 760px);
    overflow: hidden;
  }

  .mc-arcade-dock--collapsed .mc-arcade-dock__links {
    display: flex;
    flex: 1 1 auto;
    flex-flow: row nowrap;
    gap: 10px;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .mc-arcade-dock:not(.mc-arcade-dock--collapsed) {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    gap: 10px;
    width: min(100% - 20px, 760px);
    overflow: visible;
  }

  .mc-arcade-dock:not(.mc-arcade-dock--collapsed) .mc-arcade-dock__links {
    display: grid;
    flex: 0 0 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    min-width: 0;
    overflow: visible;
  }

  .mc-arcade-dock:not(.mc-arcade-dock--collapsed) .mc-arcade-dock__link {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    justify-items: start;
    width: 100%;
    height: auto;
    min-height: 52px;
    padding: 4px 8px 4px 3px;
    border-radius: 12px;
    transform: none;
  }

  .mc-arcade-dock:not(.mc-arcade-dock--collapsed) .mc-arcade-dock__link:hover,
  .mc-arcade-dock:not(.mc-arcade-dock--collapsed) .mc-arcade-dock__link:focus-visible {
    transform: translateY(-2px);
  }

  .mc-arcade-dock:not(.mc-arcade-dock--collapsed) .mc-arcade-dock__link img {
    width: 42px;
    height: 42px;
  }

  .mc-arcade-dock:not(.mc-arcade-dock--collapsed) .mc-arcade-dock__link span {
    position: static;
    display: block;
    max-width: none;
    padding: 0;
    color: #c8ffae;
    text-align: left;
    text-transform: uppercase;
    white-space: normal;
    pointer-events: auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 0.72rem;
    line-height: 1.1;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .site-header {
    position: sticky;
    top: 8px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    min-height: 60px;
    padding: 6px 12px;
  }

  .brand {
    flex: 1 1 0;
    width: auto;
    max-width: calc(100% - 100px);
    min-width: 0;
    overflow: hidden;
  }

  .brand > span:last-child {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-switcher,
  .site-header .press-nav + .language-switcher {
    flex: 0 0 auto;
    align-self: center;
    margin-top: 0;
    margin-left: auto;
  }

  .language-menu summary {
    min-height: 44px;
    padding-inline: 11px;
  }
}

@media (max-width: 680px) {
  .hero-copy h1,
  #game-title {
    font-size: clamp(2.5rem, 12vw, 3.25rem);
    line-height: 0.94;
    overflow-wrap: normal;
  }
}

@media (max-width: 480px) {
  .brand {
    gap: 10px;
    font-size: 0.86rem;
  }

  .brand-mark {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
  }

  .language-menu summary {
    padding-inline: 10px;
    font-size: 0.82rem;
  }
}

@media (max-width: 360px) {
  .hero-copy h1,
  #game-title {
    font-size: 2.35rem;
  }

  .mc-arcade-dock:not(.mc-arcade-dock--collapsed) .mc-arcade-dock__link span {
    font-size: 0.68rem;
  }
}

/* Header shortcut to the main game player */
.header-play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  order: 2;
  flex: 0 0 auto;
  min-width: 82px;
  min-height: 44px;
  padding: 0 18px;
  color: #071007;
  background: linear-gradient(180deg, #fff3a8 0, var(--taste-yellow) 50%, var(--taste-lime) 100%);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  box-shadow:
    inset 0 -3px 0 rgba(58, 73, 4, 0.18),
    0 12px 28px rgba(199, 255, 116, 0.18);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.header-play-button:hover,
.header-play-button:focus-visible {
  color: #020702;
  outline: none;
  transform: translateY(-1px);
  box-shadow:
    inset 0 -3px 0 rgba(58, 73, 4, 0.16),
    0 16px 34px rgba(199, 255, 116, 0.24);
}

.header-play-button:active {
  transform: translateY(1px);
}

@media (max-width: 1040px) {
  .header-play-button {
    min-width: 64px;
    padding-inline: 12px;
    font-size: 0.82rem;
  }
}
