:root {
  color-scheme: light;
  --ink: #181817;
  --ink-2: #2b2d32;
  --muted: #68706b;
  --paper: #fff6e8;
  --paper-2: #f3ead9;
  --surface: #ffffff;
  --surface-2: #fffaf0;
  --line: rgba(24, 24, 23, 0.13);
  --line-strong: rgba(24, 24, 23, 0.2);
  --green: #81d837;
  --green-2: #177446;
  --green-3: #0e3b2c;
  --gold: #ffd23f;
  --red: #f24c3d;
  --blue: #2468e8;
  --coral: #ff5a3d;
  --lime: #9be33a;
  --yellow: #ffd23f;
  --night: #101113;
  --night-2: #181a1d;
  --shadow: 0 12px 26px rgba(24, 24, 23, 0.09);
  --shadow-strong: 0 22px 54px rgba(24, 24, 23, 0.18);
  --font-sans: "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Aptos Display", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fffaf0 0%, var(--paper) 44%, #f1f5e8 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

p,
h1,
h2,
h3,
dd,
li,
a,
summary {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: inherit;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.3rem);
}

h2 {
  font-size: clamp(1.82rem, 3.4vw, 2.75rem);
}

h3 {
  font-size: 1.02rem;
  line-height: 1.2;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 10px max(18px, calc((100vw - 1220px) / 2));
  border-bottom: 1px solid rgba(185, 255, 99, 0.18);
  background:
    linear-gradient(100deg, rgba(255, 90, 61, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(23, 24, 27, 0.96), rgba(13, 14, 16, 0.94));
  box-shadow: 0 12px 32px rgba(16, 17, 19, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 172px;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 98px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(155, 227, 58, 0.18), transparent 42%),
    linear-gradient(135deg, #1b1b1b 0%, #101113 100%);
  padding: 8px 12px;
  box-shadow: 0 12px 26px rgba(24, 24, 23, 0.18);
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.brand strong,
.brand small,
.brand-text strong,
.brand-text small {
  display: block;
}

.brand strong,
.brand-text strong {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
}

.brand small,
.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1;
}

.site-header .brand {
  color: #fff;
}

.site-header .brand strong,
.site-header .brand-text strong {
  color: #fff;
}

.site-header .brand small,
.site-header .brand-text small {
  color: rgba(255, 255, 255, 0.58);
}

.desktop-nav,
.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.desktop-nav,
.nav-links {
  justify-content: center;
}

.desktop-nav a,
.nav-links a {
  border-radius: 8px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-menu a,
.mobile-menu a {
  border-radius: 8px;
  padding: 8px 10px;
  color: #4f544f;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(155, 227, 58, 0.16);
  color: #ffffff;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"],
.mobile-menu a:hover {
  background: rgba(155, 227, 58, 0.22);
  color: #0f5134;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.age-badge {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 36px;
  border: 1px solid rgba(255, 210, 63, 0.78);
  border-radius: 8px;
  background: rgba(255, 210, 63, 0.1);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.access-link,
.play-link,
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 17px;
  font-weight: 760;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.access-link,
.play-link,
.button-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 44%),
    linear-gradient(135deg, var(--coral) 0%, #dd372f 100%);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(242, 76, 61, 0.28);
}

.button:hover,
.access-link:hover,
.play-link:hover {
  transform: translateY(-1px);
}

.access-link,
.play-link,
.button-game {
  isolation: isolate;
}

.access-link,
.play-link {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 46%),
    linear-gradient(135deg, #ff684e 0%, #e7332d 54%, #171717 118%);
  box-shadow:
    0 16px 34px rgba(242, 76, 61, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.access-link::before,
.play-link::before,
.button-game::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(155, 227, 58, 0.18), 0 0 18px rgba(155, 227, 58, 0.76);
}

.access-link::after,
.play-link::after,
.button-game::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -34%;
  z-index: 0;
  width: 34%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  animation: action-sheen 3.6s ease-in-out infinite;
  pointer-events: none;
}

.access-link:hover,
.play-link:hover,
.button-game:hover {
  box-shadow:
    0 20px 42px rgba(242, 76, 61, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

@keyframes action-sheen {
  0%,
  52% {
    transform: translateX(0) rotate(18deg);
    opacity: 0;
  }

  64% {
    opacity: 1;
  }

  100% {
    transform: translateX(440%) rotate(18deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .access-link::after,
  .play-link::after,
  .button-game::after {
    animation: none;
    opacity: 0;
  }

  .button,
  .access-link,
  .play-link {
    transition: none;
  }
}

.button-secondary,
.button-secondary-action,
.button-game {
  border-color: rgba(36, 104, 232, 0.22);
  background: #ffffff;
  color: var(--blue);
  box-shadow: 0 10px 22px rgba(24, 24, 23, 0.08);
}

.button-game {
  border-color: rgba(24, 24, 23, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 46%),
    linear-gradient(135deg, #202024 0%, #101113 100%);
  color: #ffffff;
  box-shadow:
    0 16px 34px rgba(24, 24, 23, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.button-ghost,
.button-plain {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.dark .button-secondary,
.dark .button-plain,
.subhero .button-secondary,
.subhero .button-plain {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-menu,
.mobile-menu {
  display: none;
  position: relative;
}

.nav-menu summary,
.mobile-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 13px;
  background: #fffaf0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1;
  list-style: none;
  box-shadow: 0 8px 18px rgba(24, 24, 23, 0.08);
}

.site-header .nav-menu summary,
.site-header .mobile-menu summary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.nav-menu summary::-webkit-details-marker,
.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu-panel,
.mobile-menu nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: min(372px, calc(100vw - 24px));
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 240, 0.96)),
    #fffaf0;
  box-shadow: var(--shadow-strong);
}

.menu-section {
  min-width: 0;
}

.menu-section-title {
  margin: 0 0 8px;
  color: rgba(24, 24, 23, 0.52);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

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

.nav-menu-panel .menu-grid a,
.mobile-menu nav .menu-grid a {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  height: 50px;
  min-height: 50px;
  border: 1px solid rgba(24, 24, 23, 0.08);
  border-radius: 12px;
  padding: 0 14px;
  background: rgba(246, 241, 223, 0.62);
  color: #3f4541;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
  white-space: normal;
  box-shadow: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-menu-panel .menu-grid a:hover,
.mobile-menu nav .menu-grid a:hover {
  border-color: rgba(21, 91, 53, 0.16);
  background: rgba(155, 227, 58, 0.12);
  color: #18472f;
}

.nav-menu-panel .menu-grid a[aria-current="page"],
.mobile-menu nav .menu-grid a[aria-current="page"] {
  border-color: rgba(23, 116, 70, 0.28);
  background: rgba(155, 227, 58, 0.18);
  color: #0f5134;
  box-shadow: 0 0 0 1px rgba(23, 116, 70, 0.08) inset;
}

.nav-menu-panel .menu-grid a:active,
.mobile-menu nav .menu-grid a:active,
.nav-menu-panel a.menu-link-game:active,
.mobile-menu nav a.menu-link-game:active {
  transform: translateY(1px);
}

.nav-menu-panel a.menu-link-game,
.mobile-menu nav a.menu-link-game {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  min-height: 52px;
  margin-top: 2px;
  border: 1px solid rgba(24, 24, 23, 0.9);
  border-radius: 12px;
  padding: 0 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    #111113;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(24, 24, 23, 0.18);
}

.nav-menu-panel a.menu-link-game:hover,
.mobile-menu nav a.menu-link-game:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 42%),
    #18191c;
  color: #fff;
}

.section,
.subhero {
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  padding-left: max(18px, calc((100vw - 1160px) / 2));
}

.section {
  padding-top: clamp(44px, 6vw, 74px);
  padding-bottom: clamp(44px, 6vw, 74px);
}

.section-inner,
.subhero-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.section-light {
  background:
    linear-gradient(135deg, rgba(255, 210, 63, 0.15), transparent 34%),
    #fffaf0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(36, 104, 232, 0.1), transparent 44%),
    #f1f5e8;
}

.dark {
  background:
    linear-gradient(135deg, rgba(36, 104, 232, 0.18), transparent 42%),
    linear-gradient(180deg, #202024 0%, #121214 100%);
  color: #fff;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dark .eyebrow,
.subhero .eyebrow {
  color: #b9ff63;
}

.section-heading {
  display: grid;
  gap: 11px;
  max-width: 850px;
  margin-bottom: 24px;
  min-width: 0;
}

.section-heading h3,
.split > div > h3,
.prose > h3 {
  font-size: clamp(1.82rem, 3.4vw, 2.75rem);
  line-height: 1.05;
}

.section-heading p,
.split p,
.prose p,
.feature-card p,
.fact-card p,
.policy-card p,
.contact-card p,
.faq-grid p,
.link-card p,
.store-copy small,
.note,
.contact-band p {
  color: var(--muted);
}

.dark p,
.dark li,
.dark .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
}

.grid-2,
.grid-3,
.grid-4,
.faq-grid,
.store-grid,
.media-grid {
  display: grid;
  gap: 14px;
  min-width: 0;
  max-width: 100%;
}

.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.faq-grid > *,
.store-grid > *,
.media-grid > * {
  min-width: 0;
}

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

.grid-3,
.store-grid,
.media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.feature-card,
.fact-card,
.contact-card,
.link-card,
.policy-card,
.media-card,
.store-button,
.facts-list li,
.policy-list li,
.faq-grid details,
.fact-table,
.visual-panel,
.video-panel,
.download-proof-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.96)),
    var(--surface);
  box-shadow:
    var(--shadow),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.feature-card,
.fact-card,
.contact-card,
.link-card,
.policy-card {
  position: relative;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.feature-card::before,
.fact-card::before,
.contact-card::before,
.link-card::before,
.policy-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--coral), var(--blue));
  opacity: 0.76;
}

.feature-card,
.fact-card,
.contact-card,
.link-card,
.policy-card {
  min-height: 154px;
  padding: 18px;
  max-width: 100%;
  min-width: 0;
}

.feature-card p,
.fact-card p,
.policy-card p,
.contact-card p,
.faq-grid p,
.link-card p {
  margin-top: 10px;
}

.contact-methods-card {
  display: grid;
  gap: 14px;
}

.contact-method-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.contact-method-list a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  column-gap: 14px;
  row-gap: 5px;
  border: 1px solid rgba(24, 24, 23, 0.1);
  border-radius: 8px;
  padding: 13px 14px;
  background:
    linear-gradient(135deg, rgba(155, 227, 58, 0.1), transparent 46%),
    rgba(255, 255, 255, 0.72);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(24, 24, 23, 0.06);
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.contact-method-icon,
.contact-method-copy {
  min-width: 0;
}

.contact-method-icon {
  display: block;
  width: 54px;
  height: 54px;
}

.contact-method-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(24, 24, 23, 0.12));
}

.contact-method-copy {
  display: grid;
  gap: 5px;
}

.contact-method-list a:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(36, 104, 232, 0.1), transparent 48%),
    rgba(255, 255, 255, 0.72);
}

.contact-method-list a:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(255, 90, 61, 0.1), transparent 48%),
    rgba(255, 255, 255, 0.72);
}

