:root {
  color-scheme: light;
  --ink: #171714;
  --ink-soft: #5d5a52;
  --paper: #f3eee3;
  --paper-deep: #e8dfcf;
  --surface: rgba(255, 253, 247, 0.92);
  --surface-solid: #fffdf7;
  --line: rgba(74, 61, 42, 0.17);
  --line-strong: rgba(74, 61, 42, 0.3);
  --coal: #101316;
  --coal-soft: #1d2224;
  --cream: #f3e2b6;
  --brass: #c99745;
  --brass-bright: #f1bb55;
  --cyan: #32d9df;
  --teal: #0d8588;
  --blue: #118bea;
  --purple: #7250d8;
  --red: #d84946;
  --green: #28a763;
  --shadow: 0 28px 80px rgba(37, 29, 19, 0.17);
  --small-shadow: 0 12px 30px rgba(37, 29, 19, 0.1);
  --radius: 26px;
  --shell: min(1180px, calc(100% - 40px));
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 4%, rgba(201, 151, 69, 0.17), transparent 26rem),
    linear-gradient(150deg, #f4efe5, #fbf7ed 48%, #ece2d2);
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.shell,
.wrap { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  color: white;
  background: var(--coal);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(104, 83, 52, 0.22);
  background: rgba(245, 239, 227, 0.91);
  backdrop-filter: blur(18px);
}
.header-inner,
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 5px 17px rgba(29, 27, 24, 0.24);
}
.site-header nav,
.site-footer nav,
.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-header nav a,
.site-footer nav a,
.nav-links a,
.footer-links a {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 760;
  text-decoration: none;
}
.site-header nav a:hover,
.site-footer nav a:hover,
.nav-links a:hover,
.footer-links a:hover { color: var(--teal); }
.theme-toggle {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--small-shadow);
  font: inherit;
  font-size: 1.05rem;
  cursor: pointer;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 790px;
  color: #fff8e8;
  border-bottom: 1px solid #2c281f;
  background:
    radial-gradient(circle at 78% 42%, rgba(32, 211, 218, 0.14), transparent 27rem),
    radial-gradient(circle at 17% 14%, rgba(213, 155, 65, 0.16), transparent 28rem),
    linear-gradient(142deg, #0a0d10, #181b1b 48%, #261d13);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.28;
  background:
    repeating-linear-gradient(90deg, transparent 0 55px, rgba(255,255,255,0.02) 56px 57px),
    linear-gradient(25deg, transparent 68%, rgba(201,151,69,0.12));
}
.hero-grid {
  min-height: 790px;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(360px, 0.76fr);
  align-items: center;
  gap: 76px;
  padding-block: 78px 62px;
}
.hero-copy { min-width: 0; max-width: 700px; }
.eyebrow {
  margin: 0 0 14px;
  color: #987024;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero .eyebrow,
.gameplay-section .eyebrow,
.designer-section .eyebrow,
.privacy-section .eyebrow { color: var(--cyan); }
h1,
h2,
h3,
p { margin-top: 0; }
h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.044em;
}
h1 {
  max-width: 720px;
  margin-bottom: 27px;
  font-size: clamp(3.65rem, 7.5vw, 7rem);
  font-weight: 930;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 4.6vw, 4.25rem);
  font-weight: 900;
}
h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}
.hero-lede {
  max-width: 660px;
  margin-bottom: 29px;
  color: rgba(255, 248, 232, 0.74);
  font-size: clamp(1.09rem, 2vw, 1.31rem);
  line-height: 1.58;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  transition: transform 150ms ease, filter 150ms ease;
}
.store-badge-link:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.34));
}
.store-badge { display: block; width: auto; }
.app-store-badge { height: 54px; }
.google-play-badge { height: 72px; margin: -9px -12px; }
.store-note {
  max-width: 630px;
  margin-bottom: 35px;
  color: rgba(255, 248, 232, 0.61);
  font-size: 0.8rem;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.hero-facts div {
  min-width: 100px;
  display: flex;
  flex-direction: column;
  padding-left: 13px;
  border-left: 2px solid var(--brass);
}
.hero-facts strong {
  color: white;
  font-size: 1.65rem;
  line-height: 1.05;
}
.hero-facts span {
  margin-top: 5px;
  color: rgba(255, 248, 232, 0.58);
  font-size: 0.73rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hero-visual {
  position: relative;
  min-height: 670px;
  display: grid;
  place-items: center;
}
.machine-glow {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: conic-gradient(from 40deg, rgba(35,210,216,0.27), rgba(201,151,69,0.3), rgba(110,57,31,0.1), rgba(35,210,216,0.27));
  filter: blur(36px);
}
.phone-shot,
.tablet-shot,
.wide-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 175, 99, 0.34);
  border-radius: 30px;
  background: #ddd;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}
.phone-shot img,
.tablet-shot img,
.wide-shot img {
  width: 100%;
  height: auto;
}
.hero-phone {
  position: relative;
  z-index: 2;
  width: min(345px, 72vw);
  max-height: 650px;
}
.floating-icon {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 7%;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 27px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.44);
  transform: rotate(4deg);
}

