:root {
  --ink: #171a2c;
  --muted: #697083;
  --paper: #f6f7fb;
  --white: #ffffff;
  --line: #e4e7ef;
  --aqua: #6ce5e8;
  --aqua-deep: #16b5ba;
  --coral: #ff7a66;
  --coral-light: #fff0ec;
  --yellow: #ffd76a;
  --navy-soft: #24283f;
  --green: #43b581;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(23, 26, 44, 0.09);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--aqua-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 23px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section-title {
  max-width: 720px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-copy {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(228, 231, 239, 0.76);
  background: rgba(246, 247, 251, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}

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

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

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
}

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

.nav-links a {
  padding: 11px 14px;
  border-radius: 11px;
  color: #50566b;
  font-size: 14px;
  font-weight: 600;
  transition: 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: var(--white);
}

.nav-links .admin-link {
  margin-left: 8px;
  color: var(--white);
  background: var(--ink);
}

.nav-links .admin-link:hover {
  color: var(--white);
  background: var(--navy-soft);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: currentColor;
  transition: 160ms ease;
}

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

.hero::before {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 560px;
  height: 560px;
  border: 110px solid rgba(108, 229, 232, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 70px;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.01;
  letter-spacing: -0.06em;
}

.hero h1 .accent {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.hero h1 .accent::after {
  position: absolute;
  z-index: -1;
  right: -8px;
  bottom: 7px;
  left: -4px;
  height: 21px;
  border-radius: 99px;
  content: "";
  background: var(--aqua);
  transform: rotate(-1.5deg);
}

.hero-copy {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  transition: 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 24px rgba(23, 26, 44, 0.14);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
}

.button-coral {
  color: var(--white);
  background: var(--coral);
}

.arrow-mark {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.button:hover .arrow-mark,
.text-link:hover .arrow-mark {
  transform: translateX(3px);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: #73798c;
  font-size: 13px;
}

.hero-note .pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(67, 181, 129, 0.12);
}

.game-visual {
  position: relative;
  min-height: 510px;
}

.game-board {
  position: absolute;
  inset: 25px 8px 25px 36px;
  overflow: hidden;
  border-radius: 38px;
  background: var(--ink);
  box-shadow: 0 38px 80px rgba(23, 26, 44, 0.22);
  transform: rotate(2.5deg);
}

.game-board::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.2;
  background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 44px 44px;
}

.board-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 30px;
  color: var(--white);
}

.board-top small {
  display: block;
  margin-bottom: 3px;
  color: #969cb2;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.board-top strong {
  font-size: 20px;
}

.level-pill {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 99px;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 700;
  background: rgba(255,255,255,.06);
}

.arrow-field {
  position: absolute;
  inset: 100px 28px 28px;
}

.tile-arrow {
  position: absolute;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 14px;
  color: var(--ink);
  background: var(--aqua);
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}

.tile-arrow::before {
  font-size: 25px;
  font-weight: 800;
  content: "→";
}

.tile-arrow.coral { background: var(--coral); }
.tile-arrow.yellow { background: var(--yellow); }
.tile-arrow.white { background: var(--white); }
.tile-arrow:nth-child(1) { top: 6%; left: 11%; transform: rotate(90deg); }
.tile-arrow:nth-child(2) { top: 6%; left: 32%; transform: rotate(180deg); }
.tile-arrow:nth-child(3) { top: 6%; left: 53%; transform: rotate(90deg); }
.tile-arrow:nth-child(4) { top: 6%; left: 74%; }
.tile-arrow:nth-child(5) { top: 29%; left: 11%; }
.tile-arrow:nth-child(6) { top: 29%; left: 32%; transform: rotate(-90deg); }
.tile-arrow:nth-child(7) { top: 29%; left: 53%; transform: rotate(180deg); }
.tile-arrow:nth-child(8) { top: 29%; left: 74%; transform: rotate(90deg); }
.tile-arrow:nth-child(9) { top: 52%; left: 11%; transform: rotate(-90deg); }
.tile-arrow:nth-child(10) { top: 52%; left: 32%; }
.tile-arrow:nth-child(11) { top: 52%; left: 53%; transform: rotate(-90deg); }
.tile-arrow:nth-child(12) { top: 52%; left: 74%; transform: rotate(180deg); }
.tile-arrow:nth-child(13) { top: 75%; left: 11%; transform: rotate(180deg); }
.tile-arrow:nth-child(14) { top: 75%; left: 32%; transform: rotate(90deg); }
.tile-arrow:nth-child(15) { top: 75%; left: 53%; }
.tile-arrow:nth-child(16) { top: 75%; left: 74%; transform: rotate(-90deg); }

.floating-card {
  position: absolute;
  z-index: 2;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.floating-card strong {
  display: block;
  font-size: 19px;
}

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

.floating-card.one {
  top: 0;
  right: -16px;
  transform: rotate(-4deg);
}

.floating-card.two {
  bottom: 2px;
  left: 0;
  transform: rotate(3deg);
}

.manifesto {
  padding: 44px 0 0;
}

.manifesto-strip {
  display: grid;
  overflow: hidden;
  border-radius: 24px;
  color: var(--white);
  background: var(--ink);
  grid-template-columns: 1fr 1fr 1fr;
}

.manifesto-item {
  position: relative;
  min-height: 148px;
  padding: 30px;
}

.manifesto-item + .manifesto-item {
  border-left: 1px solid rgba(255,255,255,.1);
}

.manifesto-item .number {
  margin-right: 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
}

.manifesto-item h3 {
  margin: 16px 0 8px;
  font-size: 20px;
}

.manifesto-item p {
  margin: 0;
  color: #aeb3c3;
  font-size: 14px;
  line-height: 1.7;
}

.games-section,
.capabilities,
.content-section {
  padding: 120px 0;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.game-card-grid {
  display: grid;
  margin-top: 52px;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 22px;
}

.game-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  transition: 180ms ease;
}

.game-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.game-card.featured {
  display: grid;
  color: var(--white);
  border: 0;
  background: var(--ink);
  grid-template-columns: .85fr 1.15fr;
}

.game-card-copy {
  position: relative;
  z-index: 2;
  padding: 42px;
}

.game-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 19px;
  color: var(--ink);
  background: var(--aqua);
  box-shadow: inset 0 0 0 7px rgba(255,255,255,.3);
  font-size: 31px;
  font-weight: 800;
}

.game-card h3 {
  margin: 58px 0 13px;
  font-size: 33px;
  letter-spacing: -.03em;
}

.game-card p {
  margin: 0;
  color: #b8bdcc;
  line-height: 1.75;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 99px;
  color: #dfe2eb;
  font-size: 11px;
  font-weight: 600;
}

.mini-board {
  position: relative;
  overflow: hidden;
  margin: 28px 28px 28px 0;
  border-radius: 22px;
  background: #2b304a;
}

.mini-board::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .28;
  background: radial-gradient(circle at 40% 30%, var(--aqua), transparent 40%), radial-gradient(circle at 80% 80%, var(--coral), transparent 35%);
}

.mini-arrows {
  position: absolute;
  inset: 20%;
  display: grid;
  transform: rotate(-6deg);
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-arrows span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  font-size: 23px;
  font-weight: 800;
}

