@font-face {
  font-family: "Teko";
  src: url("fonts/teko-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("fonts/oswald-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
}

:root {
  --green: #2fa43c;
  --green-dark: #176525;
  --green-deep: #0b2e14;
  --ink: #112118;
  --cream: #f5f3e9;
  --paper: #ffffff;
  --gold: #f2c34e;
  --gold-pale: #fff0ad;
  --navy: #0b1620;
  --muted: #526158;
  --line: rgba(23, 101, 37, 0.16);
  --shadow: 0 22px 52px rgba(23, 57, 34, 0.14);
  --wrap: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: 0.028;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, transparent 45%, var(--green-dark) 46%, var(--green-dark) 47%, transparent 48%),
    linear-gradient(150deg, transparent 45%, var(--green-dark) 46%, var(--green-dark) 47%, transparent 48%);
  background-size: 44px 76px;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--green-deep);
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 12px;
  top: 12px;
  translate: 0 -150%;
  padding: 10px 14px;
  border-radius: 5px;
  background: #fff;
  color: var(--green-deep);
  font-weight: 800;
}

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

.wrap {
  width: min(calc(100% - 44px), var(--wrap));
  margin-inline: auto;
}

.store-announcement {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 6px 16px;
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  font: 700 0.64rem Oswald, sans-serif;
  letter-spacing: 0.12em;
}

.store-announcement a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  color: #fff3bf;
  text-underline-offset: 4px;
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(23, 101, 37, 0.14);
  isolation: isolate;
}

.store-header::before {
  content: "";
  width: 100vw;
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 50%;
  translate: -50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(17, 33, 24, 0.06);
  backdrop-filter: blur(14px);
}

.brand-lockup {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand-lockup img {
  width: 53px;
  height: 53px;
  flex: none;
}

.brand-lockup span {
  display: flex;
  flex-direction: column;
  line-height: 0.8;
}

.brand-lockup b {
  color: var(--green-dark);
  font: 700 1.75rem/0.84 Teko, sans-serif;
  letter-spacing: 0.02em;
}

.brand-lockup small {
  margin-top: 5px;
  color: var(--green-dark);
  font: 700 0.59rem/1 Oswald, sans-serif;
  letter-spacing: 0.14em;
}

.store-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
}

.store-nav a,
.play-free-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #47544c;
  font: 700 0.72rem Oswald, sans-serif;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.store-nav a:hover,
.play-free-link:hover {
  color: var(--green-dark);
}

.store-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.play-free-link {
  color: var(--green-dark);
}

.store-buy-button,
.store-secondary-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 2px solid var(--green-deep);
  border-radius: 6px;
  font: 700 0.72rem Oswald, sans-serif;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.store-buy-button {
  background: #0f3219;
  color: #fff;
  box-shadow: 0 13px 25px rgba(11, 46, 20, 0.21);
}

.store-buy-button:hover {
  background: #071b0d;
  transform: translateY(-1px);
}

.store-buy-button--small {
  min-height: 46px;
  padding-inline: 15px;
  font-size: 0.63rem;
}

.store-secondary-button {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.store-secondary-button:hover {
  background: #fff;
  color: var(--green-dark);
}

.store-eyebrow {
  margin: 0 0 9px;
  color: var(--green-dark);
  font: 700 0.72rem Oswald, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.store-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 42, 13, 0.32), transparent 56%),
    radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.25), transparent 23rem),
    linear-gradient(105deg, #155c22 0%, #21812e 44%, #2fa43c 72%, #176525 100%);
  color: #fff;
}

.store-hero::before,
.inside-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, transparent 45%, #fff 46%, #fff 47%, transparent 48%),
    linear-gradient(150deg, transparent 45%, #fff 46%, #fff 47%, transparent 48%);
  background-size: 42px 72px;
}

.store-hero__inner {
  min-height: 660px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: 54px;
  align-items: center;
  padding-block: 62px 70px;
}

.store-hero__copy,
.store-hero__visual {
  position: relative;
  z-index: 1;
}

.store-hero .store-eyebrow {
  color: #fff;
}

