:root {
  --font-main: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  --red: #f0444e;
  --red-deep: #c92532;
  --gold: #f6b925;
  --gold-soft: #fff4c9;
  --teal: #0aa77c;
  --teal-soft: #eafbf6;
  --blue: #3478f6;
  --blue-soft: #eef6ff;
  --rose: #fff0f2;
  --ink: #18213a;
  --text: #3c465e;
  --muted: #687289;
  --line: rgba(36, 47, 78, .12);
  --paper: rgba(255, 255, 255, .92);
  --page: #fbfdff;
  --shadow: 0 22px 55px rgba(47, 72, 124, .1);
  --shadow-strong: 0 28px 70px rgba(209, 64, 80, .14);
  --radius: 8px;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, #fffafa 0%, #fbfdff 34%, #eef9ff 67%, #f0fff8 100%);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.72;
  overflow-x: hidden;
}

body.zjh-nav-open {
  overflow: hidden;
}

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

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

[id] {
  scroll-margin-top: 104px;
}

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

.zjh-header {
  position: fixed;
  inset: 16px 24px auto;
  z-index: 60;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(47, 72, 124, .13);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.zjh-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 52px rgba(47, 72, 124, .16);
}

.zjh-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.zjh-brand-mark {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--red), var(--gold));
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(240, 68, 78, .22);
}

.zjh-brand-text {
  display: grid;
  min-width: 0;
}

.zjh-brand-text strong,
.zjh-brand-text small {
  max-width: 230px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zjh-brand-text strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 950;
  line-height: 1.2;
}

.zjh-brand-text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.zjh-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-left: auto;
}

.zjh-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: var(--radius);
  color: #47516a;
  font-size: 14px;
  font-weight: 850;
}

.zjh-nav a:hover {
  background: var(--rose);
  color: var(--red-deep);
}

.zjh-header-cta,
.zjh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  font-weight: 950;
}

.zjh-header-cta {
  flex: 0 0 auto;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--red), #ff795d);
  color: #fff;
  box-shadow: 0 14px 30px rgba(240, 68, 78, .22);
}

.zjh-menu {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.zjh-menu span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 8px;
  background: currentColor;
}

.zjh-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 126px 72px 50px;
  overflow: hidden;
  color: var(--ink);
  isolation: isolate;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .97) 0%, rgba(255, 249, 226, .92) 48%, rgba(235, 253, 247, .86) 100%);
}

.zjh-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .27;
  filter: brightness(1.25) saturate(1.12);
}

.zjh-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 250, 232, .88) 54%, rgba(239, 255, 249, .72) 100%),
    repeating-linear-gradient(135deg, rgba(246, 185, 37, .18) 0 1px, transparent 1px 22px);
}

.zjh-hero::after {
  content: "";
  position: absolute;
  left: 72px;
  right: 72px;
  bottom: 18px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--teal), var(--blue));
  opacity: .82;
}

.zjh-hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 46px;
}

.zjh-hero-copy {
  max-width: 790px;
  min-width: 0;
}

.zjh-kicker,
.zjh-section-no {
  margin: 0 0 16px;
  color: var(--red-deep);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.35;
  text-transform: uppercase;
}

.zjh-hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font-size: 72px;
  font-weight: 950;
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.zjh-hero-lead {
  max-width: 740px;
  margin: 22px 0 0;
  color: #435069;
  font-size: 21px;
  font-weight: 760;
  line-height: 1.68;
  overflow-wrap: anywhere;
}

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

