:root {
  color-scheme: light;
  --bg: #f4f0e6;
  --paper: #fffaf0;
  --paper-strong: #ffffff;
  --ink: #17221d;
  --muted: #667269;
  --line: #d8decd;
  --green: #246c55;
  --mint: #9ce7c7;
  --blue: #2d78a6;
  --amber: #e7a83e;
  --shadow: 0 18px 48px rgba(31, 50, 40, .14);
  --radius: 8px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(40, 75, 55, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 75, 55, .055) 1px, transparent 1px),
    var(--bg);
  background-size: 32px 32px;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1280px, calc(100vw - 32px));
  min-height: 72px;
  margin: 12px auto 0;
  padding: 12px clamp(16px, 3vw, 28px);
  background: rgba(255, 252, 245, .94);
  border: 1px solid rgba(36, 108, 85, .14);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(31, 50, 40, .12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
}

.brand-mark,
.game-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.icon-small { width: 42px; height: 42px; display: block; }
.icon-large { width: 78px; height: 78px; display: block; }

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.top-nav a {
  padding: 9px 12px;
  color: #294039;
  font-size: .9rem;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
}

.top-nav a:hover {
  border-color: rgba(36, 108, 85, .22);
  background: rgba(156, 231, 199, .35);
}

main {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
}

.arcade-shell {
  display: block;
  padding: 18px 0 10px;
}

.player-panel,
.hero-card,
.answer-card,
.guide-card,
.mini-card,
.article-shell,
.sticky-card,
.faq-section {
  border: 1px solid rgba(36, 108, 85, .18);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .92);
  box-shadow: var(--shadow);
}

.player-panel {
  min-width: 0;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--green);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 5.2rem);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.player-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
}

.tool-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(36, 108, 85, .22);
  border-radius: 999px;
  color: #1d4238;
  background: #f4fbec;
  font-weight: 900;
  cursor: pointer;
}

.release-pill {
  cursor: default;
}

.tool-button kbd,
.mouse-release-hint kbd {
  min-width: 24px;
  padding: 2px 6px;
  border-radius: 7px;
  color: #fff;
  background: rgba(36, 108, 85, .88);
  font: inherit;
  font-size: .72rem;
}

.tool-button.is-locked {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.tool-button.is-locked kbd {
  color: #1d4238;
  background: #f4fbec;
}

.circle-button {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(45, 120, 166, .24);
}

.single-player-frame {
  position: relative;
  min-width: 0;
  height: clamp(420px, min(56.25vw, calc(100svh - 300px)), 720px);
  background: #071411;
  outline: none;
}

.single-player-frame:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(45, 120, 166, .55);
}

.single-player-frame.is-pointer-locked {
  box-shadow: inset 0 0 0 3px rgba(156, 231, 199, .72);
}

.single-player-frame:fullscreen {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  background: #000;
}

.single-player-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.mouse-release-hint {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 20, 17, .68);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
  font-size: .82rem;
  font-weight: 900;
  pointer-events: none;
}

.play-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 8px;
  background: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: var(--green);
}

.button-ghost {
  color: var(--green);
  border-color: rgba(36, 108, 85, .28);
  background: rgba(255, 255, 255, .5);
}

.button-soft {
  color: #322814;
  background: #ffe4a3;
}

.fine-print {
  margin: 0;
  padding: 8px 16px 14px;
  color: var(--muted);
  font-size: .88rem;
  background: #fff;
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(180px, .44fr) minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
  margin: 12px 0 18px;
  padding: 16px;
}

.summary-art {
  overflow: hidden;
  border-radius: var(--radius);
}

.summary-art svg {
  display: block;
  width: 100%;
  height: auto;
}

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

.hero-card h2,
.section-heading h2,
.answer-card h2,
.guide-card h2,
.article-shell h1,
.article-shell h2,
.sticky-card h2 {
  margin: 0 0 10px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-card h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.6rem);
}

.hero-card p,
.answer-card p,
.guide-card p,
.article-shell p,
.faq-list p,
.sticky-card p {
  color: var(--muted);
  line-height: 1.62;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
}

.fact-list div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 9px 0;
  border-top: 1px solid rgba(36, 108, 85, .16);
}

.fact-list dt {
  color: var(--green);
  font-size: .8rem;
  font-weight: 900;
}

.fact-list dd {
  margin: 0;
  color: #253b34;
  font-size: .9rem;
}

.share-strip {
  display: grid;
  grid-template-columns: minmax(92px, .62fr) repeat(5, minmax(92px, 1fr));
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 8px 16px 12px;
  overflow: visible;
  background: #fff;
  border-top: 1px solid rgba(36, 108, 85, .12);
}

.share-strip > div span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
}