.store-hero h1 {
  max-width: 700px;
  margin: 0;
  color: #fff;
  font: 700 clamp(5.2rem, 9vw, 8.5rem)/0.73 Teko, sans-serif;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 7px 26px rgba(0, 0, 0, 0.17);
}

.store-hero h1 span {
  color: #fff5c7;
}

.store-lede {
  max-width: 610px;
  margin: 24px 0;
  color: #fff;
  font-size: clamp(1rem, 1.7vw, 1.17rem);
  line-height: 1.62;
}

.store-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-hero .store-buy-button {
  border-color: #fff;
  background: #fff;
  color: var(--green-dark);
}

.store-hero .store-buy-button:hover {
  background: var(--gold-pale);
  color: #142618;
}

.store-support-line {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: 0.72rem;
  line-height: 1.45;
}

.store-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 27px;
}

.store-hero__facts span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 5px;
  background: rgba(4, 43, 13, 0.22);
  color: rgba(255, 255, 255, 0.88);
  font: 700 0.59rem Oswald, sans-serif;
  letter-spacing: 0.05em;
}

.store-hero__facts b {
  color: var(--gold-pale);
  font-size: 0.93rem;
}

.product-gallery {
  width: min(100%, 540px);
  margin-inline: auto;
}

.store-product-stage {
  width: min(100%, 510px);
  aspect-ratio: 1;
  position: relative;
  margin-inline: auto;
  isolation: isolate;
}

.store-product-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 6%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 68%);
}

.store-product-stage > img {
  width: 94%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border: 7px solid #fff;
  border-radius: 19px;
  box-shadow: 0 34px 58px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(11, 46, 20, 0.25);
  transition: opacity 160ms ease, scale 220ms ease;
}

.store-product-stage > img.is-changing {
  opacity: 0.25;
  scale: 0.975;
}

.store-product-seal {
  width: 112px;
  aspect-ratio: 1;
  position: absolute;
  z-index: 3;
  right: -1%;
  bottom: 7%;
  display: grid;
  place-items: center;
  border: 4px double #132b1a;
  border-radius: 50%;
  background: var(--gold);
  color: #132b1a;
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.28), inset 0 0 0 4px rgba(255, 255, 255, 0.42);
  text-align: center;
  font: 700 0.68rem/1.2 Oswald, sans-serif;
  letter-spacing: 0.08em;
  rotate: 7deg;
}

.real-product-chip {
  min-height: 34px;
  position: absolute;
  z-index: 6;
  left: 4%;
  top: 8%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(7, 27, 13, 0.86);
  color: #fff;
  font: 700 0.53rem Oswald, sans-serif;
  letter-spacing: 0.08em;
}

.real-product-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #69ec7d;
  box-shadow: 0 0 9px #69ec7d;
}

.product-gallery__controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 5px;
}

.product-gallery__controls button {
  min-width: 0;
  min-height: 74px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: rgba(5, 40, 13, 0.36);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.product-gallery__controls button:hover,
.product-gallery__controls button[aria-pressed="true"] {
  border-color: #fff;
  background: #fff;
  color: var(--green-dark);
}

.product-gallery__controls img {
  width: 46px;
  height: 56px;
  border-radius: 4px;
  background: #fff;
  object-fit: cover;
}

.product-gallery__controls span {
  font: 700 0.65rem/1.2 Oswald, sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}

.product-gallery__caption {
  margin: 9px 0 0;
  color: #fff;
  text-align: center;
  font: 700 0.65rem Oswald, sans-serif;
  letter-spacing: 0.1em;
}

.ways-section {
  padding-block: 90px;
}

.ways-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  column-gap: 56px;
  align-items: end;
}

.ways-heading .store-eyebrow {
  grid-column: 1 / -1;
}

.section-title,
.ways-heading h2,
.inside-copy h2,
.how-heading h2,
.support-section__copy h2,
.newsletter-copy h2 {
  margin: 0;
  color: var(--ink);
  font: 700 clamp(4rem, 7vw, 6.3rem)/0.77 Teko, sans-serif;
  text-transform: uppercase;
}

.section-title span,
.ways-heading h2 span,
.inside-copy h2 span,
.how-heading h2 span,
.support-section__copy h2 span,
.newsletter-copy h2 span {
  color: var(--green-dark);
}