.zjh-btn {
  min-width: 172px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.zjh-btn-primary {
  background:
    linear-gradient(135deg, var(--red), #ff7a5c);
  color: #fff;
  box-shadow: 0 18px 42px rgba(240, 68, 78, .26);
}

.zjh-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(240, 68, 78, .32);
}

.zjh-btn-ghost {
  border-color: rgba(240, 68, 78, .22);
  background: rgba(255, 255, 255, .72);
  color: var(--red-deep);
}

.zjh-hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.zjh-hero-note span,
.zjh-hero-note time {
  padding: 8px 12px;
  border: 1px solid rgba(246, 185, 37, .32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .68);
  color: #596173;
  font-size: 13px;
  font-weight: 850;
}

.zjh-stats {
  display: grid;
  gap: 10px;
  margin: 0;
}

.zjh-stats div {
  display: grid;
  gap: 3px;
  min-height: 84px;
  padding: 16px 18px;
  border: 1px solid rgba(246, 185, 37, .28);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
}

.zjh-stats div:nth-child(2) {
  border-left-color: var(--red);
}

.zjh-stats div:nth-child(3) {
  border-left-color: var(--teal);
}

.zjh-stats div:nth-child(4) {
  border-left-color: var(--blue);
}

.zjh-stats dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.zjh-stats dd {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  font-weight: 950;
  line-height: 1.2;
}

.zjh-section {
  padding: 84px 72px;
}

.zjh-section-head {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.zjh-section-head-compact {
  display: grid;
  grid-template-columns: minmax(160px, .28fr) minmax(0, 1fr);
  align-items: end;
  gap: 36px;
}

.zjh-section-head h2,
.zjh-rules-copy h2,
.zjh-download-copy h2,
.zjh-table-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  font-weight: 950;
  line-height: 1.14;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.zjh-section-head p:not(.zjh-section-no),
.zjh-rules-copy p,
.zjh-download-copy p,
.zjh-table-copy p {
  max-width: 920px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
}

.zjh-lobby {
  background: #fff;
}

.zjh-feature-grid,
.zjh-mode-list,
.zjh-room-grid,
.zjh-gallery-grid,
.zjh-strategy-grid,
.zjh-guide-list,
.zjh-safety-grid {
  width: min(1180px, 100%);
  margin: 42px auto 0;
  display: grid;
  gap: 16px;
}

.zjh-feature-grid,
.zjh-mode-list,
.zjh-room-grid,
.zjh-gallery-grid,
.zjh-strategy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zjh-guide-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.zjh-feature,
.zjh-mode,
.zjh-rank,
.zjh-rule-flow article,
.zjh-room,
.zjh-gallery-grid figure,
.zjh-strategy-grid article,
.zjh-guide-list article,
.zjh-safety-grid article,
.zjh-faq-list details,
.zjh-version-panel,
.zjh-check-panel,
.zjh-update-panel,
.zjh-term-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.zjh-feature,
.zjh-room,
.zjh-mode {
  min-height: 244px;
  padding: 24px;
  overflow: hidden;
}

.zjh-feature {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 250, 232, .76));
}

.zjh-feature:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 240, 242, .78));
}

.zjh-feature:nth-child(3n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(234, 251, 246, .82));
}

.zjh-feature span,
.zjh-rule-flow span,
.zjh-mode b,
.zjh-room span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.zjh-feature:nth-child(2) span,
.zjh-mode:nth-child(2) b,
.zjh-room:nth-child(2) span {
  background: var(--red);
}

.zjh-feature:nth-child(3) span,
.zjh-mode:nth-child(3) b,
.zjh-room:nth-child(3) span {
  background: var(--blue);
}

.zjh-feature:nth-child(4) span,
.zjh-mode:nth-child(4) b,
.zjh-room:nth-child(4) span {
  background: var(--gold);
  color: #35240a;
}

.zjh-feature:nth-child(5) span,
.zjh-mode:nth-child(5) b,
.zjh-room:nth-child(5) span {
  background: #ff7a5c;
}

.zjh-feature:nth-child(6) span,
.zjh-mode:nth-child(6) b,
.zjh-room:nth-child(6) span {
  background: #28b7d7;
}

.zjh-feature h3,
.zjh-mode h3,
.zjh-rule-flow h3,
.zjh-room h3,
.zjh-strategy-grid h3,
.zjh-guide-list h3,
.zjh-safety-grid h3,
.zjh-version-panel h3,
.zjh-check-panel h3,
.zjh-update-panel h3,
.zjh-term-board h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.24;
}