.contact-method-copy > span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-method-list strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.contact-method-list a:hover {
  border-color: rgba(36, 104, 232, 0.26);
  transform: translateY(-1px);
}

.fact-table a {
  color: var(--blue);
  font-weight: 760;
  text-decoration: none;
}

.fact-table a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 52%),
    linear-gradient(135deg, #202024 0%, #101113 100%);
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 760;
  box-shadow: 0 10px 18px rgba(24, 24, 23, 0.12);
}

.feature-icon-image {
  display: block;
  width: 72px;
  height: 72px;
  min-width: 72px;
  margin-bottom: 18px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: transparent;
  box-shadow: none;
}

.feature-icon-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 14px rgba(24, 24, 23, 0.14));
}

.shape-text {
  font-size: 1.2rem;
  line-height: 1;
}

.link-card,
.store-button {
  color: var(--ink);
  text-decoration: none;
}

.link-card:hover,
.store-button:hover,
.policy-card:hover {
  border-color: rgba(255, 90, 61, 0.38);
}

.feature-card:hover,
.fact-card:hover,
.contact-card:hover,
.link-card:hover,
.policy-card:hover {
  box-shadow:
    0 16px 34px rgba(24, 24, 23, 0.11),
    0 1px 0 rgba(255, 255, 255, 0.82) inset;
  transform: translateY(-1px);
}