.ways-heading > p:last-child {
  max-width: 540px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.67;
}

.ways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  margin-top: 38px;
}

.way-card {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 3px solid #fff;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.way-card--physical {
  background: var(--green-dark);
  color: #fff;
}

.way-card--digital {
  background: var(--navy);
  color: #fff;
}

.way-card__number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: rgba(255, 255, 255, 0.62);
  font: 700 5.2rem/0.8 Teko, sans-serif;
}

.way-card__domain {
  margin: 0;
  color: var(--gold-pale);
  font: 700 0.59rem Oswald, sans-serif;
  letter-spacing: 0.13em;
}

.way-card h3 {
  max-width: 430px;
  margin: 58px 0 12px;
  font: 700 3.8rem/0.8 Teko, sans-serif;
}

.way-card > p:not(.way-card__domain) {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.87);
  font-size: 0.9rem;
  line-height: 1.6;
}

.way-card strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font: 700 0.62rem Oswald, sans-serif;
  letter-spacing: 0.1em;
}

.way-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--gold-pale);
  font: 700 0.68rem Oswald, sans-serif;
  letter-spacing: 0.08em;
}

.ways-promise {
  margin: 17px 0 0;
  padding: 16px 18px;
  border-left: 5px solid var(--green);
  background: #fff;
  color: #536159;
  box-shadow: 0 12px 28px rgba(23, 57, 34, 0.08);
  font-size: 0.78rem;
  line-height: 1.55;
}

.ways-promise b {
  color: var(--green-dark);
  font: 700 0.69rem Oswald, sans-serif;
  letter-spacing: 0.08em;
}

.inside-section {
  position: relative;
  overflow: hidden;
  padding-block: 82px;
  background: #0d2e18;
  color: #fff;
}

.inside-section::before {
  opacity: 0.1;
  background-size: 39px 68px;
}

.inside-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 32px 58px;
  align-items: center;
}

.inside-copy .store-eyebrow {
  color: var(--gold-pale);
}

.inside-copy h2 {
  color: #fff;
}

.inside-copy h2 span {
  color: #70ee82;
}

.inside-copy > p:not(.store-eyebrow) {
  max-width: 580px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.65;
}

.inside-fact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.inside-fact-grid span {
  min-width: 112px;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.1);
}

.inside-fact-grid b {
  color: var(--gold-pale);
  font: 700 2rem/0.8 Teko, sans-serif;
}

.inside-fact-grid small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font: 700 0.52rem Oswald, sans-serif;
  letter-spacing: 0.08em;
}

.inside-product img {
  width: 100%;
  border: 6px solid #fff;
  border-radius: 16px;
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.35);
}

.store-categories {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  overflow: hidden;
  margin-top: 20px;
  border: 4px solid #fff;
  border-radius: 9px;
}

.store-categories span {
  min-height: 55px;
  display: grid;
  place-items: center;
  padding: 5px;
  border-right: 2px solid #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), var(--category);
  color: #fff;
  text-align: center;
  font: 700 0.61rem Oswald, sans-serif;
  letter-spacing: 0.04em;
}

.store-categories span:last-child {
  border-right: 0;
}

.how-section {
  padding-block: 94px;
}

.how-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: end;
  gap: 50px;
}

.how-heading .store-eyebrow {
  align-self: start;
}