.zjh-feature p,
.zjh-mode p,
.zjh-rank p,
.zjh-rule-flow p,
.zjh-room p,
.zjh-strategy-grid p,
.zjh-guide-list p,
.zjh-safety-grid p,
.zjh-check-panel li,
.zjh-update-panel p,
.zjh-faq-list p,
.zjh-term-board dd {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 620;
}

.zjh-rooms {
  background:
    linear-gradient(180deg, #fff, #f1fbff);
}

.zjh-room {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(238, 246, 255, .82));
}

.zjh-room::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--teal));
  opacity: .72;
}

.zjh-gallery {
  background:
    linear-gradient(180deg, #f1fbff, #fff8fa);
}

.zjh-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .94);
}

.zjh-gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: brightness(1.08) saturate(1.08);
}

.zjh-gallery-grid figcaption {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 22px;
  border-top: 4px solid var(--gold);
  background:
    linear-gradient(135deg, rgba(255, 244, 201, .52), rgba(255, 255, 255, .94));
}

.zjh-gallery-grid figure:nth-child(2) figcaption {
  border-top-color: var(--red);
  background:
    linear-gradient(135deg, rgba(255, 240, 242, .62), rgba(255, 255, 255, .94));
}

.zjh-gallery-grid figure:nth-child(3) figcaption {
  border-top-color: var(--teal);
  background:
    linear-gradient(135deg, rgba(234, 251, 246, .7), rgba(255, 255, 255, .94));
}

.zjh-gallery-grid strong {
  color: var(--ink);
  font-size: 21px;
  font-weight: 950;
  line-height: 1.25;
}

.zjh-gallery-grid span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 620;
  line-height: 1.68;
}

.zjh-rules {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(360px, 1fr);
  gap: 34px;
  background:
    linear-gradient(180deg, #fff8fa, #f4fbff 48%, #effcf7);
}

.zjh-rules-copy {
  align-self: start;
  position: sticky;
  top: 116px;
}

.zjh-rule-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.zjh-rule-flow article {
  padding: 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: none;
}

.zjh-rule-flow h3 {
  margin-top: 14px;
  font-size: 18px;
}

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

.zjh-rank {
  min-height: 176px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .9)),
    linear-gradient(135deg, rgba(246, 185, 37, .22), rgba(10, 167, 124, .16));
}

.zjh-rank strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
  font-weight: 950;
  line-height: 1.1;
}

.zjh-rank em {
  display: inline-flex;
  margin: 14px 0 12px;
  padding: 5px 9px;
  border-radius: var(--radius);
  background: rgba(240, 68, 78, .1);
  color: var(--red-deep);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.zjh-modes {
  background: #fff;
}

.zjh-mode {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 244, 201, .58));
}

.zjh-table-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(360px, 1fr);
  gap: 32px;
  align-items: center;
  padding: 78px 72px;
  overflow: hidden;
  background:
    linear-gradient(120deg, #fff5d5 0%, #fff 34%, #eafbf6 68%, #eef6ff 100%);
  color: var(--ink);
}

.zjh-table-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(246, 185, 37, .14) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(0deg, rgba(52, 120, 246, .1) 0 1px, transparent 1px 32px);
  opacity: .68;
}

.zjh-table-copy,
.zjh-moment-list {
  position: relative;
  z-index: 1;
}

.zjh-table-copy {
  max-width: 660px;
}

.zjh-moment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.zjh-moment-list article {
  min-height: 154px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
}

.zjh-moment-list span {
  color: var(--red-deep);
  font-size: 13px;
  font-weight: 950;
}

.zjh-moment-list h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 27px;
  font-weight: 950;
  line-height: 1.18;
}

.zjh-strategy {
  background: #fff;
}

.zjh-strategy-grid article {
  min-height: 250px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 240, 242, .52));
}

.zjh-strategy-grid article:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(238, 246, 255, .7));
}

.zjh-strategy-grid article:nth-child(3n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(234, 251, 246, .7));
}

.zjh-strategy-grid h3 {
  margin-top: 0;
}