.media-card {
  overflow: hidden;
}

.media-card img,
.visual-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #eef2ea;
}

.media-card-body {
  padding: 16px;
}

.media-card-body p {
  margin-top: 8px;
}

.visual-panel,
.video-panel {
  overflow: hidden;
  margin: 0;
}

.video-panel video,
.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}

.video-panel figcaption,
.video-frame figcaption {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.72);
  background: #181817;
  font-size: 0.84rem;
  font-weight: 700;
}

.download-stack {
  display: grid;
  gap: 14px;
}

.download-proof-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: clamp(18px, 4vw, 26px);
  background:
    linear-gradient(135deg, rgba(217, 164, 65, 0.14), transparent 42%),
    linear-gradient(135deg, #101914 0%, #113425 100%);
  color: #fff;
}

.download-proof-card span {
  color: #93e2b6;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.download-proof-card strong {
  max-width: 460px;
  font-size: clamp(1.32rem, 3vw, 2rem);
  line-height: 1.08;
}

.download-proof-card p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.78);
}

.download-steps {
  display: grid;
  gap: 9px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.download-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.download-steps li span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #93e2b6;
  color: #07100c;
  font-size: 0.82rem;
  font-weight: 800;
}

.download-steps li strong {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.1;
}

.download-steps li em {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
}

