:root {
  --ink: #08090b;
  --ink-soft: #101216;
  --panel: rgba(23, 24, 29, 0.84);
  --panel-strong: #18191e;
  --gold: #f4c768;
  --gold-bright: #ffe7a3;
  --gold-deep: #b97a22;
  --red: #e43f35;
  --cyan: #53d8f0;
  --text: #f7f5ef;
  --muted: #aaa9a5;
  --line: rgba(244, 199, 104, 0.17);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(228, 63, 53, 0.11), transparent 28rem),
    radial-gradient(circle at 90% 12%, rgba(244, 199, 104, 0.09), transparent 32rem),
    var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

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

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #17120a;
  border-radius: 10px;
  background: var(--gold-bright);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(8, 9, 11, 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 9, 11, 0.93);
}

.nav-wrap {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(244, 199, 104, 0.3);
  border-radius: 13px;
  box-shadow: 0 0 24px rgba(244, 199, 104, 0.12);
}

.brand span {
  font-size: 20px;
  background: linear-gradient(135deg, #fff 5%, var(--gold-bright) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-nav a {
  position: relative;
  padding: 10px 13px;
  color: #c5c3bd;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.site-nav .nav-download {
  margin-left: 8px;
  padding-inline: 18px;
  color: #17120a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 10px 28px rgba(244, 199, 104, 0.13);
}

.site-nav .nav-download:hover,
.site-nav .nav-download.active {
  color: #08090b;
  background: linear-gradient(135deg, #fff0bb, #ffc64f);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  content: "";
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 7%;
  right: -8%;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(244, 199, 104, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(244, 199, 104, 0.025),
    0 0 0 160px rgba(228, 63, 53, 0.02),
    inset 0 0 90px rgba(244, 199, 104, 0.05);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero h1,
.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(44px, 6.6vw, 82px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero h1 .gold,
.page-hero h1 .gold {
  background: linear-gradient(180deg, #fff7dc 5%, #f8cc70 48%, #b97418 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 28px rgba(244, 199, 104, 0.12));
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: #c7c5bf;
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #15110a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 18px 40px rgba(244, 199, 104, 0.16);
}

.btn-primary:hover {
  box-shadow: 0 22px 50px rgba(244, 199, 104, 0.25);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.btn-secondary:hover {
  border-color: rgba(244, 199, 104, 0.4);
  background: rgba(244, 199, 104, 0.06);
}

.btn-icon {
  font-size: 19px;
  line-height: 1;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.hero-note li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-note li::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(244, 199, 104, 0.6);
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.phone {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;
  width: 284px;
  height: 510px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 44px;
  background: linear-gradient(145deg, #303237, #0a0b0e 50%, #24252a);
  box-shadow:
    0 48px 90px rgba(0, 0, 0, 0.6),
    0 0 0 9px rgba(244, 199, 104, 0.035),
    inset 0 0 0 1px rgba(244, 199, 104, 0.16);
  transform: translateX(-50%) rotate(4deg);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 35px;
  background:
    radial-gradient(circle at 82% 12%, rgba(228, 63, 53, 0.45), transparent 24%),
    radial-gradient(circle at 10% 55%, rgba(83, 216, 240, 0.13), transparent 32%),
    linear-gradient(180deg, #18100d, #090a0c 45%);
}

.phone-screen::before {
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 50%;
  width: 76px;
  height: 20px;
  content: "";
  border-radius: 20px;
  background: #050506;
  transform: translateX(-50%);
}

.screen-brand {
  display: flex;
  padding: 42px 18px 15px;
  align-items: center;
  gap: 10px;
  color: var(--gold-bright);
  font-weight: 900;
}

.screen-brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.screen-banner {
  margin: 0 16px 16px;
  padding: 20px;
  border: 1px solid rgba(244, 199, 104, 0.25);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 205, 100, 0.36), transparent 30%),
    linear-gradient(135deg, #7d1e18, #21100d 65%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
}

.screen-banner strong {
  display: block;
  color: #fff1c3;
  font-size: 22px;
  line-height: 1.25;
}

.screen-banner span {
  color: #e5c792;
  font-size: 12px;
}

.screen-tabs {
  display: flex;
  margin: 0 16px 12px;
  justify-content: space-between;
  color: #87847e;
  font-size: 11px;
  font-weight: 800;
}

.screen-tabs b {
  color: var(--gold);
}

.screen-games {
  display: grid;
  padding: 0 16px;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mini-game {
  min-height: 98px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 15px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
}

.mini-game:nth-child(2) {
  background: linear-gradient(150deg, rgba(83, 216, 240, 0.15), rgba(255, 255, 255, 0.025));
}

.mini-game:nth-child(3) {
  background: linear-gradient(150deg, rgba(228, 63, 53, 0.18), rgba(255, 255, 255, 0.025));
}

.mini-game i {
  display: block;
  font-size: 27px;
  font-style: normal;
}

.mini-game span {
  display: block;
  margin-top: 5px;
  color: #e6e0d5;
  font-size: 11px;
  font-weight: 800;
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 175px;
  min-height: 96px;
  padding: 14px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(244, 199, 104, 0.19);
  border-radius: 18px;
  background: rgba(18, 19, 23, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.float-card:nth-of-type(2) {
  top: 92px;
  left: -22px;
  transform: rotate(-5deg);
}

.float-card:nth-of-type(3) {
  right: -15px;
  bottom: 66px;
  transform: rotate(5deg);
}

.float-card i {
  display: grid;
  width: 54px;
  height: 54px;
  flex: none;
  place-items: center;
  border-radius: 15px;
  background: rgba(244, 199, 104, 0.09);
  font-size: 28px;
  font-style: normal;
}

.float-card strong {
  display: block;
  font-size: 14px;
}

.float-card small {
  color: var(--muted);
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-alt {
  position: relative;
  border-block: 1px solid rgba(255, 255, 255, 0.035);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006));
}

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

.section-heading > div {
  max-width: 710px;
}

.section-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(31px, 4.4vw, 52px);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.section-heading p {
  margin: 13px 0 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--gold-bright);
}

.quick-stats {
  display: grid;
  padding: 24px 0;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.stat {
  padding: 10px 28px;
  border-right: 1px solid var(--line);
}

.stat:first-child {
  padding-left: 0;
}

.stat:last-child {
  border: 0;
}

.stat strong {
  display: block;
  color: var(--gold-bright);
  font-size: 25px;
  line-height: 1.25;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

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

.game-card {
  position: relative;
  min-height: 268px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 90% 0%, var(--card-glow, rgba(244, 199, 104, 0.18)), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.game-card::after {
  position: absolute;
  right: -42px;
  bottom: -60px;
  width: 170px;
  height: 170px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(255, 255, 255, 0.014);
}

.game-card:hover {
  z-index: 2;
  border-color: rgba(244, 199, 104, 0.24);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  transform: translateY(-7px);
}

.game-symbol {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 35px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 19px;
  background: rgba(0, 0, 0, 0.24);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
  font-size: 34px;
}

.game-card h3 {
  margin: 0;
  font-size: 22px;
}

.game-card p {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.game-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 5px 10px;
  color: var(--gold);
  border: 1px solid rgba(244, 199, 104, 0.19);
  border-radius: 999px;
  background: rgba(244, 199, 104, 0.055);
  font-size: 11px;
  font-weight: 900;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: var(--radius-md);
  background: var(--panel);
}

.feature-card.large {
  grid-column: span 7;
}

.feature-card.medium {
  grid-column: span 5;
}

.feature-card.third {
  grid-column: span 4;
  min-height: 230px;
}

.feature-card h3 {
  margin: 16px 0 8px;
  font-size: 24px;
}

.feature-card p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

.feature-number {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.feature-orbit {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(244, 199, 104, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(244, 199, 104, 0.02), inset 0 0 70px rgba(244, 199, 104, 0.04);
}

.feature-card.medium .feature-orbit {
  border-color: rgba(83, 216, 240, 0.13);
  box-shadow: 0 0 0 45px rgba(83, 216, 240, 0.018), inset 0 0 70px rgba(83, 216, 240, 0.04);
}

.feature-pills {
  display: flex;
  margin-top: 26px;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-pills span {
  padding: 8px 12px;
  color: #d7d2c8;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
}

.download-strip {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 50px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  border: 1px solid rgba(244, 199, 104, 0.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 20%, rgba(244, 199, 104, 0.24), transparent 27%),
    radial-gradient(circle at 16% 100%, rgba(228, 63, 53, 0.18), transparent 40%),
    linear-gradient(135deg, #1d1712, #101114 60%);
  box-shadow: var(--shadow);
}

.download-strip::after {
  position: absolute;
  top: -80px;
  right: 12%;
  width: 220px;
  height: 220px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(255, 255, 255, 0.015), 0 0 0 72px rgba(255, 255, 255, 0.009);
}

.download-strip h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
}

.download-strip p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: #c8c3b8;
}

.download-strip .btn {
  position: relative;
  z-index: 2;
  min-width: 176px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
  background:
    radial-gradient(circle at 76% 20%, rgba(244, 199, 104, 0.12), transparent 28rem),
    radial-gradient(circle at 20% 0%, rgba(228, 63, 53, 0.09), transparent 25rem);
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  top: -260px;
  right: 5%;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(244, 199, 104, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(244, 199, 104, 0.018), 0 0 0 140px rgba(244, 199, 104, 0.009);
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 6vw, 72px);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #bebbb4;
  font-size: 18px;
}

.page-hero .hero-actions {
  margin-top: 28px;
}

.filter-bar {
  display: flex;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-btn {
  padding: 9px 15px;
  color: #c4c1ba;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  color: #1a1308;
  border-color: var(--gold);
  background: var(--gold);
}

.game-card.is-hidden {
  display: none;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 34px;
}

.prose-card,
.side-card,
.info-card {
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.prose-card {
  padding: 38px;
}

.prose-card h2 {
  margin: 0 0 18px;
  font-size: 30px;
}

.prose-card h3 {
  margin: 32px 0 8px;
  font-size: 21px;
}

.prose-card p {
  margin: 0 0 16px;
  color: #bbb8b1;
}

.side-stack {
  display: grid;
  gap: 16px;
}

.side-card {
  padding: 24px;
}

.side-card h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.side-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.mini-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  color: #d3cfc6;
  font-size: 14px;
  list-style: none;
}

.mini-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.mini-list li:last-child {
  padding: 0;
  border: 0;
}

.mini-list span:last-child {
  color: var(--gold-bright);
  text-align: right;
}

.steps {
  display: grid;
  counter-reset: install-steps;
  gap: 16px;
}

.step {
  position: relative;
  display: grid;
  padding: 28px;
  counter-increment: install-steps;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.step::before {
  display: grid;
  width: 58px;
  height: 58px;
  content: counter(install-steps, decimal-leading-zero);
  place-items: center;
  color: #1a1308;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  font-size: 16px;
  font-weight: 950;
}

.step h2,
.step h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.path-box {
  display: flex;
  margin-top: 15px;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.path-box span {
  padding: 6px 10px;
  color: #ddd8ce;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
}

.path-box i {
  color: var(--gold);
  font-style: normal;
}

.faq-list {
  display: grid;
  max-width: 900px;
  margin-inline: auto;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.026);
}

.faq-item[open] {
  border-color: rgba(244, 199, 104, 0.24);
  background: rgba(244, 199, 104, 0.035);
}

.faq-item summary {
  position: relative;
  padding: 22px 60px 22px 24px;
  font-size: 16px;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 26px;
  height: 26px;
  content: "+";
  color: var(--gold);
  border: 1px solid rgba(244, 199, 104, 0.22);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 60px 24px 24px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 55px;
}

.download-panel {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(244, 199, 104, 0.2);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 199, 104, 0.16), transparent 30%),
    linear-gradient(145deg, #1b1815, #101114);
  box-shadow: var(--shadow);
}

.download-product {
  display: flex;
  align-items: center;
  gap: 18px;
}

.download-product img {
  width: 84px;
  height: 84px;
  border: 1px solid rgba(244, 199, 104, 0.2);
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.32);
}

.download-product h1,
.download-product h2 {
  margin: 0;
  font-size: 29px;
}

.download-product p {
  margin: 3px 0 0;
  color: var(--muted);
}

.download-panel > p {
  margin: 28px 0;
  color: #c3bfb7;
}

.download-panel .btn {
  width: 100%;
}

.package-grid {
  display: grid;
  margin: 26px 0 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.package-item {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.package-item span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.package-item strong {
  display: block;
  margin-top: 2px;
  color: #ece8dd;
  font-size: 14px;
}

.qr-card {
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.qr-card img {
  width: 100%;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
}

.qr-card strong {
  display: block;
  margin-top: 17px;
  font-size: 17px;
}

.qr-card span {
  color: var(--muted);
  font-size: 13px;
}

.hash-block {
  display: flex;
  margin-top: 18px;
  padding: 15px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.2);
}

.hash-block code {
  overflow: hidden;
  color: #a9a6a0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-btn {
  flex: none;
  padding: 6px 10px;
  color: var(--gold);
  border: 1px solid rgba(244, 199, 104, 0.18);
  border-radius: 8px;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  padding: 40px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-nav a {
  color: var(--muted);
  font-size: 13px;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  margin-top: 26px;
  padding-top: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #676762;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    padding: 12px;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(13, 14, 17, 0.98);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .site-nav .nav-download {
    margin: 5px 0 0;
    text-align: center;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 590px);
    margin: 0 auto;
  }

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

  .feature-card.large,
  .feature-card.medium {
    grid-column: span 6;
  }

  .feature-card.third {
    grid-column: span 6;
  }

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

  .side-stack {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    font-size: 18px;
  }

  .site-nav {
    right: 14px;
    left: 14px;
  }

  .hero {
    padding: 58px 0 45px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(40px, 13vw, 62px);
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 455px;
    transform: scale(0.92);
    transform-origin: top center;
  }

  .phone {
    width: 260px;
    height: 470px;
  }

  .float-card {
    width: 154px;
    min-height: 80px;
    padding: 11px;
  }

  .float-card:nth-of-type(2) {
    top: 70px;
    left: -8px;
  }

  .float-card:nth-of-type(3) {
    right: -8px;
    bottom: 48px;
  }

  .float-card i {
    width: 44px;
    height: 44px;
    font-size: 23px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 27px;
    align-items: start;
    flex-direction: column;
  }

  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .stat:first-child {
    padding-left: 18px;
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-bottom: 0;
  }

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

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

  .feature-card.large,
  .feature-card.medium,
  .feature-card.third {
    min-height: 230px;
    grid-column: 1 / -1;
  }

  .download-strip {
    padding: 34px 24px;
    grid-template-columns: 1fr;
  }

  .download-strip .btn {
    width: 100%;
  }

  .page-hero {
    padding: 58px 0 44px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .side-stack {
    grid-template-columns: 1fr;
  }

  .prose-card {
    padding: 26px 22px;
  }

  .step {
    padding: 22px;
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .step::before {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 13px;
  }

  .download-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .download-panel {
    padding: 28px 22px;
  }

  .download-product img {
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }

  .download-product h1,
  .download-product h2 {
    font-size: 24px;
  }

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

  .qr-card {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .hero-visual {
    width: 110%;
    margin-left: -5%;
    transform: scale(0.82);
  }

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

  .filter-bar {
    flex-wrap: nowrap;
    margin-right: -14px;
    overflow-x: auto;
    padding-right: 14px;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