.social-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 38px;
  padding: 8px 10px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.social-facebook { background: #4167b2; }
.social-x { background: #050505; }
.social-reddit { background: #ff4d12; }
.social-whatsapp { background: #23c75a; }
.social-copy { background: #91cf2e; color: #173019; }

.share-short { display: none; }

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

.answer-card {
  grid-column: span 2;
  padding: 22px;
}

.guide-card {
  min-width: 0;
  padding: 20px;
}

.quick-list {
  margin: 14px 0;
  padding-left: 18px;
  color: #334c42;
  line-height: 1.58;
}

.quick-list li + li { margin-top: 8px; }

.text-link,
.source-links a {
  color: var(--green);
  font-weight: 900;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.guide-list,
.faq-section {
  margin: 18px 0;
  padding: 18px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

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

.mini-card {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 16px;
  color: inherit;
  text-decoration: none;
  box-shadow: none;
}

.mini-card:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 108, 85, .38);
}

.mini-card span {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  color: #1e473c;
  background: #d8f4cd;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-card small {
  color: var(--muted);
  line-height: 1.45;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

details {
  border: 1px solid rgba(36, 108, 85, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .5);
}

summary {
  padding: 15px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 15px 15px;
}

.article-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  padding: 22px 0;
}

.article-shell {
  min-width: 0;
  padding: clamp(20px, 4vw, 44px);
}

.article-shell h1 {
  font-size: clamp(2.4rem, 5.4vw, 5.8rem);
}

.lede {
  max-width: 780px;
  color: #344940;
  font-size: 1.2rem;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 26px;
}

.article-shell section {
  padding: 20px 0;
  border-top: 1px solid rgba(36, 108, 85, .14);
}

.article-shell h2 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.article-sidebar {
  min-width: 0;
}

.sticky-card {
  position: sticky;
  top: 92px;
  padding: 18px;
}

.article-related {
  grid-column: 1 / -1;
}

.legal-main {
  display: block;
  max-width: 920px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1280px, calc(100vw - 32px));
  margin: 16px auto 0;
  padding: 28px 0 36px;
  color: var(--muted);
  border-top: 1px solid rgba(36, 108, 85, .16);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: flex-end;
}

.site-footer a {
  color: #2b5046;
  text-decoration: none;
}

.footer-brand {
  margin: 0 0 5px;
  color: var(--ink);
  font-weight: 900;
}

.footer-copy {
  margin: 0;
}

@media (max-width: 1080px) {
  .article-main {
    grid-template-columns: 1fr;
  }

  .hero-card {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: 14px;
  }

  .fact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

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

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

  .share-strip {
    grid-template-columns: minmax(110px, .9fr) repeat(3, minmax(86px, 1fr));
  }
}

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

  .site-header {
    position: static;
    width: min(680px, calc(100vw - 18px));
    margin-top: 8px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 26px;
  }

  .top-nav {
    display: none;
  }

  main,
  .site-footer {
    width: min(680px, calc(100vw - 18px));
  }

  .arcade-shell {
    padding-top: 10px;
  }

  .eyebrow {
    margin-bottom: 4px;
    font-size: .66rem;
  }

  .release-pill,
  .mouse-release-hint {
    display: none;
  }

  .circle-button {
    width: 50px;
    height: 50px;
  }

  .single-player-frame {
    height: clamp(250px, 48svh, 360px);
  }

  .play-actions {
    gap: 7px;
    padding: 9px 10px 6px;
  }

  .button {
    min-height: 32px;
    padding: 7px 10px;
    font-size: .76rem;
  }

  .fine-print {
    display: none;
  }

  .hero-card {
    display: block;
    padding: 12px;
  }

  .summary-art {
    display: none;
  }

  .hero-card h2 {
    font-size: 1.8rem;
  }

  .fact-list {
    grid-template-columns: 1fr;
  }

  .fact-list div {
    grid-template-columns: 1fr;
    padding: 7px 0;
  }

  .share-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 8px 10px 10px;
  }

  .share-strip > div {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    gap: 8px;
    min-width: 0;
  }

  .share-strip > div strong {
    display: block;
    font-size: .95rem;
  }

  .share-strip > div span {
    font-size: .68rem;
  }

  .social-share {
    min-height: 30px;
    padding: 6px 8px;
    font-size: .72rem;
  }

  .share-full { display: none; }
  .share-short { display: inline; }

  .seo-grid,
  .faq-list,
  .guide-links {
    grid-template-columns: 1fr;
  }

  .answer-card {
    grid-column: auto;
  }

  .answer-card,
  .guide-card,
  .guide-list,
  .faq-section,
  .article-shell,
  .sticky-card {
    padding: 14px;
  }

  .section-heading {
    display: block;
  }

  .article-main {
    padding-top: 10px;
  }

  .site-footer {
    display: block;
  }

  .site-footer nav {
    justify-content: flex-start;
    margin-top: 14px;
  }
}

@media (max-width: 720px) and (orientation: landscape) {
  .single-player-frame {
    height: clamp(220px, 54svh, 360px);
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .site-header {
    min-height: 54px;
    padding: 6px 16px;
  }

  .brand small {
    display: none;
  }

  .icon-small {
    width: 36px;
    height: 36px;
  }

  .top-nav a {
    padding: 6px 9px;
    font-size: .82rem;
  }

  .arcade-shell {
    padding-top: 8px;
  }

  .circle-button {
    width: 46px;
    height: 46px;
  }

  .single-player-frame {
    height: clamp(180px, 48svh, 280px);
  }

  .play-actions {
    padding: 8px 10px 0;
  }

  .fine-print {
    display: none;
  }

  .share-strip {
    margin-top: 0;
  }
}