.how-heading h2 {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.how-grid {
  margin: 42px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  list-style: none;
}

.how-grid li {
  min-height: 275px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(23, 57, 34, 0.08);
}

.how-grid li > b {
  color: var(--green-dark);
  font: 700 4.2rem/0.75 Teko, sans-serif;
}

.how-grid h3 {
  margin: 51px 0 10px;
  color: var(--green-dark);
  font: 700 2.2rem/0.85 Teko, sans-serif;
}

.how-grid p {
  margin: 0;
  color: #536159;
  font-size: 0.88rem;
  line-height: 1.62;
}

.game-night-section {
  min-height: 690px;
  position: relative;
  display: grid;
  overflow: hidden;
  color: #fff;
  background: #07120d;
}

.game-night-section > img,
.game-night-section__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.game-night-section > img {
  object-fit: cover;
  object-position: center;
}

.game-night-section__shade {
  background: linear-gradient(90deg, rgba(4, 17, 11, 0.97) 0%, rgba(4, 17, 11, 0.84) 30%, rgba(4, 17, 11, 0.26) 60%, rgba(4, 17, 11, 0.08) 100%);
}

.game-night-section__copy {
  min-height: 690px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.game-night-section .store-eyebrow {
  color: var(--gold-pale);
}

.game-night-section h2 {
  max-width: 650px;
  margin: 0;
  font: 700 clamp(5rem, 8vw, 7.7rem)/0.74 Teko, sans-serif;
  text-transform: uppercase;
  text-shadow: 0 6px 25px rgba(0, 0, 0, 0.34);
}

.game-night-section h2 span {
  color: #70ee82;
}

.game-night-section__copy > p:not(.store-eyebrow) {
  max-width: 520px;
  margin: 22px 0;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.68;
}

.game-night-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}

.game-night-tags span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font: 700 0.59rem Oswald, sans-serif;
  letter-spacing: 0.08em;
}

.game-night-section .store-buy-button {
  border-color: #fff;
  background: #fff;
  color: var(--green-dark);
}

.game-night-section .store-buy-button:hover {
  background: var(--gold-pale);
}

.reviews-section {
  padding-block: 92px;
}

.reviews-heading {
  max-width: 760px;
}

.reviews-heading > p:last-child {
  max-width: 620px;
  margin: 19px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 38px;
}

.review-card {
  min-height: 275px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(23, 57, 34, 0.08);
}

.review-card::before {
  content: "\201C";
  height: 42px;
  color: var(--green-dark);
  font: 700 4.6rem/0.8 Teko, sans-serif;
}

.review-card blockquote {
  margin: 16px 0 24px;
  color: #3f4e45;
  font-size: 0.92rem;
  line-height: 1.66;
}

.review-card figcaption {
  margin-top: auto;
  color: var(--green-dark);
  font: 700 0.68rem Oswald, sans-serif;
  letter-spacing: 0.08em;
}

.support-section {
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 7vw, 82px);
  align-items: center;
  margin-bottom: 94px;
  padding: clamp(30px, 6vw, 68px);
  border: 7px solid #fff;
  border-radius: 21px;
  background: #e8f5e8;
  box-shadow: 0 27px 62px rgba(23, 57, 34, 0.14);
}

.support-section__visual img {
  width: 100%;
  border: 5px solid #fff;
  border-radius: 15px;
  box-shadow: 0 25px 44px rgba(23, 57, 34, 0.2);
}

.support-section__copy > p:not(.store-eyebrow):not(.owner-honesty) {
  max-width: 640px;
  margin: 21px 0;
  color: #56635a;
  font-size: 0.88rem;
  line-height: 1.67;
}

.owner-roadmap {
  display: grid;
  gap: 8px;
}

.owner-roadmap span {
  min-height: 58px;
  display: grid;
  grid-template-columns: 175px 1fr;
  align-items: center;
  padding: 9px 13px;
  border-left: 4px solid var(--green);
  background: #fff;
}

.owner-roadmap b {
  color: var(--green-dark);
  font: 700 0.61rem Oswald, sans-serif;
  letter-spacing: 0.07em;
}

.owner-roadmap small {
  color: #536159;
  font-size: 0.78rem;
}

.owner-honesty {
  margin: 14px 0 0;
  color: #4f5d54;
  font-size: 0.72rem;
  line-height: 1.55;
}

.faq-section {
  padding-block: 88px;
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(36px, 7vw, 86px);
}

.faq-intro p:last-child {
  max-width: 460px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  color: var(--green-dark);
  font: 700 0.8rem Oswald, sans-serif;
  letter-spacing: 0.04em;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: none;
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
  color: #49584f;
  font-size: 0.87rem;
  line-height: 1.65;
}

.faq-list a {
  color: var(--green-dark);
  font-weight: 700;
}

.newsletter-section {
  padding-block: 72px;
  background: var(--navy);
  color: #fff;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.newsletter-copy .store-eyebrow {
  color: var(--gold-pale);
}