.zjh-download {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(240px, .58fr) minmax(240px, .58fr) minmax(260px, .7fr);
  gap: 18px;
  align-items: start;
  background:
    linear-gradient(180deg, #f8fbff, #fff);
}

.zjh-download-copy {
  padding-right: 20px;
}

.zjh-download-copy .zjh-btn {
  margin-top: 26px;
}

.zjh-version-panel,
.zjh-check-panel,
.zjh-update-panel {
  min-height: 100%;
  padding: 24px;
  background: rgba(255, 255, 255, .92);
}

.zjh-version-panel h3,
.zjh-check-panel h3,
.zjh-update-panel h3 {
  margin-top: 0;
}

.zjh-version-panel dl {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
}

.zjh-version-panel div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.zjh-version-panel dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.zjh-version-panel dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.zjh-check-panel ul,
.zjh-update-panel ol {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.zjh-check-panel li {
  position: relative;
  padding-left: 22px;
}

.zjh-check-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(246, 185, 37, .18);
}

.zjh-update-panel li {
  padding: 0 0 13px;
  border-bottom: 1px solid var(--line);
}

.zjh-update-panel li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.zjh-update-panel time {
  display: block;
  color: var(--red-deep);
  font-size: 12px;
  font-weight: 950;
}

.zjh-update-panel strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.3;
}

.zjh-update-panel p {
  margin-top: 5px;
  font-size: 14px;
}

.zjh-guide {
  background:
    linear-gradient(180deg, #fff, #f5fff9);
}

.zjh-guide-list article {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, .9);
}

.zjh-guide-list h3 {
  margin-top: 0;
}

.zjh-term-board {
  width: min(1180px, 100%);
  margin: 18px auto 0;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 244, 201, .64), rgba(255, 255, 255, .9) 46%, rgba(234, 251, 246, .74));
}

.zjh-term-board h3 {
  margin-top: 0;
}

.zjh-term-board dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
}

.zjh-term-board div {
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
}

.zjh-term-board dt {
  color: var(--red-deep);
  font-size: 18px;
  font-weight: 950;
}

.zjh-term-board dd {
  margin-top: 8px;
}

.zjh-safety {
  background:
    linear-gradient(180deg, #fbfdff, #fff3f5);
}

.zjh-safety-grid article {
  min-height: 190px;
  padding: 24px;
  background: rgba(255, 255, 255, .9);
}

.zjh-safety-grid h3 {
  margin-top: 0;
}

.zjh-faq {
  background: #fff;
}

.zjh-faq-list {
  width: min(1180px, 100%);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.zjh-faq-list details {
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .94);
}

.zjh-faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
  list-style: none;
}

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

.zjh-faq-list summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-weight: 950;
}

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

.zjh-faq-list p {
  padding: 0 22px 22px;
}

.zjh-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 44px 72px 36px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, #fff4c9, #fff 42%, #eafbf6 100%);
  color: var(--ink);
}

.zjh-footer a {
  color: var(--ink);
  font-size: 28px;
  font-weight: 950;
}