.mini-arrows span:nth-child(2n) { background: var(--aqua); transform: rotate(90deg); }
.mini-arrows span:nth-child(3n) { background: var(--coral); transform: rotate(180deg); }

.game-card.placeholder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  background: linear-gradient(145deg, #fff 0%, #f2f3f8 100%);
}

.placeholder-mark {
  display: grid;
  width: 110px;
  height: 110px;
  place-items: center;
  border: 1px dashed #c9cedb;
  border-radius: 30px;
  color: #a7adba;
  background: rgba(255,255,255,.8);
  font-size: 36px;
}

.game-card.placeholder h3 {
  margin: 0 0 12px;
  font-size: 26px;
}

.game-card.placeholder p {
  color: var(--muted);
}

.capabilities {
  background: var(--white);
}

.capability-grid {
  display: grid;
  margin-top: 56px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.capability-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.capability-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--coral-light);
}

.capability-card:nth-child(2) .capability-icon { background: #eafafb; }
.capability-card:nth-child(3) .capability-icon { background: #fff8df; }

.capability-card h3 {
  margin: 48px 0 10px;
  font-size: 20px;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.contact-band {
  padding: 0 0 120px;
  background: var(--white);
}

.contact-box {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 335px;
  align-items: center;
  padding: 64px;
  border-radius: 30px;
  color: var(--white);
  background: var(--ink);
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.contact-box::after {
  position: absolute;
  right: -60px;
  bottom: -120px;
  width: 310px;
  height: 310px;
  border: 60px solid var(--aqua);
  border-radius: 50%;
  content: "";
  opacity: .16;
}

.contact-box h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.15;
  letter-spacing: -.04em;
}

.contact-box p {
  margin: 18px 0 0;
  color: #aeb3c3;
}

.contact-box .button {
  position: relative;
  z-index: 2;
}

.site-footer {
  padding: 62px 0 30px;
  color: #b8bdcc;
  background: #10121f;
}

.footer-main {
  display: grid;
  padding-bottom: 50px;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}

.footer-brand {
  color: var(--white);
}

.footer-copy {
  max-width: 390px;
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column h4 {
  margin: 5px 0 18px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: .08em;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  align-items: center;
  gap: 20px;
  font-size: 12px;
}

.icp-link {
  grid-column: 2;
  color: #a8afc0;
  justify-self: center;
}

.icp-link:hover {
  color: var(--white);
}

.icp-link:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.page-hero {
  padding: 90px 0 72px;
}

.page-hero.compact {
  padding-bottom: 32px;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 1.08;
  letter-spacing: -.055em;
}

.page-hero p {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.listing-grid {
  display: grid;
  padding-bottom: 120px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.listing-card {
  overflow: hidden;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  transition: 180ms ease;
}

.listing-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.listing-art {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--ink);
}

.listing-art::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .25;
  background: linear-gradient(135deg, transparent 25%, rgba(108,229,232,.55) 25% 50%, transparent 50% 75%, rgba(255,122,102,.55) 75%);
  background-size: 120px 120px;
}

.listing-art .game-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border-radius: 28px;
  font-size: 48px;
  transform: translate(-50%, -50%) rotate(-7deg);
}

.listing-card-content {
  padding: 30px;
}

.listing-card-content h2 {
  margin: 0;
  font-size: 26px;
}

.listing-card-content p {
  min-height: 49px;
  margin: 12px 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.status-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border-radius: 99px;
  color: #247352;
  background: #eaf8f1;
  font-weight: 700;
}

.status-pill::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

.listing-card.coming .listing-art {
  background: #e9ebf1;
}

.listing-card.coming .listing-art::before {
  opacity: .5;
  background: radial-gradient(circle at center, #fff 0 15%, transparent 15.5%), radial-gradient(circle at center, transparent 0 32%, #d8dbe5 32.5% 33%, transparent 33.5%);
}

.listing-card.coming .placeholder-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.detail-hero {
  padding: 58px 0 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb span {
  color: #afb4c1;
}

.detail-grid {
  display: grid;
  align-items: center;
  grid-template-columns: .92fr 1.08fr;
  gap: 80px;
}

.detail-title-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.detail-title-row .game-icon {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 22px;
}

.detail-title-row h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 68px);
  letter-spacing: -.055em;
}

.detail-lead {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.detail-meta {
  display: grid;
  margin-top: 34px;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.detail-meta div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.detail-meta small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
}

.detail-meta strong {
  font-size: 14px;
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, #dffafb, #fff1ed);
}

.phone {
  position: relative;
  width: 270px;
  height: 530px;
  overflow: hidden;
  border: 8px solid var(--ink);
  border-radius: 38px;
  background: var(--ink);
  box-shadow: 0 35px 70px rgba(23,26,44,.2);
  transform: rotate(3deg);
}

.phone-notch {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 105px;
  height: 22px;
  border-radius: 0 0 14px 14px;
  background: var(--ink);
  transform: translateX(-50%);
}

.phone-screen {
  position: absolute;
  inset: 0;
  padding: 42px 20px 20px;
  border-radius: 29px;
  background: #f8f9fc;
}

.phone-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.phone-title span {
  color: var(--coral);
  font-size: 12px;
}

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

.phone-grid i {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 9px;
  color: var(--ink);
  background: var(--aqua);
  font-style: normal;
  font-weight: 800;
}

.phone-grid i:nth-child(3n) { background: var(--coral); transform: rotate(90deg); }
.phone-grid i:nth-child(4n) { background: var(--yellow); transform: rotate(180deg); }
.phone-grid i:nth-child(5n) { background: var(--white); box-shadow: inset 0 0 0 1px var(--line); transform: rotate(-90deg); }

.phone-progress {
  position: absolute;
  right: 20px;
  bottom: 26px;
  left: 20px;
}

.phone-progress div {
  overflow: hidden;
  height: 6px;
  border-radius: 99px;
  background: #e4e7ef;
}

.phone-progress div::before {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  content: "";
  background: var(--coral);
}

.phone-progress small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.feature-list {
  display: grid;
  margin-top: 55px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-item {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--white);
}

.feature-item .feature-number {
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
}

.feature-item h3 {
  margin: 28px 0 9px;
  font-size: 19px;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.story-grid,
.contact-grid {
  display: grid;
  padding-bottom: 120px;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}

.story-aside {
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
}

.story-content h2 {
  margin: 0 0 26px;
  font-size: 35px;
  letter-spacing: -.035em;
}

.story-content p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.principle-grid {
  display: grid;
  margin-top: 46px;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.principle {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.principle strong {
  display: block;
  margin-bottom: 8px;
}

.principle p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.contact-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.contact-card + .contact-card {
  margin-top: 16px;
}

.contact-card small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .06em;
}

.contact-card h2 {
  margin: 17px 0 10px;
  font-size: 25px;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-card a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--aqua-deep);
  font-weight: 700;
}

.legal-layout {
  display: grid;
  padding-bottom: 120px;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 70px;
}

.legal-nav {
  position: sticky;
  top: 110px;
  height: fit-content;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.legal-nav strong {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
}

.legal-nav a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 13px;
}

.legal-content {
  min-width: 0;
}

.legal-content .updated {
  margin: 0 0 44px;
  padding: 15px 18px;
  border-radius: 12px;
  color: #796728;
  background: #fff7db;
  font-size: 13px;
}

.legal-content section {
  scroll-margin-top: 110px;
}

.legal-content h2 {
  margin: 44px 0 16px;
  font-size: 24px;
}

.legal-content p,
.legal-content li {
  color: #555c70;
  font-size: 15px;
  line-height: 1.9;
}

.legal-content ul {
  padding-left: 1.2em;
}

.legal-content a {
  color: var(--aqua-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Admin */
.admin-body {
  min-height: 100vh;
  background: #f4f5f8;
}

.admin-login {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 1fr 1fr;
}

.login-art {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
  color: var(--white);
  background: var(--ink);
}

.login-art::before,
.login-art::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.login-art::before {
  right: -80px;
  bottom: -80px;
  width: 410px;
  height: 410px;
  border: 85px solid var(--aqua);
  opacity: .19;
}

.login-art::after {
  top: 22%;
  right: 20%;
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: var(--coral);
  box-shadow: 110px 100px 0 var(--aqua), -90px 150px 0 var(--yellow);
  transform: rotate(13deg);
}

.login-art .brand {
  position: relative;
  z-index: 2;
}

.login-art-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.login-art-copy h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -.055em;
}

.login-art-copy p {
  margin: 20px 0 0;
  color: #b8bdcc;
  line-height: 1.8;
}

.login-form-side {
  display: grid;
  padding: 40px;
  place-items: center;
}

.login-panel {
  width: min(100%, 430px);
}

.login-back {
  display: inline-flex;
  margin-bottom: 68px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.login-panel h2 {
  margin: 0;
  font-size: 36px;
  letter-spacing: -.04em;
}

.login-panel > p {
  margin: 12px 0 32px;
  color: var(--muted);
}

.demo-notice {
  margin-bottom: 24px;
  padding: 14px 16px;
  border: 1px solid #f4e1aa;
  border-radius: 12px;
  color: #725e22;
  background: #fff8df;
  font-size: 13px;
  line-height: 1.6;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field label {
  font-size: 13px;
  font-weight: 700;
}

.field input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid #dfe2ea;
  border-radius: 12px;
  outline: none;
  background: var(--white);
  transition: 160ms ease;
}

.field input:focus {
  border-color: var(--aqua-deep);
  box-shadow: 0 0 0 4px rgba(22,181,186,.1);
}

.login-panel .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.login-helper {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.admin-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 248px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  padding: 26px 18px 20px;
  color: #c4c8d4;
  background: var(--ink);
}

.admin-sidebar .brand {
  padding: 0 8px 26px;
  color: var(--white);
}

.admin-sidebar .brand small {
  color: #8f95a8;
}

.admin-nav-label {
  margin: 22px 10px 8px;
  color: #73798c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.admin-nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}

.admin-nav a:hover,
.admin-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.nav-icon {
  width: 18px;
  color: var(--aqua);
}

.admin-user {
  display: flex;
  margin-top: auto;
  padding: 18px 10px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  align-items: center;
  gap: 10px;
}

.avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: var(--ink);
  background: var(--aqua);
  font-size: 12px;
  font-weight: 800;
}

.admin-user strong,
.admin-user small {
  display: block;
}

.admin-user strong { color: var(--white); font-size: 12px; }
.admin-user small { margin-top: 2px; color: #858b9d; font-size: 10px; }

.admin-main {
  min-width: 0;
}

.admin-topbar {
  display: flex;
  min-height: 74px;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
}

.admin-mobile-toggle {
  display: none;
  border: 0;
  background: none;
  cursor: pointer;
}

.game-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}

.game-selector .game-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 16px;
  box-shadow: none;
}

.game-selector select {
  padding: 7px 34px 7px 5px;
  border: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
}

.readonly-badge {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border-radius: 99px;
  color: #296b52;
  background: #e8f7ef;
  font-weight: 700;
}

.admin-content {
  padding: 34px 32px 60px;
}

.admin-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.admin-heading h1 {
  margin: 0;
  font-size: 29px;
  letter-spacing: -.035em;
}

.admin-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.date-chip {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #53596b;
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.data-banner {
  display: flex;
  margin: 24px 0 18px;
  padding: 13px 15px;
  border: 1px solid #f0dfa8;
  border-radius: 12px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #675720;
  background: #fff8df;
  font-size: 12px;
  line-height: 1.6;
}

.data-banner strong {
  flex: 0 0 auto;
}

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

.metric-card,
.panel {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.metric-card {
  padding: 20px;
}

.metric-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.metric-label .info {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 10px;
}

.metric-value {
  display: block;
  margin: 16px 0 6px;
  font-size: 29px;
  letter-spacing: -.035em;
}

.metric-trend {
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
}

.metric-trend.neutral { color: var(--muted); }

.dashboard-grid {
  display: grid;
  margin-top: 14px;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, .85fr);
  gap: 14px;
}

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

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.panel-heading h2 {
  margin: 0;
  font-size: 15px;
}

.panel-heading span {
  color: var(--muted);
  font-size: 11px;
}

.chart-legend {
  display: flex;
  gap: 14px;
  margin: 22px 0 12px;
  color: var(--muted);
  font-size: 10px;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua-deep);
}

.legend-dot.coral { background: var(--coral); }

.trend-chart {
  width: 100%;
  height: 220px;
}

.chart-grid-line {
  stroke: #eaecf2;
  stroke-width: 1;
}

.chart-area {
  fill: url(#areaFill);
}

.chart-line {
  fill: none;
  stroke: var(--aqua-deep);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-line.secondary {
  stroke: var(--coral);
  stroke-width: 2;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: #9ca1af;
  font-size: 9px;
}

.audience-bars {
  margin-top: 29px;
}

.audience-row + .audience-row {
  margin-top: 26px;
}

.audience-row header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.audience-row header span { color: var(--muted); }
.audience-row header strong { font-size: 18px; }

.progress-bar {
  height: 8px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: #eff1f5;
}

.progress-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--aqua-deep);
}

.progress-bar i.bot {
  background: #b6bbc7;
}

.separation-note {
  margin-top: 24px;
  padding: 12px;
  border-radius: 10px;
  color: var(--muted);
  background: #f5f6f9;
  font-size: 11px;
  line-height: 1.6;
}

.table-panel {
  margin-top: 14px;
  overflow: hidden;
  padding: 0;
}

.table-panel .panel-heading {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.data-table th,
.data-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #eef0f4;
  text-align: left;
}

.data-table th {
  color: var(--muted);
  background: #fafbfc;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
}

.data-table tbody tr:last-child td { border-bottom: 0; }

.bar-cell {
  display: flex;
  min-width: 160px;
  align-items: center;
  gap: 10px;
}

.bar-cell .progress-bar {
  width: 100px;
  margin: 0;
}

.error-ok {
  color: var(--green);
  font-weight: 700;
}

.secondary-panels {
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, .85fr);
}

.module-grid {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.module-grid > div {
  min-width: 0;
  padding: 15px;
  border-radius: 11px;
  background: #f7f8fa;
}

.module-grid span,
.module-grid strong,
.module-grid small {
  display: block;
}

.module-grid span {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.module-grid strong {
  margin: 10px 0 4px;
  font-size: 18px;
}

.module-grid small {
  color: #969baa;
  font-size: 9px;
}

.health-list {
  margin-top: 13px;
}

.health-list > div {
  display: flex;
  min-height: 45px;
  border-bottom: 1px solid #eef0f4;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 11px;
}

.health-list > div:last-child {
  border-bottom: 0;
}

.health-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.health-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.health-dot.warning {
  background: var(--yellow);
}

@media (max-width: 1020px) {
  .hero-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

  .game-visual {
    width: min(100%, 620px);
    min-height: 520px;
    margin: 0 auto;
  }

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

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

  .contact-box {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    gap: 50px;
  }

  .phone-stage {
    min-height: 570px;
  }

  .admin-login {
    grid-template-columns: .8fr 1.2fr;
  }

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

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

  .site-header {
    background: rgba(246,247,251,.96);
  }

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

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - 68px);
    padding: 22px;
    align-items: stretch;
    flex-direction: column;
    background: var(--paper);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 15px;
    font-size: 16px;
  }

  .nav-links .admin-link {
    margin: 10px 0 0;
    text-align: center;
  }

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

  .hero-grid {
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 70px);
  }

  .hero-copy,
  .page-hero p {
    font-size: 16px;
  }

  .hero h1 .accent::after {
    bottom: 3px;
    height: 15px;
  }

  .game-visual {
    min-height: 430px;
  }

  .game-board {
    inset: 18px 3px 18px 18px;
  }

  .tile-arrow {
    width: 43px;
    height: 43px;
    border-radius: 11px;
  }

  .tile-arrow::before { font-size: 20px; }

  .floating-card.one { right: 0; }

  .manifesto-strip,
  .capability-grid,
  .feature-list,
  .listing-grid,
  .story-grid,
  .contact-grid,
  .footer-main,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .manifesto-item + .manifesto-item {
    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 0;
  }

  .games-section,
  .capabilities,
  .content-section {
    padding: 84px 0;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .game-card.featured {
    display: block;
  }

  .mini-board {
    height: 300px;
    margin: 0 22px 22px;
  }

  .game-card.placeholder {
    min-height: 360px;
  }

  .contact-band {
    padding-bottom: 84px;
  }

  .contact-box {
    min-height: 390px;
    padding: 36px 26px;
  }

  .footer-main {
    gap: 28px;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .page-hero {
    padding: 64px 0 54px;
  }

  .listing-grid {
    padding-bottom: 84px;
  }

  .detail-hero {
    padding-top: 35px;
  }

  .breadcrumb {
    margin-bottom: 32px;
  }

  .detail-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .phone-stage { min-height: 520px; }
  .phone { width: 240px; height: 475px; }

  .story-grid,
  .contact-grid {
    padding-bottom: 84px;
    gap: 36px;
  }

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

  .legal-layout {
    padding-bottom: 84px;
    gap: 24px;
  }

  .legal-nav {
    position: static;
  }

  .admin-login {
    display: block;
  }

  .login-art {
    min-height: 330px;
    padding: 28px;
  }

  .login-art-copy h1 {
    font-size: 44px;
  }

  .login-art-copy p {
    font-size: 14px;
  }

  .login-form-side {
    padding: 42px 22px;
  }

  .login-back {
    margin-bottom: 40px;
  }

  .admin-shell {
    display: block;
  }

  .admin-sidebar {
    position: fixed;
    z-index: 30;
    top: 0;
    bottom: 0;
    left: 0;
    width: 248px;
    transform: translateX(-100%);
    transition: 180ms ease;
  }

  .admin-sidebar.open {
    transform: translateX(0);
    box-shadow: 20px 0 50px rgba(23,26,44,.2);
  }

  .admin-mobile-toggle {
    display: block;
    padding: 8px;
    color: var(--ink);
  }

  .admin-topbar {
    min-height: 64px;
    padding: 0 16px;
  }

  .topbar-actions > span:not(.readonly-badge) {
    display: none;
  }

  .admin-content {
    padding: 26px 16px 50px;
  }

  .admin-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .data-banner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .table-panel {
    overflow-x: auto;
  }

  .data-table {
    min-width: 650px;
  }

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

@media (max-width: 480px) {
  .brand small { display: none; }
  .hero-actions .button { width: 100%; }
  .game-visual { min-height: 390px; }
  .game-board { inset: 18px 0; }
  .board-top { padding: 23px 21px; }
  .arrow-field { inset: 85px 16px 20px; }
  .tile-arrow { width: 38px; height: 38px; }
  .floating-card { padding: 12px 14px; }
  .floating-card strong { font-size: 15px; }
  .game-card-copy { padding: 30px; }
  .game-card h3 { margin-top: 42px; }
  .listing-art { height: 250px; }
  .detail-meta { grid-template-columns: 1fr; gap: 15px; }
  .detail-meta div + div { padding: 15px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .phone-stage { margin-inline: -14px; border-radius: 0; }
  .metric-grid { grid-template-columns: 1fr; }
  .module-grid { grid-template-columns: 1fr; }
  .game-selector select { width: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Home page · warm multi-game direction */
.home-page {
  --home-ink: #10223f;
  --home-muted: #667181;
  --home-paper: #fffaf2;
  --home-sand: #f7ecdc;
  --home-aqua: #20b8b6;
  --home-coral: #ff7463;
  color: var(--home-ink);
  background: var(--home-paper);
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.home-page .container {
  width: min(calc(100% - 76px), 1200px);
}

.home-page .site-header {
  border-color: rgba(16, 34, 63, 0.08);
  background: rgba(255, 250, 242, 0.94);
}

.home-page .nav-shell {
  min-height: 54px;
}

.home-page .brand {
  gap: 9px;
  font-size: 14px;
}

.home-page .brand img {
  width: 32px;
  height: 32px;
}

.home-page .brand small {
  margin-top: 3px;
  font-size: 8px;
}

.home-page .nav-links a {
  position: relative;
  color: #33425b;
  background: transparent;
}

.home-page .nav-links a:hover,
.home-page .nav-links a[aria-current="page"] {
  color: var(--home-ink);
  background: transparent;
}

.home-page .nav-links a[aria-current="page"]::after {
  position: absolute;
  right: 14px;
  bottom: 4px;
  left: 14px;
  height: 2px;
  border-radius: 99px;
  content: "";
  background: var(--home-aqua);
}

.home-page .menu-toggle {
  width: auto;
  height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(16, 34, 63, 0.11);
  border-radius: 99px;
  color: var(--home-ink);
  background: #fffdf8;
  font-size: 13px;
  font-weight: 700;
}

.home-page .menu-toggle span,
.home-page .menu-toggle::before,
.home-page .menu-toggle::after {
  display: none;
}

.home-hero {
  padding: 0;
  overflow: hidden;
}

.home-hero-layout {
  position: relative;
  display: grid;
  min-height: 430px;
  align-items: center;
  grid-template-columns: minmax(300px, 360px) minmax(560px, 1fr);
  gap: 20px;
}

.home-hero-copy {
  z-index: 3;
  padding-left: 34px;
}

.home-kicker {
  margin: 0 0 20px;
  color: var(--home-aqua);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.home-hero h1 {
  position: relative;
  display: inline-flex;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(72px, 7.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.home-hero .home-kicker {
  margin-bottom: 12px;
}

.title-arrow {
  position: absolute;
  right: 29px;
  bottom: -2px;
  width: 32px;
  height: 32px;
  object-fit: contain;
  transform: rotate(7deg);
}

.home-slogan {
  margin: 20px 0 0;
  color: #1e2e48;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 650;
  line-height: 1.4;
}

.home-intro {
  display: none;
  max-width: 510px;
  margin: 18px 0 0;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.8;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 25px;
}

.platform-list span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  gap: 8px;
  padding: 0 18px 0 0;
  border: 0;
  border-radius: 0;
  color: #35445b;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}

.platform-list span + span {
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid rgba(16, 34, 63, 0.12);
}

.platform-icon {
  width: 20px;
  height: 20px;
}

.platform-icon-wechat {
  filter: invert(59%) sepia(92%) saturate(2519%) hue-rotate(104deg) brightness(86%) contrast(101%);
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.home-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.home-button:focus-visible,
.dialog-close:focus-visible,
.home-page a:focus-visible {
  outline: 3px solid rgba(32, 184, 182, 0.32);
  outline-offset: 3px;
}

.home-button-primary {
  color: #fff;
  background: var(--home-coral);
  box-shadow: 0 14px 30px rgba(255, 116, 99, 0.23);
}

.home-button-primary:hover {
  background: #f86656;
  box-shadow: 0 17px 34px rgba(255, 116, 99, 0.29);
}

.home-button-primary img {
  width: 14px;
  height: 14px;
  margin-left: 9px;
  filter: brightness(0) invert(1);
}

.home-button-quiet {
  border-color: rgba(16, 34, 63, 0.13);
  color: var(--home-ink);
  background: #fffdf9;
}

.release-note {
  display: none;
  margin: 18px 0 0;
  color: #8b877f;
  font-size: 12px;
  line-height: 1.6;
}

.home-hero-art {
  position: relative;
  z-index: 1;
  overflow: visible;
  width: calc(100% + 70px);
  aspect-ratio: 1.6;
  margin-right: -52px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-hero-art > img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 0 auto;
  object-fit: contain;
}

.hero-code-card {
  position: absolute;
  z-index: 5;
  bottom: 18px;
  left: 296px;
  display: grid;
  width: 176px;
  min-height: 184px;
  place-items: center;
  gap: 8px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(16, 34, 63, 0.08);
  border-radius: 22px;
  color: var(--home-ink);
  background: #fffdf8;
  box-shadow: 0 18px 42px rgba(78, 58, 36, 0.15);
  cursor: pointer;
  font: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-code-card:hover {
  box-shadow: 0 22px 48px rgba(78, 58, 36, 0.2);
  transform: translateY(-3px);
}

.hero-code-card:focus-visible {
  outline: 3px solid rgba(32, 184, 182, 0.32);
  outline-offset: 3px;
}

.hero-code-card > span:first-child {
  font-size: 11px;
  font-weight: 700;
}

.hero-code-visual {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(16, 34, 63, 0.11);
  border-radius: 14px;
  background: #fff;
}

.hero-code-visual img {
  width: 48px;
  height: 48px;
}

.hero-code-visual strong {
  color: #8b877f;
  font-size: 11px;
}

.hero-code-card small {
  color: #8b877f;
  font-size: 10px;
}

.art-note {
  position: absolute;
  top: 7%;
  right: 6%;
  display: grid;
  gap: 3px;
  padding: 12px 16px;
  border: 1px solid rgba(16, 34, 63, 0.08);
  border-radius: 16px;
  color: var(--home-ink);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 14px 34px rgba(64, 47, 28, 0.1);
}

.art-note small {
  color: #7f7a71;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.art-note strong {
  font-size: 13px;
}

.worlds-section {
  overflow: hidden;
  padding: 22px 0 34px;
  border-top: 1px solid rgba(16, 34, 63, 0.07);
  background: #fffdf8;
}

.worlds-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.worlds-heading h2,
.home-studio h2,
.home-contact h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.worlds-heading h2 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0;
}

.worlds-heading h2 img {
  width: 12px;
  height: 12px;
  filter: invert(58%) sepia(83%) saturate(787%) hue-rotate(129deg) brightness(87%) contrast(83%);
}

.worlds-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
  color: var(--home-ink);
  font-size: 13px;
  font-weight: 800;
}

.worlds-heading > a img {
  width: 14px;
  height: 14px;
}

.world-ribbon {
  display: grid;
  width: calc(100% + 78px);
  margin-top: 14px;
  grid-template-columns: 1.25fr 1fr 1fr;
}

.world-panel {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  min-width: 0;
  height: 198px;
  margin-left: -50px;
  border: 3px solid #fffdf8;
  border-radius: 58px;
  background: #e7dded;
  box-shadow: 0 18px 45px rgba(36, 45, 69, 0.08);
}

.world-panel:first-child {
  z-index: 3;
  width: calc(100% + 30px);
  margin-left: 0;
}

.world-panel:nth-child(2) {
  z-index: 2;
}

.world-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.world-panel:first-child > img {
  object-position: center;
}

.world-panel:nth-child(2) > img,
.world-panel:nth-child(3) > img {
  object-position: 65% center;
}

.world-panel-shade {
  position: absolute;
  inset: 0;
  background: rgba(13, 38, 57, 0.25);
}

.world-panel:nth-child(2) .world-panel-shade,
.world-panel:nth-child(3) .world-panel-shade {
  background: rgba(39, 35, 63, 0.16);
}

.world-panel-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 8%;
  display: grid;
  max-width: 220px;
  gap: 6px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(20, 28, 44, 0.42);
  transform: translateY(-50%);
}

.world-panel-copy small {
  display: none;
}

.world-panel-copy strong {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.2;
}

.world-panel-copy > span {
  max-width: 90px;
  font-size: 11px;
  line-height: 1.5;
}

.world-panel-current {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.world-panel-current:hover {
  z-index: 4;
  box-shadow: 0 24px 56px rgba(36, 45, 69, 0.15);
  transform: translateY(-4px);
}

.world-panel-action,
.world-panel-lock {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 8%;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--home-coral);
  box-shadow: 0 8px 18px rgba(255, 116, 99, 0.3);
}

.world-panel-action img,
.world-panel-lock img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

.world-panel-lock {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 18px rgba(24, 32, 49, 0.12);
}

.world-panel:nth-child(2) .world-panel-copy,
.world-panel:nth-child(2) .world-panel-lock {
  left: 25%;
}

.world-panel:nth-child(3) .world-panel-copy,
.world-panel:nth-child(3) .world-panel-lock {
  left: 16%;
}

.world-panel-lock img {
  width: 12px;
  height: 12px;
  filter: invert(28%) sepia(8%) saturate(610%) hue-rotate(182deg) brightness(91%) contrast(87%);
}

.world-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.world-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e1dfdc;
}

.world-dots i:first-child {
  width: 8px;
  border-radius: 50%;
  background: var(--home-aqua);
}

.home-studio {
  padding: 116px 0;
  background: var(--home-sand);
}

.home-studio-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 90px;
}

.studio-principles {
  border-top: 1px solid rgba(16, 34, 63, 0.14);
}

.studio-principles article {
  display: grid;
  padding: 26px 0;
  border-bottom: 1px solid rgba(16, 34, 63, 0.14);
  grid-template-columns: 52px 1fr;
  gap: 18px;
}

.studio-principles article > span {
  color: var(--home-coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.studio-principles h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.studio-principles p {
  margin: 0;
  color: #6f6f71;
  font-size: 14px;
  line-height: 1.75;
}

.home-contact {
  padding: 104px 0;
  background: #fffdf8;
}

.home-contact-inner {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 52px 58px;
  border: 1px solid rgba(16, 34, 63, 0.08);
  border-radius: 34px;
  background: #f5eee4;
}

.home-contact p:not(.home-kicker) {
  margin: 16px 0 0;
  color: var(--home-muted);
}

.home-page .site-footer {
  background: #101d31;
}

.play-dialog {
  width: min(calc(100% - 32px), 480px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  color: var(--home-ink);
  background: #fffaf2;
  box-shadow: 0 30px 90px rgba(16, 34, 63, 0.26);
}

.play-dialog::backdrop {
  background: rgba(12, 25, 43, 0.52);
  backdrop-filter: blur(8px);
}

.play-dialog form {
  position: relative;
  padding: 36px;
}

.play-dialog h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.25;
}

.play-dialog p:not(.home-kicker) {
  margin: 18px 0 10px;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.7;
}

.play-dialog > form > small {
  color: #908b83;
  font-size: 12px;
  line-height: 1.6;
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(16, 34, 63, 0.1);
  border-radius: 99px;
  color: var(--home-ink);
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.qr-awaiting {
  display: grid;
  min-height: 200px;
  margin-top: 26px;
  place-items: center;
  align-content: center;
  gap: 15px;
  border: 1px solid rgba(16, 34, 63, 0.1);
  border-radius: 22px;
  background: #fff;
}

.qr-awaiting img {
  width: 62px;
  height: 62px;
}

.qr-awaiting strong {
  color: #7d7a74;
  font-size: 14px;
}

@media (max-width: 920px) {
  .home-hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .home-hero-copy {
    max-width: 700px;
    padding-left: 0;
  }

  .home-hero-art {
    width: min(100%, 840px);
    margin-right: 0;
  }

  .hero-code-card {
    display: none;
  }

  .home-intro,
  .release-note {
    display: block;
  }

  .world-panel {
    height: 220px;
  }
}

@media (max-width: 780px) {
  .home-page .container {
    width: min(calc(100% - 40px), var(--content));
  }

  .home-page .site-header {
    background: rgba(255, 250, 242, 0.98);
  }

  .home-page .nav-shell {
    min-height: 68px;
  }

  .home-page .brand {
    gap: 12px;
    font-size: inherit;
  }

  .home-page .brand img {
    width: 40px;
    height: 40px;
  }

  .home-page .brand small {
    margin-top: 4px;
    font-size: 10px;
  }

  .home-page .nav-links {
    background: var(--home-paper);
  }

  .home-page .nav-links a[aria-current="page"]::after {
    display: none;
  }

  .home-hero {
    padding: 48px 0 64px;
  }

  .home-hero-layout {
    gap: 36px;
  }

  .home-hero h1 {
    font-size: clamp(54px, 16vw, 72px);
  }

  .home-intro {
    font-size: 15px;
  }

  .home-hero-art {
    width: 100%;
    aspect-ratio: 1.52;
    margin-right: 0;
    border-radius: 34px;
  }

  .home-hero-art > img {
    width: 100%;
  }

  .art-note {
    top: 14px;
    right: 14px;
    padding: 10px 12px;
  }

  .worlds-section,
  .home-studio,
  .home-contact {
    padding: 78px 0;
  }

  .worlds-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .world-ribbon {
    overflow-x: auto;
    width: auto;
    margin-right: -14px;
    padding-right: 14px;
    grid-auto-columns: minmax(285px, 82vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    scroll-snap-type: x mandatory;
  }

  .world-panel {
    height: 245px;
    margin-left: 0;
    border-width: 3px;
    border-radius: 72px;
    scroll-snap-align: start;
  }

  .world-panel-copy {
    left: 12%;
  }

  .world-dots {
    justify-content: flex-start;
  }

  .home-studio-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-contact-inner {
    align-items: flex-start;
    padding: 36px 28px;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .home-kicker {
    margin-bottom: 15px;
  }

  .home-slogan {
    margin-top: 20px;
    font-size: 21px;
  }

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

  .home-button {
    width: 100%;
    padding: 0 16px;
  }

  .home-hero-art {
    aspect-ratio: 1.45;
  }

  .art-note {
    display: none;
  }

  .world-panel {
    border-radius: 58px;
  }

  .home-contact-inner {
    min-height: 330px;
  }

  .play-dialog form {
    padding: 31px 22px 26px;
  }

  .play-dialog h2 {
    padding-right: 62px;
    font-size: 26px;
  }
}

/* Public subpages — aligned with the approved homepage visual language */
.subpage {
  --home-ink: #10223f;
  --home-muted: #667181;
  --home-paper: #fffaf2;
  --home-sand: #f7ecdc;
  --home-aqua: #20b8b6;
  --home-coral: #ff7463;
  color: var(--home-ink);
  background: var(--home-paper);
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.subpage main {
  overflow: hidden;
}

.subpage .container {
  width: min(calc(100% - 76px), 1200px);
}

.subpage .site-header {
  border-color: rgba(16, 34, 63, 0.08);
  background: rgba(255, 250, 242, 0.94);
}

.subpage .nav-shell {
  min-height: 54px;
}

.subpage .brand {
  gap: 9px;
  font-size: 14px;
}

.subpage .brand img {
  width: 32px;
  height: 32px;
}

.subpage .brand small {
  margin-top: 3px;
  font-size: 8px;
}

.subpage .nav-links a {
  position: relative;
  color: #33425b;
  background: transparent;
  font-size: 14px;
}

.subpage .nav-links a:hover,
.subpage .nav-links a[aria-current="page"] {
  color: var(--home-ink);
  background: transparent;
}

.subpage .nav-links a[aria-current="page"]::after {
  position: absolute;
  right: 14px;
  bottom: 4px;
  left: 14px;
  height: 2px;
  border-radius: 99px;
  content: "";
  background: var(--home-aqua);
}

.subpage .menu-toggle {
  width: auto;
  height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(16, 34, 63, 0.11);
  border-radius: 99px;
  color: var(--home-ink);
  background: #fffdf8;
  font-size: 13px;
  font-weight: 700;
}

.subpage .menu-toggle span,
.subpage .menu-toggle::before,
.subpage .menu-toggle::after {
  display: none;
}

.subpage .eyebrow {
  margin-bottom: 16px;
  color: var(--home-aqua);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.subpage .eyebrow::before {
  width: 15px;
  height: 2px;
  border-radius: 99px;
}

.subpage .page-hero {
  position: relative;
  padding: 76px 0 62px;
  background:
    radial-gradient(circle at 86% 24%, rgba(32, 184, 182, 0.12), transparent 24%),
    radial-gradient(circle at 76% 86%, rgba(255, 116, 99, 0.1), transparent 20%);
}

.subpage .page-hero.compact {
  padding-bottom: 44px;
}

.subpage .page-hero h1 {
  max-width: 790px;
  color: var(--home-ink);
  font-size: clamp(50px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.subpage .page-hero p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 20px;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.85;
}

.subpage .listing-grid {
  padding-bottom: 104px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.subpage .listing-card {
  min-height: 430px;
  border-color: rgba(16, 34, 63, 0.08);
  border-radius: 30px;
  background: #fffdf8;
  box-shadow: 0 18px 44px rgba(78, 58, 36, 0.06);
}

.subpage .listing-card:hover {
  box-shadow: 0 24px 56px rgba(78, 58, 36, 0.12);
}

.subpage .listing-art {
  height: 236px;
  background: var(--home-sand);
}

.subpage .listing-art::before,
.subpage .listing-card.coming .listing-art::before {
  z-index: 1;
  opacity: 1;
  background: linear-gradient(180deg, transparent 52%, rgba(16, 34, 63, 0.16));
}

.subpage .listing-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage .listing-card-content {
  padding: 26px 26px 28px;
}

.subpage .listing-card-content h2 {
  color: var(--home-ink);
  font-size: 25px;
}

.subpage .listing-card-content p {
  min-height: 68px;
  margin: 11px 0 20px;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.7;
}

.subpage .status-row {
  align-items: flex-start;
  color: #77766f;
  font-size: 12px;
}

.subpage .status-pill {
  min-height: 27px;
  padding: 0 10px;
  color: #137a78;
  background: rgba(32, 184, 182, 0.11);
}

.subpage .status-pill::before {
  background: var(--home-aqua);
}

.subpage .detail-hero {
  padding: 34px 0 86px;
  background:
    radial-gradient(circle at 94% 10%, rgba(32, 184, 182, 0.1), transparent 25%),
    linear-gradient(180deg, #fffaf2, #fffdf8);
}

.subpage .breadcrumb {
  margin-bottom: 34px;
  color: #8d8a82;
}

.subpage .breadcrumb a:hover {
  color: var(--home-aqua);
}

.subpage .detail-grid {
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: 54px;
}

.subpage .detail-title-row {
  align-items: center;
  flex-direction: row;
  gap: 16px;
}

.subpage .detail-title-row .game-icon {
  width: 62px;
  height: 62px;
  border-radius: 19px;
  background: #83e4e4;
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.46);
  font-size: 28px;
}

.subpage .detail-title-row h1 {
  color: var(--home-ink);
  font-size: clamp(50px, 5vw, 68px);
  letter-spacing: -0.045em;
}

.subpage .detail-lead {
  margin-top: 24px;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.85;
}

.subpage .detail-meta {
  margin-top: 28px;
  padding: 17px 18px;
  border: 1px solid rgba(16, 34, 63, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  grid-template-columns: repeat(3, 1fr);
}

.subpage .detail-meta div + div {
  border-color: rgba(16, 34, 63, 0.1);
}

.subpage .detail-meta small {
  color: #8d8a82;
}

.subpage .detail-meta strong {
  color: var(--home-ink);
}

.subpage .button-primary {
  color: #fff;
  background: var(--home-coral);
  box-shadow: 0 14px 30px rgba(255, 116, 99, 0.22);
}

.subpage .button-secondary {
  border-color: rgba(16, 34, 63, 0.12);
  color: var(--home-ink);
  background: #fffdf8;
}

.subpage .detail-art {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(16, 34, 63, 0.07);
  border-radius: 42px;
  background: var(--home-sand);
  box-shadow: 0 28px 68px rgba(78, 58, 36, 0.11);
}

.subpage .detail-art img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
}

.subpage .detail-art figcaption {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  gap: 3px;
  padding: 11px 15px;
  border: 1px solid rgba(16, 34, 63, 0.07);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 12px 28px rgba(78, 58, 36, 0.08);
}

.subpage .detail-art figcaption small {
  color: #8a867e;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.subpage .detail-art figcaption strong {
  font-size: 13px;
}

.subpage .content-section.capabilities {
  padding: 94px 0;
  background: var(--home-sand);
}

.subpage .section-title {
  color: var(--home-ink);
  font-size: clamp(38px, 4.5vw, 56px);
  letter-spacing: -0.045em;
}

.subpage .section-copy {
  color: var(--home-muted);
  font-size: 16px;
}

.subpage .feature-list {
  margin-top: 46px;
  gap: 14px;
}

.subpage .feature-item {
  min-height: 190px;
  padding: 24px;
  border-color: rgba(16, 34, 63, 0.08);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.88);
}

.subpage .feature-item .feature-number {
  color: var(--home-coral);
}

.subpage .feature-item h3 {
  margin-top: 30px;
  color: var(--home-ink);
}

.subpage .feature-item p {
  color: var(--home-muted);
}

.subpage .story-grid,
.subpage .contact-grid {
  padding: 8px 0 104px;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 62px;
}

.subpage .story-content h2 {
  color: var(--home-ink);
  font-size: clamp(30px, 3vw, 40px);
}

.subpage .story-content p {
  color: var(--home-muted);
  font-size: 16px;
}

.subpage .legal-layout {
  padding-bottom: 104px;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 30px;
}

.subpage .legal-nav {
  top: 84px;
  padding: 22px;
  border-color: rgba(16, 34, 63, 0.08);
  border-radius: 20px;
  background: #fffdf8;
}

.subpage .legal-nav a {
  color: var(--home-muted);
}

.subpage .legal-nav a:hover {
  color: var(--home-aqua);
}

.subpage .legal-content {
  padding: 42px 50px 52px;
  border: 1px solid rgba(16, 34, 63, 0.08);
  border-radius: 30px;
  background: #fffdf8;
  box-shadow: 0 18px 48px rgba(78, 58, 36, 0.05);
}

.subpage .legal-content .updated {
  margin-bottom: 38px;
  border: 1px solid rgba(255, 116, 99, 0.12);
  border-radius: 15px;
  color: #87584f;
  background: rgba(255, 116, 99, 0.08);
}

.subpage .legal-content h2 {
  color: var(--home-ink);
}

.subpage .legal-content p,
.subpage .legal-content li {
  color: #606a79;
}

.subpage .legal-content a {
  color: var(--home-aqua);
}

.subpage .contact-band {
  padding: 94px 0;
  background: #fffdf8;
}

.subpage .contact-box {
  min-height: 260px;
  padding: 50px 56px;
  border: 1px solid rgba(16, 34, 63, 0.08);
  border-radius: 34px;
  color: var(--home-ink);
  background: var(--home-sand);
}

.subpage .contact-box::after {
  display: none;
}

.subpage .contact-box h2 {
  color: var(--home-ink);
  font-size: clamp(34px, 4vw, 52px);
}

.subpage .contact-box p {
  color: var(--home-muted);
}

.subpage .button-coral {
  background: var(--home-coral);
  box-shadow: 0 14px 30px rgba(255, 116, 99, 0.22);
}

.subpage .site-footer {
  background: #101d31;
}

.subpage a:focus-visible,
.subpage button:focus-visible {
  outline: 3px solid rgba(32, 184, 182, 0.3);
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  .subpage .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subpage .detail-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .subpage .detail-art {
    width: min(100%, 820px);
  }
}

@media (max-width: 780px) {
  .subpage .container {
    width: min(calc(100% - 40px), var(--content));
  }

  .subpage .site-header {
    background: rgba(255, 250, 242, 0.98);
  }

  .subpage .nav-shell {
    min-height: 68px;
  }

  .subpage .brand {
    gap: 12px;
    font-size: inherit;
  }

  .subpage .brand img {
    width: 40px;
    height: 40px;
  }

  .subpage .brand small {
    margin-top: 4px;
    font-size: 10px;
  }

  .subpage .nav-links {
    background: var(--home-paper);
  }

  .subpage .nav-links a {
    padding: 15px;
    font-size: 16px;
  }

  .subpage .nav-links a[aria-current="page"]::after {
    display: none;
  }

  .subpage .page-hero,
  .subpage .page-hero.compact {
    padding: 54px 0 42px;
  }

  .subpage .page-hero h1 {
    font-size: clamp(44px, 12.5vw, 60px);
  }

  .subpage .listing-grid {
    padding-bottom: 78px;
    grid-template-columns: 1fr;
  }

  .subpage .listing-card-content p {
    min-height: 0;
  }

  .subpage .detail-hero {
    padding: 28px 0 72px;
  }

  .subpage .detail-title-row {
    align-items: center;
    flex-direction: row;
  }

  .subpage .detail-title-row h1 {
    font-size: clamp(44px, 12vw, 58px);
  }

  .subpage .detail-art {
    border-radius: 30px;
  }

  .subpage .content-section.capabilities {
    padding: 78px 0;
  }

  .subpage .story-grid,
  .subpage .contact-grid {
    padding-bottom: 78px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .subpage .legal-layout {
    padding-bottom: 78px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .subpage .legal-nav {
    position: static;
  }

  .subpage .legal-content {
    padding: 30px 26px 38px;
    border-radius: 24px;
  }

  .subpage .contact-band {
    padding: 78px 0;
  }

  .subpage .contact-box {
    min-height: 330px;
    padding: 36px 28px;
  }
}

@media (max-width: 480px) {
  .subpage .brand small {
    display: none;
  }

  .subpage .page-hero h1 {
    font-size: 43px;
  }

  .subpage .listing-art {
    height: 220px;
  }

  .subpage .detail-title-row .game-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .subpage .detail-title-row h1 {
    font-size: 42px;
  }

  .subpage .detail-meta {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .subpage .detail-meta div + div {
    padding: 14px 0 0;
    border-top: 1px solid rgba(16, 34, 63, 0.1);
    border-left: 0;
  }

  .subpage .detail-art figcaption {
    top: 12px;
    left: 12px;
    padding: 9px 12px;
  }

  .subpage .legal-content {
    padding: 24px 20px 32px;
  }
}

/* Simplified information hierarchy for the three content-heavy subpages */
.subpage.about-page .story-grid,
.subpage.contact-page .contact-grid {
  display: block;
}

.subpage.about-page .story-content {
  max-width: 900px;
}

.subpage.contact-page .contact-focus {
  max-width: 1040px;
}

.subpage .story-lead {
  max-width: 700px;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 650;
  line-height: 1.6;
}

.subpage .principle-list {
  margin-top: 40px;
  border-top: 1px solid rgba(16, 34, 63, 0.12);
}

.subpage .principle-list article {
  display: grid;
  padding: 26px 0;
  border-bottom: 1px solid rgba(16, 34, 63, 0.12);
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
}

.subpage .principle-list article > span {
  padding-top: 4px;
  color: var(--home-coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.subpage .principle-list strong {
  display: block;
  color: var(--home-ink);
  font-size: 20px;
}

.subpage .principle-list p {
  margin: 8px 0 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.75;
}

.subpage .contact-focus {
  position: relative;
  overflow: hidden;
  padding: 46px 48px;
  border: 1px solid rgba(16, 34, 63, 0.08);
  border-radius: 30px;
  background: var(--home-sand);
  box-shadow: 0 20px 54px rgba(78, 58, 36, 0.06);
}

.subpage .contact-focus::after {
  position: absolute;
  right: -88px;
  bottom: -108px;
  width: 250px;
  height: 250px;
  border: 50px solid rgba(32, 184, 182, 0.1);
  border-radius: 50%;
  content: "";
}

.subpage .contact-focus > small {
  color: var(--home-aqua);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.subpage .contact-focus h2 {
  margin: 17px 0 20px;
  color: var(--home-ink);
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -0.04em;
}

.subpage .contact-email {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--home-coral);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.subpage .contact-focus > p:not(.contact-safety) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--home-muted);
  line-height: 1.8;
}

.subpage .contact-facts {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(16, 34, 63, 0.12);
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.subpage .contact-facts small,
.subpage .contact-facts strong {
  display: block;
}

.subpage .contact-facts small {
  margin-bottom: 7px;
  color: #8a867e;
  font-size: 11px;
}

.subpage .contact-facts strong {
  color: var(--home-ink);
  font-size: 14px;
  line-height: 1.6;
}

.subpage .contact-safety {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  padding: 13px 16px;
  border-radius: 14px;
  color: #837e75;
  background: rgba(255, 253, 248, 0.74);
  font-size: 12px;
  line-height: 1.65;
}

.subpage .feature-list-simple {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.subpage .feature-list-simple .feature-item {
  display: flex;
  min-height: 0;
  flex-direction: column;
}

.subpage .feature-list-simple .feature-item-primary {
  min-height: 394px;
  padding: 38px;
  grid-row: 1 / span 2;
  background: #fffaf2;
}

.subpage .feature-list-simple .feature-item-primary h3 {
  max-width: 470px;
  margin-top: 64px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.subpage .feature-list-simple .feature-item-primary p {
  max-width: 500px;
  font-size: 15px;
}

.subpage .feature-list-simple .feature-item-primary > strong {
  margin-top: auto;
  padding-top: 34px;
  color: var(--home-aqua);
  font-size: 15px;
}

.subpage .feature-list-simple .feature-item:not(.feature-item-primary) h3 {
  margin-top: 20px;
}

@media (max-width: 780px) {
  .subpage .principle-list {
    margin-top: 32px;
  }

  .subpage .contact-focus {
    padding: 34px 28px;
    border-radius: 26px;
  }

  .subpage .contact-facts {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .subpage .feature-list-simple {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .subpage .feature-list-simple .feature-item-primary {
    min-height: 330px;
    padding: 30px;
    grid-row: auto;
  }

  .subpage .feature-list-simple .feature-item-primary h3 {
    margin-top: 48px;
  }
}

@media (max-width: 480px) {
  .subpage .principle-list article {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .subpage .contact-focus {
    padding: 30px 22px;
  }

  .subpage .contact-email {
    font-size: 22px;
  }
}