.newsletter-copy h2 {
  color: #fff;
}

.newsletter-copy h2 span {
  color: #70ee82;
}

.newsletter-copy p:last-child {
  max-width: 580px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.6;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.newsletter-form input[type="email"] {
  min-width: 0;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background: #071018;
  color: #fff;
}

.newsletter-form input::placeholder {
  color: #a9b5b0;
}

.newsletter-form button {
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 5px;
  background: var(--gold);
  color: #102017;
  font: 700 0.72rem Oswald, sans-serif;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.newsletter-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: #c7d1cd;
  font-size: 0.75rem;
}

.newsletter-status.is-success {
  color: #83f393;
}

.newsletter-status.is-error {
  color: #ffd4d4;
}

.final-store-cta {
  padding-block: 60px;
  background: var(--green-dark);
  color: #fff;
}

.final-store-cta__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 25px;
  align-items: center;
}

.final-store-cta__inner > img {
  width: 92px;
  height: 92px;
}

.final-store-cta .store-eyebrow {
  color: var(--gold-pale);
}

.final-store-cta h2 {
  margin: 0;
  font: 700 clamp(3.5rem, 6vw, 5rem)/0.78 Teko, sans-serif;
}

.final-store-cta p:not(.store-eyebrow) {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
}

.final-store-cta__actions {
  display: grid;
  gap: 8px;
}

.final-store-cta .store-buy-button {
  border-color: #fff;
  background: #fff;
  color: var(--green-dark);
}

.store-secondary-button--dark {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.store-secondary-button--dark:hover {
  background: #fff;
  color: var(--green-dark);
}

.store-footer {
  background: #07120d;
  color: #fff;
}

.store-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 40px;
  padding-block: 52px 34px;
}

.store-footer .brand-lockup b,
.store-footer .brand-lockup small {
  color: #fff;
}

.footer-brand p {
  max-width: 350px;
  margin: 18px 0 0;
  color: #b9c5bf;
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer-column h3 {
  margin: 4px 0 14px;
  color: var(--gold-pale);
  font: 700 0.68rem Oswald, sans-serif;
  letter-spacing: 0.12em;
}

.footer-column ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  color: #d5ded9;
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.store-footer__bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding-block: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9dadA5;
  font-size: 0.68rem;
  line-height: 1.5;
}

.store-footer__bottom p {
  margin: 0;
}

.store-footer__bottom p:last-child {
  max-width: 840px;
  justify-self: end;
}

.mobile-store-bar {
  display: none;
}