.download-stack .store-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.store-button {
  display: grid;
  gap: 10px;
  align-content: start;
  align-items: center;
  min-height: 142px;
  padding: 14px 12px;
}

.store-badge-img {
  display: block;
  width: 100%;
  max-width: 214px;
  height: 58px;
  justify-self: center;
  object-fit: contain;
}

.store-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.store-copy small {
  overflow-wrap: anywhere;
}

.facts-list,
.policy-list,
.footer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.facts-list li,
.policy-list li {
  padding: 15px 16px;
}

.dark .facts-list li,
.dark .policy-list li {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.fact-table {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.fact-table div {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 14px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.fact-table div:last-child {
  border-bottom: 0;
}

.permit-card {
  display: grid;
  gap: 14px;
}

.issuer-strip {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(21, 91, 53, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 248, 241, 0.88));
  min-width: 0;
}

.issuer-strip strong,
.issuer-strip small {
  display: block;
  min-width: 0;
  overflow-wrap: break-word;
}

.issuer-strip strong {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.2;
}

.issuer-strip small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.issuer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 1px solid rgba(20, 25, 23, 0.12);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(20, 25, 23, 0.08);
}

.issuer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.issuer-logo-text {
  color: #0f6d3c;
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.04em;
}

.permit-card h3 {
  font-size: clamp(1.24rem, 2.5vw, 1.72rem);
}

.section-heading h2,
.section-heading h3,
.section-heading p,
.policy-card h2,
.policy-card h3.policy-card-title,
.policy-card h3,
.policy-card p,
.fact-table dd {
  overflow-wrap: anywhere;
}

.policy-card h3.policy-card-title {
  font-size: clamp(1.82rem, 3.4vw, 2.75rem);
  line-height: 1.05;
}

.quick-panel {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(20, 25, 23, 0.1);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(20, 25, 23, 0.08);
}

.quick-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 620;
  line-height: 1.55;
}