.zjh-footer p {
  max-width: 740px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.zjh-footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .zjh-header {
    inset: 12px 16px auto;
  }

  .zjh-nav a {
    padding: 0 8px;
    font-size: 13px;
  }

  .zjh-hero {
    padding-inline: 42px;
  }

  .zjh-hero h1 {
    font-size: 60px;
  }

  .zjh-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .zjh-section,
  .zjh-table-band,
  .zjh-footer {
    padding-inline: 42px;
  }

  .zjh-rules,
  .zjh-download,
  .zjh-table-band {
    grid-template-columns: 1fr;
  }

  .zjh-rules-copy {
    position: static;
  }

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

@media (max-width: 980px) {
  :root {
    --header-h: 66px;
  }

  .zjh-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px 46px;
    align-items: center;
    min-height: var(--header-h);
    padding: 8px;
    gap: 10px;
  }

  .zjh-brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    font-size: 14px;
  }

  .zjh-brand-text strong,
  .zjh-brand-text small {
    max-width: 160px;
  }

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

  .zjh-header-cta {
    grid-column: 2;
    margin-left: 0;
    width: 46px;
    min-height: 46px;
    padding: 0;
    color: transparent;
    font-size: 0;
  }

  .zjh-header-cta::before {
    content: "↓";
    color: #fff;
    font-size: 20px;
    line-height: 1;
  }

  .zjh-menu {
    grid-column: 3;
    display: block;
    flex: 0 0 auto;
  }

  .zjh-nav {
    position: fixed;
    inset: calc(var(--header-h) + 24px) 16px auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .74);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 24px 54px rgba(47, 72, 124, .18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .zjh-nav-open .zjh-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .zjh-nav a {
    min-height: 44px;
    background: var(--blue-soft);
  }

  .zjh-hero {
    min-height: 74vh;
    padding: 104px 18px 34px;
  }

  .zjh-hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 245, 218, .88)),
      repeating-linear-gradient(135deg, rgba(246, 185, 37, .16) 0 1px, transparent 1px 22px);
  }

  .zjh-kicker,
  .zjh-section-no {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .zjh-hero h1 {
    font-size: 42px;
  }

  .zjh-hero-lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .zjh-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .zjh-btn {
    width: 100%;
  }

  .zjh-hero-note {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .zjh-hero-note span,
  .zjh-hero-note time {
    text-align: center;
  }

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

  .zjh-stats div {
    min-height: 72px;
    padding: 12px;
  }

  .zjh-stats dd {
    font-size: 21px;
  }

  .zjh-hero::after {
    left: 18px;
    right: 18px;
  }

  .zjh-section,
  .zjh-table-band,
  .zjh-footer {
    padding-inline: 18px;
  }

  .zjh-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .zjh-section-head-compact {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .zjh-section-head h2,
  .zjh-rules-copy h2,
  .zjh-download-copy h2,
  .zjh-table-copy h2 {
    font-size: 32px;
  }

  .zjh-section-head p:not(.zjh-section-no),
  .zjh-rules-copy p,
  .zjh-download-copy p,
  .zjh-table-copy p {
    font-size: 15px;
  }

  .zjh-feature-grid,
  .zjh-mode-list,
  .zjh-room-grid,
  .zjh-gallery-grid,
  .zjh-strategy-grid,
  .zjh-guide-list,
  .zjh-rank-grid,
  .zjh-rule-flow,
  .zjh-faq-list,
  .zjh-term-board dl,
  .zjh-safety-grid,
  .zjh-moment-list {
    grid-template-columns: 1fr;
  }

  .zjh-feature,
  .zjh-room,
  .zjh-mode,
  .zjh-strategy-grid article,
  .zjh-guide-list article,
  .zjh-safety-grid article {
    min-height: auto;
    padding: 22px;
  }

  .zjh-feature h3,
  .zjh-mode h3,
  .zjh-room h3 {
    margin-top: 22px;
  }

  .zjh-table-band {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .zjh-moment-list h3 {
    font-size: 24px;
  }

  .zjh-download-copy {
    padding-right: 0;
  }

  .zjh-version-panel,
  .zjh-check-panel,
  .zjh-update-panel,
  .zjh-term-board {
    padding: 22px;
  }

  .zjh-footer {
    display: grid;
    align-items: start;
  }

  .zjh-footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .zjh-header {
    inset: 8px 10px auto;
  }

  .zjh-brand-text strong,
  .zjh-brand-text small {
    max-width: 128px;
  }

  .zjh-hero {
    min-height: 74vh;
    padding-inline: 14px;
  }

  .zjh-hero h1 {
    font-size: 36px;
  }

  .zjh-stats dd {
    font-size: 19px;
  }

  .zjh-section,
  .zjh-table-band,
  .zjh-footer {
    padding-inline: 14px;
  }

  .zjh-section-head h2,
  .zjh-rules-copy h2,
  .zjh-download-copy h2,
  .zjh-table-copy h2 {
    font-size: 28px;
  }

  .zjh-version-panel div {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 8px;
  }
}
