:root {
  --night: #120c14;
  --ink: #1a1018;
  --dusk: #2a1824;
  --rose: #c45c78;
  --rose-deep: #8a3848;
  --gold: #e8b070;
  --gold-bright: #f4c888;
  --cream: #f4eadc;
  --mist: #d0b8b0;
  --mute: rgba(244, 234, 220, 0.58);
  --line: rgba(232, 176, 112, 0.28);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Songti TC", "Noto Serif TC", serif;
  --sans: "PingFang TC", "Hiragino Sans TC", "Noto Sans TC", "Avenir Next", "Segoe UI", sans-serif;
  --mono: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  font-family: var(--sans);
  background: var(--night);
  line-height: 1.65;
}

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

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
  color: var(--gold-bright);
}

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

code {
  font-family: var(--mono);
  font-size: 0.92em;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 20;
  padding: 8px 12px;
  background: var(--gold);
  color: var(--night);
}

.skip:focus {
  top: 12px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 10px 22px 0;
  background: rgba(20, 12, 18, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.mark {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--cream);
  min-width: 7.5rem;
  padding-bottom: 10px;
}

.mark-zh {
  font-family: var(--serif);
  letter-spacing: 0.28em;
  font-size: 0.92rem;
}

.mark-en {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  color: var(--gold);
}

.catbar {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
  margin-left: auto;
  flex: 1;
  min-width: 0;
}

.catbar > a,
.catbar .menu > a,
.catbar .menu-caret {
  display: block;
  padding: 10px 14px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--mist);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.catbar .menu {
  position: relative;
  display: flex;
  align-items: stretch;
}

.catbar .menu > a {
  padding-right: 6px;
}

.catbar .menu-caret {
  padding: 10px 10px 10px 2px;
  cursor: pointer;
  color: var(--gold);
}

.catbar .cat-home { border-bottom-color: #8a6a9a; }
.catbar .cat-world > a,
.catbar .cat-world > button { border-bottom-color: #c45c6a; }
.catbar .cat-features > a,
.catbar .cat-features > button { border-bottom-color: #d4a054; }
.catbar .cat-join > a,
.catbar .cat-join > button,
.catbar .cat-production > a,
.catbar .cat-production > button { border-bottom-color: #7eb8b0; }
.catbar .cat-gallery > a,
.catbar .cat-gallery > button { border-bottom-color: #e08a62; }
.catbar .cat-rules > a,
.catbar .cat-rules > button,
.catbar .cat-info > a,
.catbar .cat-info > button { border-bottom-color: #c9b8a8; }

.catbar > a:hover,
.catbar > a:focus-visible,
.catbar > a.is-active,
.catbar > a[aria-current="page"],
.catbar .menu > a:hover,
.catbar .menu > a:focus-visible,
.catbar .menu-caret:hover,
.catbar .menu-caret:focus-visible,
.catbar .menu.is-active > a,
.catbar .menu.is-active > button,
.catbar .menu.is-open > a,
.catbar .menu.is-open > button,
.catbar .menu:hover > a,
.catbar .menu:hover > button {
  color: var(--gold-bright);
  background: rgba(243, 230, 208, 0.06);
}

.menu-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  min-width: 260px;
  max-width: min(420px, 92vw);
  max-height: 70vh;
  overflow: auto;
  padding: 8px;
  background: #241820;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(10, 6, 8, 0.45);
}

.catbar .menu:hover .menu-panel,
.catbar .menu.is-open .menu-panel {
  display: grid;
}

.menu-panel a,
.menu-empty {
  display: block;
  padding: 8px 10px;
  border-radius: 3px;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
}

.menu-panel a:hover,
.menu-panel a:focus-visible {
  background: rgba(240, 192, 112, 0.12);
  color: var(--gold-bright);
}

.menu-more {
  color: var(--gold) !important;
  font-weight: 700 !important;
}

.tag {
  display: inline-block;
  margin-right: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

.status-chip,
.ip-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  border: 1px solid var(--line);
  background: #22141a;
  color: var(--cream);
  border-radius: 999px;
  padding: 6px 12px 6px 8px;
  font: inherit;
  cursor: default;
}

.status-chip-label,
.ip-chip-label {
  background: var(--gold);
  color: var(--night);
  border-radius: 999px;
  padding: 1px 7px;
  font-size: 0.68rem;
  font-weight: 600;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #22141a;
  color: var(--cream);
  padding: 6px 10px;
  font: inherit;
  cursor: pointer;
}

.drawer {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 14px 16px;
  background: #1a1016;
  border-bottom: 1px solid var(--line);
}

.drawer > a,
.drawer-cat-row > a {
  color: var(--cream);
  text-decoration: none;
  padding: 10px 4px;
}

.drawer a[aria-current="page"],
.drawer .is-active > a,
.drawer .drawer-cat-row > a[aria-current="page"] {
  color: var(--gold-bright);
}

.drawer-cat {
  position: relative;
}

.drawer-cat-row {
  display: flex;
  align-items: center;
}

.drawer-cat-row > a {
  flex: 1;
}

.drawer .menu-caret {
  border: 0;
  background: transparent;
  color: var(--gold);
  padding: 10px 8px;
  font: inherit;
  cursor: pointer;
}

.drawer .menu-panel {
  position: static;
  display: none;
  min-width: 0;
  max-width: none;
  max-height: none;
  margin: 0 0 8px;
  background: #22141a;
  box-shadow: none;
}

.drawer .menu.is-open .menu-panel {
  display: grid;
}

.hero {
  position: relative;
  min-height: min(78vh, 720px);
  overflow: hidden;
  display: grid;
  align-items: end;
}

.hero-sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #120c14 0 11%, transparent 11% 89%, #120c14 89%),
    radial-gradient(ellipse 70% 45% at 70% 40%, rgba(244, 200, 136, 0.28), transparent 50%),
    linear-gradient(180deg, #1a1018 0%, #5a2838 36%, #c45c78 58%, #e8b070 78%, #2a1820 78.2%);
}

.stars {
  position: absolute;
  inset: 0 0 38%;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(243, 230, 208, 0.7), transparent),
    radial-gradient(1.2px 1.2px at 28% 10%, rgba(243, 230, 208, 0.45), transparent),
    radial-gradient(1px 1px at 46% 22%, rgba(240, 192, 112, 0.55), transparent),
    radial-gradient(1.4px 1.4px at 63% 8%, rgba(243, 230, 208, 0.65), transparent),
    radial-gradient(1px 1px at 81% 16%, rgba(243, 230, 208, 0.4), transparent),
    radial-gradient(1px 1px at 91% 28%, rgba(240, 192, 112, 0.5), transparent);
  opacity: 0.7;
}

.sun {
  position: absolute;
  width: 140px;
  height: 140px;
  right: 16%;
  top: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, #fff4c8 0%, #f0c070 36%, rgba(196, 92, 106, 0) 72%);
  filter: blur(0.4px);
}

.haze {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(20, 12, 18, 0.35) 40%, var(--night));
}

.skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 7vw 8vh;
  max-width: 42rem;
}

.kicker {
  margin: 0 0 0.6rem;
  color: var(--gold-bright);
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  letter-spacing: 0.12em;
  line-height: 1.15;
  text-shadow: 0 12px 40px rgba(20, 12, 18, 0.45);
}

.lede-en {
  margin: 0.9rem 0 0;
  color: var(--gold);
  font-size: 1.02rem;
}

.lede {
  margin: 0.7rem 0 1.4rem;
  color: var(--mist);
  max-width: 34rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-gold,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  padding: 12px 16px;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.btn-gold {
  border: 0;
  background: var(--gold);
  color: var(--night);
  font-weight: 600;
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-bright);
}

.btn-gold.is-static,
.btn-gold:disabled {
  cursor: default;
  opacity: 0.88;
  pointer-events: none;
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(20, 12, 18, 0.35);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.soon-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 1.1rem 0 0;
  color: var(--mute);
  font-size: 0.88rem;
}

.soon-note.tight {
  margin-top: 0.7rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.sep {
  opacity: 0.45;
}

.strip {
  border-block: 1px solid var(--line);
  background: #1a1016;
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 7vw;
}

.strip p {
  margin: 0;
}

.strip strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.05rem;
}

.strip span {
  color: var(--mute);
  font-size: 0.82rem;
}

.world,
.features,
.join,
.production,
.gallery,
.rules,
.info,
.now {
  padding: 5.5rem 7vw;
}

[id] {
  scroll-margin-top: 5.5rem;
}

.world-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.sec-en,
.feat-en,
.step-en {
  margin: 0;
  color: var(--gold);
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.world h2,
.sec-head h2 {
  margin: 0.35rem 0 1rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.08em;
}

.world-en {
  color: var(--mute);
  font-size: 0.95rem;
}

.postcard {
  margin: 0;
  background: var(--dusk);
  border: 1px solid var(--line);
  box-shadow: 12px 16px 0 rgba(196, 92, 106, 0.12);
}

.postcard-art {
  width: 100%;
  height: auto;
}

.postcard figcaption {
  padding: 10px 14px 12px;
  color: var(--mist);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.sec-head {
  max-width: 40rem;
  margin: 0 auto 2.4rem;
}

.sec-sub {
  margin: 0;
  color: var(--mute);
}

.feat-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feat-grid li {
  padding: 22px 22px 20px;
  background: var(--ink);
  border: 1px solid var(--line);
}

.feat-grid svg {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.feat-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
}

.feat-grid .feat-en {
  margin: 0.15rem 0 0.7rem;
}

.feat-grid p:last-child {
  margin: 0;
  color: var(--mist);
}

.feat-wide {
  grid-column: 1 / -1;
}

.feat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0.8rem 0 0;
}

.feat-pills span {
  padding: 4px 10px;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.steps h3 {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-weight: 400;
}

.steps p {
  margin: 0 0 0.4rem;
  color: var(--mist);
}

.join-ip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 10px 0 4px;
}

.join-ip code {
  padding: 10px 12px;
  background: #22141a;
  border: 1px solid var(--line);
}

.join-ip.is-closed code {
  opacity: 0.55;
}

.join-closed {
  margin: 0 auto 2.2rem;
  max-width: 720px;
  padding: 18px 18px 16px;
  background: var(--ink);
  border: 1px solid var(--line);
}

.join-closed h3 {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
}

.join-closed p {
  margin: 0;
  color: var(--mist);
}

.shots {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.shot {
  margin: 0;
  background: var(--ink);
  border: 1px solid var(--line);
}

.shot-art {
  position: relative;
  height: 188px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.shot-art::before,
.shot-art::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.shot p {
  margin: 0;
  padding: 10px 12px 12px;
  font-family: var(--serif);
}

.shot span {
  display: block;
  font-family: var(--sans);
  color: var(--mute);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.shot-train .shot-art {
  background:
    linear-gradient(180deg, #120c14 0 14%, transparent 14% 86%, #120c14 86%),
    linear-gradient(180deg, #2a1624 0%, #c45c78 48%, #1a2430 78%, #120c14 100%);
}

.shot-train .shot-art::before {
  left: 12%;
  bottom: 22%;
  width: 70%;
  height: 28%;
  background: #120c12;
}

.shot-train .shot-art::after {
  left: 18%;
  bottom: 36%;
  width: 10px;
  height: 18px;
  background: #e8b070;
  box-shadow: 22px 0 0 #c45c78, 44px 0 0 #e8b070, 66px 0 0 #c45c78;
}

.shot-harbor .shot-art {
  background:
    radial-gradient(circle at 78% 28%, #e8b070 0 10%, transparent 28%),
    linear-gradient(180deg, #4a2838 0%, #c45c78 40%, #243040 70%, #1a2438 100%);
}

.shot-harbor .shot-art::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(18, 28, 44, 0.85));
  box-shadow: 0 -1px 0 rgba(240, 192, 112, 0.2);
}

.shot-harbor .shot-art::before {
  width: 42px;
  height: 54px;
  left: 18%;
  bottom: 22%;
  background: #140c12;
  clip-path: polygon(50% 0, 100% 28%, 100% 100%, 0 100%, 0 28%);
}

.shot-balcony .shot-art {
  background:
    linear-gradient(180deg, #1a1018 0%, #c45c78 52%, #2a1820 52.2%);
}

.shot-balcony .shot-art::before {
  left: 22%;
  bottom: 18%;
  width: 16px;
  height: 46px;
  background: #120c12;
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}

.shot-balcony .shot-art::after {
  left: 0;
  right: 0;
  bottom: 28%;
  height: 2px;
  background: rgba(244, 234, 220, 0.25);
}

.shot-market .shot-art {
  background:
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(232, 176, 112, 0.18) 28px 30px),
    linear-gradient(180deg, #2a1620 0%, #6a3040 45%, #e8b070 100%);
}

.shot-market .shot-art::before,
.shot-market .shot-art::after {
  bottom: 18%;
  width: 36px;
  height: 48px;
  background: #140c10;
  clip-path: polygon(0 22%, 50% 0, 100% 22%, 100% 100%, 0 100%);
}

.shot-market .shot-art::before {
  left: 18%;
}

.shot-market .shot-art::after {
  right: 22%;
  height: 58px;
}

.shot-letter .shot-art {
  background: linear-gradient(180deg, #24141c, #1a1018);
}

.shot-letter .shot-art::before {
  inset: 28px 36px 32px;
  background: #f4eadc;
  box-shadow: 8px 8px 0 rgba(196, 92, 120, 0.25);
}

.shot-letter .shot-art::after {
  left: 28%;
  top: 42%;
  width: 44%;
  height: 2px;
  background: rgba(18, 12, 20, 0.35);
  box-shadow: 0 10px 0 rgba(18, 12, 20, 0.28), 0 20px 0 rgba(18, 12, 20, 0.2);
}

.shot-silhouette .shot-art {
  background:
    linear-gradient(180deg, #120c14 0 12%, transparent 12% 88%, #120c14 88%),
    linear-gradient(180deg, #2a1824 0%, #e8b070 70%, #3a2218 100%);
}

.shot-silhouette .shot-art::before,
.shot-silhouette .shot-art::after {
  bottom: 18%;
  width: 16px;
  height: 48px;
  background: #120c12;
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}

.shot-silhouette .shot-art::before {
  left: 36%;
}

.shot-silhouette .shot-art::after {
  left: 48%;
  height: 40px;
}

.shot-square .shot-art {
  background: linear-gradient(180deg, #3a2438 0%, #c45c78 55%, #2a1620 55.2%);
}

.shot-square .shot-art::before {
  left: 50%;
  bottom: 18%;
  width: 28px;
  height: 86px;
  transform: translateX(-50%);
  background: #140c12;
}

.shot-square .shot-art::after {
  left: 50%;
  bottom: calc(18% + 86px);
  width: 42px;
  height: 22px;
  transform: translateX(-50%);
  background: #d4a054;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.shot-roofs .shot-art {
  background: linear-gradient(180deg, #241828 0%, #8a3848 50%, #3a2218 100%);
}

.shot-roofs .shot-art::before {
  left: 8%;
  bottom: 12%;
  width: 84%;
  height: 58%;
  background:
    linear-gradient(135deg, transparent 42%, #1c1010 42% 58%, transparent 58%),
    linear-gradient(160deg, transparent 30%, #140c0c 30% 48%, transparent 48%);
}

.shot-tea .shot-art {
  background:
    radial-gradient(ellipse at 50% 80%, rgba(240, 192, 112, 0.55), transparent 42%),
    linear-gradient(180deg, #1a1014, #3a2218);
}

.shot-tea .shot-art::before {
  inset: 18px 22px 28px;
  border: 1px solid rgba(240, 192, 112, 0.35);
  box-shadow: inset 0 40px 0 rgba(20, 12, 18, 0.35);
}

.shot-lantern .shot-art {
  background: linear-gradient(180deg, #140c18, #2a1628);
}

.shot-lantern .shot-art::before {
  inset: 0;
  background:
    radial-gradient(circle at 22% 40%, #f0c070 0 6%, transparent 16%),
    radial-gradient(circle at 50% 28%, #c45c6a 0 7%, transparent 18%),
    radial-gradient(circle at 78% 44%, #f0c070 0 5%, transparent 14%);
}

.shot-lantern .shot-art::after {
  left: 20%;
  top: 18%;
  width: 2px;
  height: 28%;
  background: rgba(243, 230, 208, 0.25);
  box-shadow: 58px -10px 0 rgba(243, 230, 208, 0.2), 118px 8px 0 rgba(243, 230, 208, 0.18);
}

.rule-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  counter-reset: rule;
}

.rule-list li {
  padding: 18px 18px 16px;
  background: var(--ink);
  border-left: 3px solid var(--rose);
}

.rule-list h3 {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-weight: 400;
}

.rule-list p {
  margin: 0;
  color: var(--mist);
}

.page-banner {
  padding: 4.2rem 7vw 2.6rem;
  background:
    radial-gradient(ellipse 70% 80% at 80% 0%, rgba(240, 192, 112, 0.18), transparent 50%),
    linear-gradient(180deg, #24141c 0%, var(--night) 100%);
  border-bottom: 1px solid var(--line);
}

.page-banner .kicker {
  margin-bottom: 0.4rem;
}

.page-banner h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: 0.1em;
}

.page-banner .lede {
  margin: 0.8rem 0 0;
  max-width: 36rem;
}

.now-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.now-lead .meta,
.now-list .meta {
  margin: 0 0 0.45rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.now-lead h3 {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: 0.06em;
}

.now-lead p {
  margin: 0 0 0.8rem;
  color: var(--mist);
}

.now-lead p:last-child {
  margin-bottom: 0;
}

.now-lead .go {
  color: var(--gold);
  font-size: 0.9rem;
}

.now-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.now-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.now-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.now-list .num {
  font-size: 1.15rem;
}

.now-list strong {
  display: block;
  margin: 0 0 0.25rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
}

.now-list p.excerpt {
  margin: 0;
  color: var(--mist);
}

.now-list a {
  text-decoration: none;
  color: inherit;
}

.now-list a:hover strong,
.now-list a:focus-visible strong {
  color: var(--gold-bright);
}

.site-foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 2.4rem 7vw 3rem;
  border-top: 1px solid var(--line);
  background: #10080e;
}

.foot-zh {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: 0.22em;
  font-size: 1.15rem;
}

.foot-en {
  margin: 0.3rem 0 0;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.foot-meta {
  color: var(--mute);
  font-size: 0.86rem;
  text-align: right;
}

.foot-meta p {
  margin: 0 0 0.35rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  margin: 0;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--night);
  border-radius: 4px;
  font-weight: 600;
  z-index: 30;
}

.toast[hidden] {
  display: none;
}

@media (max-width: 860px) {
  .catbar {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .drawer.is-open {
    display: flex;
  }

  .strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .world-grid,
  .feat-grid,
  .shots,
  .rule-list,
  .now-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 10vh;
  }

  .site-foot {
    flex-direction: column;
  }

  .foot-meta {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .site-nav {
    padding: 10px 14px;
  }

  .strip-inner {
    grid-template-columns: 1fr;
  }

  .world,
  .features,
  .join,
  .production,
  .gallery,
  .rules,
  .info,
  .now {
    padding: 3.6rem 1.2rem;
  }

  .page-banner {
    padding: 3rem 1.2rem 2rem;
  }

  .hero-copy {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}

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

  .dot {
    box-shadow: none;
  }
}