.mini-fact-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.mini-fact-list div {
  display: grid;
  grid-template-columns: minmax(118px, 0.34fr) minmax(0, 1fr);
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.mini-fact-list div:last-child {
  border-bottom: 0;
}

.mini-fact-list dd {
  overflow-wrap: anywhere;
}

dt {
  align-self: start;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

dt,
dd {
  min-width: 0;
  margin: 0;
}

dd {
  font-weight: 760;
}

.subhero {
  position: relative;
  min-height: clamp(350px, 42vw, 500px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(14, 15, 17, 0.96) 0%, rgba(14, 15, 17, 0.78) 50%, rgba(14, 15, 17, 0.22) 100%),
    linear-gradient(135deg, rgba(255, 90, 61, 0.22), transparent 42%),
    url("/assets/images/wajegame-whot-table-v3-900.jpg") 64% center / cover;
}

.subhero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--lime), var(--coral), var(--blue), var(--yellow));
}

.subhero-inner {
  position: relative;
  z-index: 1;
}

.subhero h1 {
  max-width: 980px;
  color: #fff;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.38);
}

.subhero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.06rem;
  font-weight: 620;
  line-height: 1.55;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.prose {
  max-width: 900px;
}

.prose p + p,
.prose .policy-list,
.prose .button-row,
.button-row {
  margin-top: 18px;
}

.button-row,
.hero-actions,
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-grid details {
  padding: 17px 19px;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 820;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(32px, 5vw, 54px) max(18px, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--line);
  background: #fffaf0;
}

.contact-band > div {
  max-width: 760px;
}

.contact-band p {
  margin-top: 8px;
}

.site-footer {
  padding: clamp(36px, 5vw, 54px) max(18px, calc((100vw - 1180px) / 2)) 26px;
  background:
    linear-gradient(120deg, rgba(255, 90, 61, 0.16), transparent 34%),
    linear-gradient(250deg, rgba(155, 227, 58, 0.1), transparent 38%),
    linear-gradient(180deg, #151516 0%, #0f1012 100%);
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.22fr) minmax(112px, 0.55fr) minmax(145px, 0.68fr) minmax(156px, 0.7fr) minmax(264px, 0.98fr);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand-block,
.footer-group {
  min-width: 0;
}

.footer-brand-block {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-brand-block .brand {
  min-width: 0;
  align-items: flex-start;
}

.footer-brand-block p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
  font-weight: 720;
  line-height: 1.55;
}

.footer-copy-mobile,
.footer-mobile-accordions,
.footer-game-cta {
  display: none;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  overflow-wrap: normal;
  word-break: normal;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.94rem;
  line-height: 1.15;
}

.site-footer .brand-logo {
  background: transparent;
  border-color: transparent;
  padding: 0;
  box-shadow: none;
}

.site-footer .brand strong,
.site-footer .brand-text strong {
  color: #fff;
}

.site-footer .brand small,
.site-footer .brand-text small {
  color: rgba(255, 255, 255, 0.58);
}

.footer-list {
  gap: 9px;
}

.footer-list a {
  transition: color 160ms ease;
}

.footer-list a:hover {
  color: #fff;
}

.footer-trust {
  min-width: 0;
}

.footer-trust-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-trust-heading h3 {
  margin-bottom: 0;
}

.footer-trust-heading a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(185, 255, 99, 0.3);
  border-radius: 8px;
  color: #b9ff63;
  font-size: 0.72rem;
  font-weight: 820;
  line-height: 1;
}

.footer-trust-primary {
  display: grid;
  gap: 9px;
}