@media (max-width: 1050px) {
  .store-nav {
    display: none;
  }

  .store-hero__inner {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 30px;
  }

  .store-hero h1 {
    font-size: clamp(4.8rem, 9vw, 7rem);
  }

  .ways-heading {
    grid-template-columns: 1fr;
  }

  .ways-heading > p:last-child {
    margin-top: 20px;
  }

  .inside-section__inner {
    gap: 30px;
  }

  .support-section {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .store-footer__inner {
    grid-template-columns: 1.5fr repeat(3, 0.8fr);
    gap: 24px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 70px;
  }

  .wrap {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .store-announcement {
    justify-content: space-between;
    font-size: 0.54rem;
  }

  .store-header {
    min-height: 76px;
  }

  .brand-lockup img {
    width: 44px;
    height: 44px;
  }

  .brand-lockup b {
    font-size: 1.42rem;
  }

  .brand-lockup small {
    font-size: 0.53rem;
  }

  .play-free-link {
    display: none;
  }

  .store-buy-button--small {
    min-height: 44px;
    padding-inline: 10px;
    font-size: 0.55rem;
  }

  .store-hero__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 46px 55px;
  }

  .store-hero h1 {
    max-width: 100%;
    font-size: clamp(3.85rem, 15.5vw, 5.3rem);
    line-height: 0.77;
  }

  .store-hero__actions {
    display: grid;
  }

  .store-product-stage {
    width: min(100%, 460px);
  }

  .store-product-seal {
    width: 92px;
    right: 0;
  }

  .product-gallery__controls button {
    min-height: 86px;
    grid-template-columns: 1fr;
    grid-template-rows: 52px auto;
    gap: 4px;
  }

  .product-gallery__controls img {
    width: 100%;
    height: 52px;
  }

  .product-gallery__controls span {
    font-size: 0.55rem;
    text-align: center;
  }

  .ways-section,
  .reviews-section {
    padding-block: 65px;
  }

  .ways-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .way-card {
    min-height: 300px;
    padding: 27px 23px;
  }

  .way-card h3 {
    font-size: 3.3rem;
  }

  .inside-section {
    padding-block: 63px;
  }

  .inside-section__inner {
    grid-template-columns: 1fr;
  }

  .inside-product {
    grid-row: 1;
  }

  .store-categories {
    display: flex;
    overflow-x: auto;
    grid-column: 1;
    scroll-snap-type: x mandatory;
  }

  .store-categories span {
    min-width: 128px;
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .how-section {
    padding-block: 70px;
  }

  .how-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .how-heading h2 {
    grid-column: 1;
    grid-row: auto;
  }

  .how-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .how-grid li {
    min-width: 78%;
    scroll-snap-align: start;
  }

  .game-night-section,
  .game-night-section__copy {
    min-height: 620px;
  }

  .game-night-section > img {
    object-position: 64% center;
  }

  .game-night-section__shade {
    background: linear-gradient(90deg, rgba(4, 17, 11, 0.96), rgba(4, 17, 11, 0.7) 68%, rgba(4, 17, 11, 0.28));
  }

  .game-night-section h2 {
    max-width: 480px;
    font-size: clamp(4rem, 16vw, 5.8rem);
  }

  .game-night-section__copy > p:not(.store-eyebrow) {
    max-width: 88%;
    font-size: 0.87rem;
  }

  .review-card {
    min-height: 0;
  }

  .support-section {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 66px;
    padding: 24px 20px 30px;
    border-width: 5px;
  }

  .support-section__visual {
    max-width: 430px;
    margin-inline: auto;
  }

  .owner-roadmap span {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .faq-layout,
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-section {
    padding-block: 65px;
  }

  .newsletter-section {
    padding-block: 58px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

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

  .final-store-cta__inner {
    grid-template-columns: 68px 1fr;
  }

  .final-store-cta__inner > img {
    width: 68px;
    height: 68px;
  }

  .final-store-cta__actions {
    grid-column: 1 / -1;
  }

  .store-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .store-footer__bottom {
    grid-template-columns: 1fr;
  }

  .store-footer__bottom p:last-child {
    justify-self: start;
  }

  .mobile-store-bar {
    min-height: 70px;
    position: fixed;
    z-index: 90;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(7, 18, 13, 0.96);
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(14px);
  }

  .mobile-store-bar a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    color: #fff;
    font: 700 0.61rem Oswald, sans-serif;
    letter-spacing: 0.07em;
    text-align: center;
    text-decoration: none;
  }

  .mobile-store-bar a:last-child {
    border-radius: 5px;
    background: #fff;
    color: var(--green-dark);
  }
}

@media (max-width: 450px) {
  .store-announcement > span {
    display: none;
  }

  .store-announcement {
    justify-content: center;
  }

  .store-actions .store-buy-button span {
    display: none;
  }

  .store-product-seal {
    width: 78px;
    font-size: 0.55rem;
  }

  .real-product-chip {
    top: 5%;
    left: 2%;
  }

  .section-title,
  .ways-heading h2,
  .inside-copy h2,
  .how-heading h2,
  .support-section__copy h2,
  .newsletter-copy h2 {
    font-size: clamp(3.55rem, 16vw, 5rem);
  }

  .inside-fact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .inside-fact-grid span {
    min-width: 0;
    padding-inline: 7px;
  }

  .inside-fact-grid small {
    font-size: 0.43rem;
  }

  .how-grid li {
    min-width: 87%;
  }

  .game-night-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .game-night-tags span:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .final-store-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-store-cta__inner > img {
    margin-inline: auto;
  }

  .store-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-column {
    grid-column: 1;
  }
}

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

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

  .store-buy-button:hover {
    transform: none;
  }
}