.section { padding-block: 112px; }
.section-heading { max-width: 830px; margin-bottom: 54px; }
.section-heading > p:last-child,
.gameplay-copy > p,
.twin-copy > p,
.designer-copy > p,
.stats-copy > p,
.privacy-grid p,
.final-cta p,
.legal p,
.legal li { color: var(--ink-soft); }
.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 64px;
}
.split-heading > p { margin-bottom: 0; color: var(--ink-soft); }

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.step-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-solid);
  box-shadow: var(--small-shadow);
}
.step-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(201, 151, 69, 0.12);
}
.step-number {
  color: #8d8679;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.step-symbol {
  width: 116px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 30px 0 28px;
  border: 1px solid #c79b55;
  border-radius: 16px;
  color: white;
  background: linear-gradient(145deg, #148dbf, #24c1c8);
  box-shadow: 0 8px 0 #d8ccb8, inset 0 1px 0 rgba(255,255,255,0.4), 0 12px 25px rgba(20,141,191,0.2);
  font-size: 1.38rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: rotate(-2deg);
}
.clue-symbol { color: white; background: linear-gradient(145deg, #7450db, #b052d7); transform: rotate(2deg); }
.unlock-symbol { color: white; background: linear-gradient(145deg, #dd8b23, #efbd47); font-size: 2.1rem; }
.step-card p { position: relative; z-index: 2; margin-bottom: 0; color: var(--ink-soft); }

.gameplay-section,
.designer-section,
.privacy-section {
  color: #fff8e8;
  background:
    radial-gradient(circle at 86% 12%, rgba(46, 211, 216, 0.1), transparent 25rem),
    linear-gradient(135deg, #0e1113, #1b1d1c 55%, #211a13);
}
.gameplay-grid,
.designer-grid,
.stats-grid,
.twin-screens-grid,
.privacy-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 84px;
}
.gameplay-grid .phone-shot {
  width: min(410px, 100%);
  max-height: 730px;
  justify-self: center;
}
.gameplay-copy,
.designer-copy,
.stats-copy,
.twin-copy { max-width: 650px; }
.gameplay-copy > p,
.designer-copy > p,
.privacy-grid p { color: rgba(255, 248, 232, 0.69); }
.tick-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.tick-list li {
  position: relative;
  margin: 13px 0;
  padding-left: 31px;
}
.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 950;
}

.games-section { background: rgba(255, 253, 247, 0.52); }
.game-catalogue {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.game-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-solid);
  box-shadow: 0 8px 26px rgba(46,36,23,0.07);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(46,36,23,0.12);
}
.game-symbol {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,151,69,0.52);
  border-radius: 17px;
  color: white;
  background: linear-gradient(145deg, #127fbd, #27c5cc);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.42), 0 10px 22px rgba(18,127,189,0.24);
  font-size: 1.35rem;
  font-weight: 900;
}
.game-card:nth-child(5n+2) .game-symbol { color: white; background: linear-gradient(145deg, #7951dd, #b44fd0); box-shadow: inset 0 1px 0 rgba(255,255,255,0.42), 0 10px 22px rgba(121,81,221,0.25); }
.game-card:nth-child(5n+3) .game-symbol { color: white; background: linear-gradient(145deg, #d94e5b, #ef8b48); box-shadow: inset 0 1px 0 rgba(255,255,255,0.42), 0 10px 22px rgba(217,78,91,0.25); }
.game-card:nth-child(5n+4) .game-symbol { color: white; background: linear-gradient(145deg, #239b69, #45c8a0); box-shadow: inset 0 1px 0 rgba(255,255,255,0.42), 0 10px 22px rgba(35,155,105,0.25); }
.game-card:nth-child(5n+5) .game-symbol { color: white; background: linear-gradient(145deg, #d88320, #efbb3e); box-shadow: inset 0 1px 0 rgba(255,255,255,0.42), 0 10px 22px rgba(216,131,32,0.25); }
.game-symbol.letters { font-size: 0.84rem; }
.colour-dot { color: #e45551 !important; text-shadow: 15px 0 #36b66b, 0 15px #2f8ae0; }
.game-card h3 { margin: 2px 0 8px; font-size: 1.17rem; letter-spacing: -0.025em; }
.game-card p { margin: 0; color: var(--ink-soft); font-size: 0.9rem; line-height: 1.5; }
.game-card b {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--teal);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.twin-screens-section { overflow: hidden; }
.twin-screens-grid { grid-template-columns: minmax(0, 0.7fr) minmax(400px, 1fr); }
.screen-pair {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.screen-pair .phone-shot { position: absolute; width: 330px; max-height: 680px; }
.back-shot { left: 8%; transform: rotate(-5deg); }
.front-shot { right: 8%; z-index: 2; transform: rotate(5deg); }

.designer-grid { grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr); }
.designer-grid .tablet-shot {
  width: min(430px, 100%);
  max-height: 720px;
  justify-self: center;
}
.designer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
.designer-list li { display: grid; grid-template-columns: 38px 1fr; gap: 13px; }
.designer-list li > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(50,217,223,0.54);
  border-radius: 50%;
  color: var(--cyan);
  font-weight: 900;
}
.designer-list strong { display: block; color: white; }
.designer-list p { margin: 4px 0 0; color: rgba(255,248,232,0.62); font-size: 0.89rem; line-height: 1.5; }
.designer-note {
  padding: 18px 20px;
  border: 1px solid rgba(201,151,69,0.4);
  border-radius: 16px;
  background: rgba(201,151,69,0.08);
}
.designer-note strong { color: var(--cream); }

.stats-section { background: rgba(255,253,247,0.55); }
.stats-grid { grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr); }
.stats-grid .wide-shot { max-height: 700px; }
.stats-copy .tick-list li::before { color: var(--teal); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}
.price-card {
  position: relative;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-solid);
  box-shadow: var(--small-shadow);
}
.price-card.featured-price {
  color: #fff8e8;
  border-color: rgba(201,151,69,0.75);
  background: linear-gradient(145deg, #131718, #26221b);
  box-shadow: 0 22px 52px rgba(34,27,18,0.24);
}
.price-name {
  margin: 0;
  color: inherit;
  font-size: 1.13rem;
  font-weight: 900;
}
.price {
  margin: 9px 0 3px;
  font-size: clamp(2.7rem, 5vw, 4rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
}
.price small { font-size: 0.82rem; font-weight: 750; letter-spacing: 0; }
.price-summary { min-height: 4.8em; margin: 15px 0 24px; color: var(--ink-soft); }
.featured-price .price-summary,
.featured-price .tick-list { color: rgba(255,248,232,0.68); }
.tick-list.compact li { margin: 9px 0; font-size: 0.91rem; }
.best-fit {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #16120d;
  background: var(--brass-bright);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.upgrade-note {
  margin: 23px 0 0;
  padding-top: 17px;
  border-top: 1px solid rgba(201,151,69,0.3);
  color: var(--cream);
  font-size: 0.86rem;
}

.privacy-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 90px;
}
.privacy-grid h2 { margin-bottom: 0; }
.text-link { color: var(--cyan); font-weight: 850; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.final-cta { padding-block: 88px; }
.final-cta-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 29px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface-solid);
  box-shadow: var(--shadow);
}
.final-cta-panel > img {
  width: 104px;
  height: 104px;
  border-radius: 24px;
  box-shadow: var(--small-shadow);
}
.final-cta h2 { margin-bottom: 8px; font-size: clamp(2rem,4vw,3.35rem); }
.final-cta p { margin-bottom: 0; }
.final-links { display: flex; flex-direction: column; gap: 10px; min-width: 160px; }
.button,
.button-primary,
.button-secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--coal);
  border-radius: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.button,
.button-primary { color: white; background: var(--coal); }
.button.secondary,
.button-secondary { color: var(--ink); background: transparent; }
.button:hover,
.button-primary:hover,
.button-secondary:hover { transform: translateY(-2px); box-shadow: var(--small-shadow); }

.site-footer,
footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 44px;
  color: var(--ink-soft);
}
.footer-grid,
.footer-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px 35px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { border-radius: 11px; }
.footer-brand strong,
.footer-brand span { display: block; }
.footer-brand span { color: var(--ink-soft); font-size: 0.76rem; }
.footer-grid > p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.legal {
  max-width: 860px;
  padding-block: 68px 100px;
}
.legal h1 { margin: 14px 0 26px; font-size: clamp(3rem, 7vw, 5.4rem); }
.legal h2 { margin-top: 2.3em; font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.2; }
.legal .meta { font-size: 0.88rem; }
.legal strong { color: var(--ink); }
.legal a { color: var(--teal); }
.legal .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.notice {
  padding: 16px 18px;
  border-left: 4px solid var(--brass);
  border-radius: 10px;
  background: rgba(201,151,69,0.11);
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr); gap: 38px; }
  .game-catalogue { grid-template-columns: repeat(2, 1fr); }
  .screen-pair .phone-shot { width: 290px; }
}

@media (max-width: 800px) {
  .site-header nav,
  .nav-links { display: none; }
  .hero-grid,
  .gameplay-grid,
  .designer-grid,
  .stats-grid,
  .twin-screens-grid,
  .privacy-grid,
  .split-heading { grid-template-columns: 1fr; }
  .hero-grid { gap: 22px; padding-top: 60px; }
  .hero-copy { text-align: center; }
  .hero-actions,
  .hero-facts { justify-content: center; }
  .hero-visual { min-height: 560px; order: -1; }
  .hero-phone { max-height: 530px; }
  .floating-icon { right: 8%; width: 92px; height: 92px; }
  .section { padding-block: 82px; }
  .step-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .gameplay-grid .phone-shot,
  .designer-grid .tablet-shot { max-height: 650px; }
  .designer-copy,
  .stats-copy { order: -1; }
  .designer-list { grid-template-columns: 1fr; }
  .split-heading { gap: 18px; }
  .screen-pair { min-height: 610px; }
  .final-cta-panel { grid-template-columns: auto 1fr; }
  .final-links { grid-column: 1 / -1; flex-direction: row; }
  .final-links a { flex: 1; }
}

@media (max-width: 560px) {
  :root { --shell: min(100% - 28px, 1180px); }
  body { font-size: 16px; }
  .header-inner,
  .nav { min-height: 68px; }
  .brand { font-size: 0.92rem; }
  .brand img { width: 39px; height: 39px; }
  .hero { min-height: 0; }
  .hero-grid { min-height: 0; padding-block: 48px 65px; }
  .hero-visual { min-height: 475px; }
  .hero-phone { width: 260px; max-height: 470px; }
  .machine-glow { width: 330px; height: 330px; }
  .floating-icon { width: 78px; height: 78px; border-radius: 20px; }
  h1 { font-size: clamp(3rem, 15vw, 4.25rem); }
  .app-store-badge { height: 48px; }
  .google-play-badge { height: 64px; }
  .hero-facts { gap: 14px; }
  .hero-facts div { min-width: 84px; }
  .step-card { min-height: 0; }
  .game-catalogue { grid-template-columns: 1fr; }
  .game-card { min-height: 0; }
  .screen-pair { min-height: 490px; }
  .screen-pair .phone-shot { width: 220px; max-height: 460px; }
  .back-shot { left: 1%; }
  .front-shot { right: 1%; }
  .price-card { padding: 25px; }
  .best-fit { position: static; display: inline-block; margin-bottom: 18px; }
  .final-cta-panel { grid-template-columns: 1fr; text-align: center; }
  .final-cta-panel > img { margin-inline: auto; }
  .final-links { grid-column: auto; flex-direction: column; }
  .footer-grid,
  .footer-row { grid-template-columns: 1fr; }
  .site-footer nav,
  .footer-links { flex-wrap: wrap; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .store-badge-link,
  .game-card,
  .button,
  .button-primary,
  .button-secondary,
  .skip-link { transition: none; }
}

[data-theme="dark"] {
  color-scheme: dark;
  --ink: #fff8e8;
  --ink-soft: #c4baa7;
  --paper: #0b0e10;
  --paper-deep: #131617;
  --surface: rgba(27, 29, 28, 0.9);
  --surface-solid: #181b1b;
  --line: rgba(222, 190, 130, 0.16);
  --line-strong: rgba(222, 190, 130, 0.3);
  --shadow: 0 28px 80px rgba(0,0,0,0.33);
  --small-shadow: 0 12px 30px rgba(0,0,0,0.24);
}
[data-theme="dark"] body {
  background:
    radial-gradient(circle at 7% 4%, rgba(201,151,69,0.08), transparent 26rem),
    linear-gradient(150deg, #0b0e10, #141716 50%, #17130e);
}
[data-theme="dark"] .site-header { background: rgba(12,15,16,0.9); }
[data-theme="dark"] .theme-toggle { background: var(--surface-solid); }
[data-theme="dark"] .game-card b { color: var(--cyan); }
[data-theme="dark"] .button.secondary,
[data-theme="dark"] .button-secondary { border-color: var(--cream); color: var(--cream); }
[data-theme="dark"] .games-section,
[data-theme="dark"] .stats-section { background: rgba(255,255,255,0.018); }