.footer-trust-chip,
.footer-trust-details summary,
.footer-trust-details .footer-list li {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.footer-trust-chip {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 11px 12px;
}

.footer-trust-chip:hover {
  border-color: rgba(185, 255, 99, 0.32);
  background: rgba(255, 255, 255, 0.07);
}

.footer-trust-heading a:focus-visible,
.footer-trust-chip:focus-visible,
.footer-trust-details summary:focus-visible {
  outline: 2px solid rgba(185, 255, 99, 0.72);
  outline-offset: 3px;
}

.footer-trust-chip > span,
.footer-trust-details .footer-list li > span:first-child {
  color: #b9ff63;
  font-size: 0.66rem;
  font-weight: 880;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-trust-chip strong,
.footer-trust-details .footer-list li > a,
.footer-trust-details .footer-list li > span:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 780;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.footer-trust-details {
  margin-top: 9px;
}

.footer-trust-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 780;
  line-height: 1.2;
  list-style: none;
}

.footer-trust-details summary::-webkit-details-marker {
  display: none;
}

.footer-trust-details summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(185, 255, 99, 0.13);
  color: #b9ff63;
  font-size: 1rem;
  line-height: 1;
}

.footer-trust-details[open] summary::after {
  content: "-";
}

.footer-trust-details .footer-list {
  gap: 8px;
  margin-top: 9px;
}

.footer-trust-details .footer-list li {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
}

.footer-trust a[href^="mailto"],
.footer-trust a[href^="tel"],
.footer-trust a[href*="t.me"] {
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.tiny {
  font-size: 0.9rem;
}

@media (max-width: 1060px) {
  .desktop-nav,
  .nav-links {
    display: none;
  }

  .nav-menu,
  .mobile-menu {
    display: block;
  }

  .header-actions .age-badge,
  .header-actions .play-link,
  .header-actions .access-link {
    display: none;
  }

  .nav-menu + .header-actions {
    display: none;
  }

  .split,
  .media-grid,
  .grid-4,
  .grid-3,
  .store-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-brand-block p {
    max-width: 620px;
  }

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

  .footer-trust-details .footer-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 60px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-logo {
    width: 84px;
    height: 34px;
    padding: 7px 9px;
  }

  .brand strong,
  .brand-text strong {
    font-size: 0.88rem;
  }

  .brand small,
  .brand-text small {
    margin-top: 3px;
    font-size: 0.66rem;
  }

  .nav-menu summary,
  .mobile-menu summary {
    min-height: 44px;
    padding: 7px 11px;
    font-size: 0.84rem;
    line-height: 1;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.85rem);
  }

  h2 {
    font-size: clamp(1.58rem, 7vw, 1.95rem);
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    min-height: 54px;
    padding: 6px 10px;
  }

  .brand {
    min-width: 0;
    gap: 7px;
  }

  .brand-logo {
    width: 70px;
    height: 30px;
    padding: 6px 7px;
  }

  .brand strong,
  .brand-text strong {
    font-size: 0.8rem;
  }

  .brand small,
  .brand-text small {
    display: none;
  }

  .play-link,
  .access-link,
  .header-actions .age-badge {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .mobile-menu summary,
  .nav-menu summary {
    min-height: 44px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.78rem;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .subhero {
    min-height: 360px;
    padding-top: 58px;
    padding-bottom: 58px;
    background:
      linear-gradient(180deg, rgba(12, 14, 16, 0.92) 0%, rgba(12, 14, 16, 0.84) 58%, rgba(12, 14, 16, 0.78) 100%),
      linear-gradient(135deg, rgba(255, 90, 61, 0.14), transparent 50%),
      url("/assets/images/wajegame-whot-table-v3-900.jpg") 68% center / cover;
  }

  .subhero h1 {
    color: #fff;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.46);
  }

  .subhero p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
  }

  .subhero .eyebrow {
    color: #9be33a;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  }

  .grid-2,
  .faq-grid,
  .fact-table div,
  .mini-fact-list div {
    grid-template-columns: 1fr;
  }

  .issuer-strip {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .issuer-logo {
    width: 42px;
    height: 42px;
  }

  .issuer-strip strong {
    font-size: 0.84rem;
  }

  .feature-card,
  .fact-card,
  .contact-card,
  .link-card,
  .policy-card {
    min-height: 0;
  }

  .feature-icon-image {
    width: 62px;
    height: 62px;
    min-width: 62px;
    margin-bottom: 14px;
  }

  .contact-method-list a {
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 12px;
  }

  .contact-method-icon {
    width: 48px;
    height: 48px;
  }

  .button-row .button,
  .contact-band .button {
    width: 100%;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding: 24px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .footer-brand-block {
    order: 1;
    gap: 10px;
  }

  .footer-brand-block .brand {
    align-items: center;
  }

  .footer-copy-desktop {
    display: none;
  }

  .footer-copy-mobile {
    display: block;
    max-width: none;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.84rem;
    font-weight: 680;
    line-height: 1.36;
  }

  .footer-group[aria-label="Explore"] {
    display: none;
  }

  .footer-group[aria-label="Support"] {
    display: none;
  }

  .footer-trust {
    order: 2;
    display: grid;
    gap: 8px;
  }

  .footer-trust-heading {
    display: none;
  }

  .footer-trust-heading a {
    display: none;
  }

  .footer-trust-primary {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-trust-chip {
    grid-template-columns: minmax(88px, 0.36fr) minmax(0, 1fr);
    align-items: center;
    min-height: 44px;
    gap: 10px;
    padding: 0 12px;
  }

  .footer-trust-chip > span {
    font-size: 0.64rem;
    letter-spacing: 0.045em;
  }

  .footer-trust-chip strong {
    font-size: 0.82rem;
    line-height: 1.15;
  }

  .footer-trust-details {
    margin-top: 0;
  }

  .footer-trust-details summary {
    min-height: 44px;
    padding: 0 12px;
    font-size: 1rem;
    font-weight: 700;
  }

  .footer-trust-details .footer-list {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 8px;
  }

  .footer-trust-details .footer-list li {
    padding: 8px 10px;
  }

  .footer-mobile-accordions {
    order: 3;
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-mobile-accordion + .footer-mobile-accordion {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-mobile-accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 46px;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    list-style: none;
  }

  .footer-mobile-accordion summary::-webkit-details-marker {
    display: none;
  }

  .footer-mobile-accordion summary::after {
    content: "+";
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(185, 255, 99, 0.13);
    color: #b9ff63;
    font-size: 1.05rem;
    line-height: 1;
  }

  .footer-mobile-accordion[open] summary::after {
    content: "-";
  }

  .footer-mobile-accordion .footer-list {
    gap: 0;
    padding-bottom: 8px;
  }

  .footer-mobile-accordion .footer-list a {
    display: flex;
    align-items: center;
    min-height: 36px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    font-weight: 700;
  }

  .footer-mobile-accordion .footer-list a:hover {
    color: #fff;
  }

  .footer-group[aria-label="Legal"] {
    display: none;
    order: 5;
    padding-top: 0;
  }

  .footer-group[aria-label="Legal"] h3 {
    display: none;
  }

  .footer-group[aria-label="Legal"] .footer-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .footer-group[aria-label="Legal"] .footer-list a {
    font-size: 0.8rem;
    font-weight: 700;
  }

  .site-footer .footer-game-cta {
    order: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    margin-top: 20px;
    border-radius: 12px;
    background: #b9ff63;
    color: #111113;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(185, 255, 99, 0.15);
  }

  .footer-bottom {
    width: 100%;
    margin-top: 12px;
    padding-top: 12px;
    font-size: 0.73rem;
    line-height: 1.36;
  }
}

@media (max-width: 359px) {
  .download-stack .store-grid {
    grid-template-columns: 1fr;
  }

  .store-button {
    min-height: 126px;
  }

  .store-badge-img {
    max-width: 190px;
    height: 52px;
  }

  .nav-menu-panel,
  .mobile-menu nav {
    gap: 12px;
    width: min(326px, calc(100vw - 20px));
    padding: 14px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .nav-menu-panel .menu-grid a,
  .mobile-menu nav .menu-grid a {
    height: 46px;
    min-height: 46px;
    font-size: 0.94rem;
  }
}
