:root {
  --bg: #f5f8fb;
  --surface: #ffffff;
  --surface-soft: #edf5f9;
  --ink: #17212b;
  --muted: #5f6e7a;
  --subtle: #8a98a6;
  --line: #d9e5ec;
  --cyan: #18aee8;
  --cyan-dark: #087aa8;
  --green: #45b36b;
  --yellow: #f2b84b;
  --red: #e45d5d;
  --wood: #b88455;
  --stone: #87919b;
  --grass: #67b86d;
  --night: #1d2b45;
  --paper: #fff8e8;
  --shadow: 0 20px 50px rgba(18, 48, 68, .12);
  --shadow-soft: 0 12px 28px rgba(18, 48, 68, .08);
  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --ease-spring: cubic-bezier(.16, 1, .3, 1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(23, 33, 43, .035) 1px, transparent 1px),
    linear-gradient(rgba(23, 33, 43, .03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(213, 235, 245, .72), transparent 420px),
    var(--bg);
  background-size: 34px 34px, 34px 34px, auto, auto;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", system-ui, sans-serif;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.site-shell::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 18%, rgba(24, 174, 232, .12), transparent 24%),
    radial-gradient(circle at 84% 34%, rgba(103, 184, 109, .13), transparent 22%);
  content: "";
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 44px rgba(19, 48, 66, .1);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: background .28s var(--ease-out), box-shadow .28s var(--ease-out), top .28s var(--ease-out);
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 34px rgba(19, 48, 66, .14);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(24, 174, 232, .32);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .18), transparent 48%),
    linear-gradient(135deg, var(--cyan), #57d4a3);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(24, 174, 232, .26);
}

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

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.site-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 7px;
  color: #334350;
  font-size: 14px;
  transition: color .2s var(--ease-out), background .2s var(--ease-out), transform .2s var(--ease-out);
}

.site-nav a:hover {
  color: var(--cyan-dark);
  background: rgba(24, 174, 232, .1);
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"] {
  color: var(--cyan-dark);
  background: rgba(24, 174, 232, .12);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 0;
  border-radius: 7px;
  background: var(--surface-soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .2s var(--ease-out), opacity .2s var(--ease-out);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  align-items: center;
  padding: 128px max(32px, calc((100vw - 1180px) / 2)) 78px;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #d6eef8;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245, 248, 251, .96) 0%, rgba(245, 248, 251, .78) 38%, rgba(245, 248, 251, .22) 70%, rgba(245, 248, 251, .1) 100%),
    linear-gradient(180deg, rgba(245, 248, 251, .02), var(--bg) 96%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(320px, 420px);
  gap: 72px;
  align-items: center;
  width: min(1180px, 100%);
}

.hero-content {
  position: relative;
  width: min(660px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead {
  max-width: 590px;
  margin: 22px 0 0;
  color: #384b58;
  font-size: 18px;
  line-height: 1.8;
}

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

.primary-action,
.ghost-action,
.join-address button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s var(--ease-out);
}

.primary-action {
  gap: 14px;
  padding: 0 18px;
  border: 0;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .16), transparent),
    linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  box-shadow: 0 16px 34px rgba(8, 122, 168, .25);
}

.primary-action strong {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, .3);
  font-size: 14px;
}

.ghost-action {
  padding: 0 18px;
  border: 1px solid rgba(23, 33, 43, .12);
  color: #1d3443;
  background: rgba(255, 255, 255, .72);
}

.server-ticket {
  position: relative;
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(239, 248, 242, .86)),
    linear-gradient(90deg, rgba(184, 132, 85, .08) 1px, transparent 1px),
    linear-gradient(rgba(184, 132, 85, .08) 1px, transparent 1px);
  background-size: auto, 18px 18px, 18px 18px;
  box-shadow: 0 28px 80px rgba(20, 56, 70, .18);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.server-ticket::before {
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(8, 122, 168, .22);
  border-radius: 7px;
  content: "";
  pointer-events: none;
}

.ticket-topline,
.ticket-count,
.ticket-meta,
.ticket-tags {
  position: relative;
  z-index: 1;
}

.ticket-topline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #1d5c37;
  background: rgba(69, 179, 107, .14);
  font-size: 13px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(69, 179, 107, .14);
}

.ticket-count {
  margin-top: 28px;
}

.ticket-count span {
  color: var(--muted);
  font-size: 14px;
}

.ticket-count strong {
  display: block;
  margin-top: 8px;
  color: #123242;
  font-size: clamp(48px, 8vw, 76px);
  line-height: .9;
}

.ticket-count small {
  margin: 0 6px;
  color: var(--subtle);
  font-size: .46em;
}

.ticket-meta {
  display: grid;
  gap: 1px;
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(8, 122, 168, .14);
  border-radius: var(--radius);
  background: rgba(8, 122, 168, .14);
}

.ticket-meta div {
  padding: 14px;
  background: rgba(255, 255, 255, .68);
}

.ticket-meta dt,
.ticket-meta dd {
  margin: 0;
}

.ticket-meta dt {
  color: var(--subtle);
  font-size: 12px;
}

.ticket-meta dd {
  margin-top: 6px;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.ticket-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.ticket-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(8, 122, 168, .16);
  border-radius: 999px;
  color: #2a5366;
  background: rgba(255, 255, 255, .64);
  font-size: 12px;
  font-weight: 700;
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: -58px;
  display: inline-flex;
  max-width: 520px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(242, 184, 75, .34);
  border-radius: var(--radius);
  background: rgba(255, 250, 232, .88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.hero-note span {
  flex: 0 0 auto;
  color: #8c5c08;
  font-size: 12px;
  font-weight: 800;
}

.hero-note strong {
  color: #2e3942;
  font-size: 14px;
}

.primary-action:hover,
.ghost-action:hover,
.join-address button:hover {
  transform: translateY(-2px);
}

.primary-action:hover {
  box-shadow: 0 20px 42px rgba(8, 122, 168, .32);
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(620px, 100%);
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.status-strip div {
  padding: 18px;
  background: rgba(255, 255, 255, .62);
}

.status-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.status-strip strong {
  font-size: 18px;
}

.section-block,
.section-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-block {
  padding: 86px 0;
}

.texture-section {
  position: relative;
}

.texture-section::before {
  position: absolute;
  inset: 54px -22px auto auto;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(135, 145, 155, .14);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(135, 145, 155, .12) 1px, transparent 1px),
    linear-gradient(rgba(135, 145, 155, .1) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  opacity: .55;
  transform: rotate(8deg);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-heading h2,
.band-copy h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.band-copy p {
  color: var(--muted);
  line-height: 1.8;
}

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

.info-card,
.feature-card,
.news-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .78)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.info-card {
  position: relative;
  padding: 22px;
  overflow: hidden;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}

.info-card::before,
.feature-card::before,
.news-card::before {
  position: absolute;
  inset: 0;
  opacity: .36;
  content: "";
  pointer-events: none;
}

.material-1::before {
  background:
    linear-gradient(90deg, rgba(184, 132, 85, .12) 1px, transparent 1px),
    linear-gradient(rgba(184, 132, 85, .1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.material-2::before {
  background:
    linear-gradient(135deg, rgba(103, 184, 109, .16), transparent 42%),
    linear-gradient(90deg, rgba(103, 184, 109, .1) 1px, transparent 1px);
  background-size: auto, 16px 16px;
}

.material-3::before {
  background:
    linear-gradient(90deg, rgba(135, 145, 155, .12) 1px, transparent 1px),
    linear-gradient(rgba(135, 145, 155, .1) 1px, transparent 1px);
  background-size: 18px 18px;
}

.material-4::before {
  background:
    linear-gradient(135deg, rgba(24, 174, 232, .16), transparent 46%),
    linear-gradient(90deg, rgba(24, 174, 232, .09) 1px, transparent 1px);
  background-size: auto, 18px 18px;
}

.info-card:hover,
.feature-card:hover,
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(18, 48, 68, .12);
}

.info-card span,
.news-card time {
  color: var(--subtle);
  font-size: 13px;
}

.info-card strong {
  display: block;
  margin-top: 12px;
  font-size: 26px;
}

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

.info-card span,
.info-card strong,
.info-card p,
.feature-card > *,
.news-card > * {
  position: relative;
  z-index: 1;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 44px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 106px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px;
  overflow: hidden;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}

.feature-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(24, 174, 232, .16);
  border-radius: 24px;
  content: "";
  transform: rotate(12deg);
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .18), transparent),
    linear-gradient(135deg, var(--cyan), #57d4a3);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(24, 174, 232, .18);
}

.feature-card h3,
.news-card h3,
.faq-item h3 {
  margin: 0;
  font-size: 19px;
}

.feature-card p,
.news-card p,
.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-band {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(24, 174, 232, .18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(24, 174, 232, .12), rgba(87, 212, 163, .1)),
    linear-gradient(90deg, rgba(8, 122, 168, .06) 1px, transparent 1px),
    linear-gradient(rgba(8, 122, 168, .05) 1px, transparent 1px),
    var(--surface);
  background-size: auto, 22px 22px, 22px 22px, auto;
  box-shadow: var(--shadow);
}

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

.band-stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
}

.band-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 26px;
}

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

.scenery-section {
  position: relative;
}

.scenery-section::before {
  position: absolute;
  top: 116px;
  right: max(-74px, calc((100vw - 1180px) / -2));
  width: 38vw;
  min-width: 320px;
  height: 410px;
  border: 1px solid rgba(29, 43, 69, .12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(29, 43, 69, .08) 1px, transparent 1px),
    linear-gradient(rgba(29, 43, 69, .07) 1px, transparent 1px),
    linear-gradient(135deg, rgba(103, 184, 109, .1), rgba(24, 174, 232, .06));
  background-size: 26px 26px, 26px 26px, auto;
  content: "";
  opacity: .7;
  transform: rotate(-2deg);
}

.scenery-heading {
  position: relative;
  z-index: 1;
}

.scenery-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(280px, .86fr);
  grid-template-areas:
    "main lake"
    "main night";
  gap: 16px;
}

.scenery-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: var(--radius);
  background: #dbe8ed;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.scenery-card-1 {
  grid-area: main;
  min-height: 560px;
}

.scenery-card-2 {
  grid-area: lake;
}

.scenery-card-3 {
  grid-area: night;
}

.scenery-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scenery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .7s var(--ease-spring), filter .7s var(--ease-spring);
}

.scenery-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 28%, rgba(14, 22, 31, .78)),
    linear-gradient(90deg, rgba(14, 22, 31, .28), transparent 54%);
  content: "";
}

.scenery-card:hover .scenery-image img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.08);
}

.scenery-body {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  color: #fff;
  transform: translateY(0);
  transition: transform .32s var(--ease-out);
}

.scenery-card:hover .scenery-body {
  transform: translateY(-4px);
}

.scenery-body span {
  display: inline-grid;
  width: 36px;
  height: 28px;
  place-items: center;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 7px;
  background: rgba(255, 255, 255, .18);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.scenery-body h3 {
  margin: 0;
  font-size: clamp(21px, 3vw, 34px);
  line-height: 1.08;
}

.scenery-body p {
  max-width: 520px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .82);
  line-height: 1.7;
}

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

.news-card {
  position: relative;
  padding: 22px;
  overflow: hidden;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}

.news-card time {
  display: block;
  margin-bottom: 14px;
}

.join-panel {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.join-address {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 240px;
  padding: 26px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 122, 168, .92), rgba(20, 160, 128, .9)),
    #087aa8;
}

.join-address span {
  color: rgba(255, 255, 255, .76);
}

.join-address strong {
  overflow-wrap: anywhere;
  font-size: clamp(25px, 4vw, 42px);
  line-height: 1.05;
}

.join-address button {
  width: fit-content;
  min-width: 116px;
  border: 0;
  color: var(--cyan-dark);
  background: #fff;
}

.join-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.join-steps li {
  position: relative;
  padding: 18px 18px 18px 62px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  counter-increment: step;
}

.join-steps li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--cyan);
  content: counter(step);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(24, 174, 232, .24);
}

.join-steps strong {
  display: block;
}

.join-steps p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.community-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(184, 132, 85, .22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 248, 232, .96), rgba(236, 248, 241, .9)),
    linear-gradient(90deg, rgba(184, 132, 85, .1) 1px, transparent 1px),
    linear-gradient(rgba(184, 132, 85, .08) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
  box-shadow: var(--shadow);
}

.community-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 1.08;
}

.community-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.community-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.community-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(8, 122, 168, .16);
  border-radius: 7px;
  color: #1f566a;
  background: rgba(255, 255, 255, .68);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(18, 48, 68, .06);
  transition: transform .2s var(--ease-out), background .2s var(--ease-out), box-shadow .2s var(--ease-out);
}

.community-links a:hover {
  background: #fff;
  box-shadow: 0 14px 28px rgba(18, 48, 68, .11);
  transform: translateY(-2px);
}

.qr-card {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .66)),
    var(--paper);
  box-shadow: 0 18px 46px rgba(80, 65, 42, .14);
}

.qr-card::before,
.qr-card::after {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 132, 85, .26);
  content: "";
}

.qr-card::before {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}

.qr-card::after {
  right: 10px;
  bottom: 10px;
  border-top: 0;
  border-left: 0;
}

.qr-frame {
  position: relative;
  display: grid;
  width: min(220px, 100%);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(8, 122, 168, .34);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(8, 122, 168, .07) 1px, transparent 1px),
    linear-gradient(rgba(8, 122, 168, .07) 1px, transparent 1px),
    #f7fbfc;
  background-size: 18px 18px, 18px 18px, auto;
  box-shadow: inset 0 0 0 1px rgba(23, 33, 43, .12);
}

.qr-placeholder {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(8, 122, 168, .18);
  border-radius: 7px;
  color: var(--cyan-dark);
  background: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 900;
}

.qr-frame.has-image {
  border: 8px solid #fff;
  background: #fff;
}

.qr-frame.has-image .qr-placeholder {
  display: none;
}

.qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qr-card strong {
  margin-top: 14px;
  font-size: 18px;
}

.qr-card p {
  max-width: 230px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  text-align: center;
}

.qr-card code {
  color: var(--cyan-dark);
  font-family: Consolas, "Microsoft YaHei", monospace;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 22px;
}

.subpage-header {
  top: 10px;
}

.subpage-main {
  padding-top: 48px;
}

.page-hero {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 52px auto 0;
  padding: 88px 34px 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(239, 248, 242, .76)),
    linear-gradient(90deg, rgba(8, 122, 168, .07) 1px, transparent 1px),
    linear-gradient(rgba(8, 122, 168, .06) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
  box-shadow: var(--shadow);
}

.page-hero::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(24, 174, 232, .16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(24, 174, 232, .12) 1px, transparent 1px),
    linear-gradient(rgba(24, 174, 232, .1) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  transform: rotate(11deg);
}

.crumb-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin-bottom: 26px;
  padding: 0 12px;
  border: 1px solid rgba(8, 122, 168, .18);
  border-radius: 7px;
  color: var(--cyan-dark);
  background: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 800;
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

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

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

.content-panel,
.route-card,
.support-card,
.support-tier {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .78)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-panel,
.route-card,
.support-tier {
  padding: 24px;
}

.content-panel::before,
.route-card::before,
.support-tier::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(135, 145, 155, .1) 1px, transparent 1px),
    linear-gradient(rgba(135, 145, 155, .08) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  opacity: .42;
  pointer-events: none;
}

.panel-kicker,
.route-card span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  min-width: 38px;
  min-height: 30px;
  place-items: center;
  margin-bottom: 18px;
  padding: 0 10px;
  border: 1px solid rgba(8, 122, 168, .18);
  border-radius: 7px;
  color: var(--cyan-dark);
  background: rgba(237, 245, 249, .78);
  font-size: 12px;
  font-weight: 900;
}

.content-panel h2,
.route-card h2,
.support-card h2,
.support-tier h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.18;
}

.rule-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.rule-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.75;
}

.rule-list li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--green);
  content: "";
  transform: rotate(45deg);
}

.world-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  align-items: stretch;
}

.map-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: var(--radius);
  background: #dbe8ed;
  box-shadow: var(--shadow);
}

.map-stage::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 19, 28, .04), rgba(7, 19, 28, .28)),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
  content: "";
  pointer-events: none;
}

.map-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
}

.map-pin::before {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(228, 93, 93, .22), 0 12px 24px rgba(23, 33, 43, .22);
  content: "";
}

.map-pin span {
  margin-top: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(23, 33, 43, .78);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.pin-spawn {
  top: 44%;
  left: 52%;
}

.pin-market {
  top: 62%;
  left: 70%;
}

.pin-harbor {
  top: 72%;
  left: 34%;
}

.map-note {
  padding: 24px;
}

.coordinate-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  margin: 22px 0 0;
  overflow: hidden;
  border: 1px solid rgba(8, 122, 168, .14);
  border-radius: var(--radius);
  background: rgba(8, 122, 168, .14);
}

.coordinate-list div {
  padding: 16px;
  background: rgba(255, 255, 255, .72);
}

.coordinate-list dt,
.coordinate-list dd {
  margin: 0;
}

.coordinate-list dt {
  color: var(--subtle);
  font-size: 12px;
}

.coordinate-list dd {
  margin-top: 6px;
  font-weight: 900;
}

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

.route-card p,
.support-card p,
.support-tier p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.support-card-main {
  grid-column: span 3;
  padding: 34px;
  border-color: rgba(24, 174, 232, .22);
  background:
    linear-gradient(135deg, rgba(24, 174, 232, .12), rgba(87, 212, 163, .1)),
    linear-gradient(90deg, rgba(8, 122, 168, .06) 1px, transparent 1px),
    linear-gradient(rgba(8, 122, 168, .05) 1px, transparent 1px),
    var(--surface);
  background-size: auto, 22px 22px, 22px 22px, auto;
}

.support-meter {
  position: relative;
  z-index: 1;
  height: 14px;
  margin: 24px 0 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(8, 122, 168, .12);
}

.support-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), #57d4a3);
}

.support-card strong,
.support-tier strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 14px;
  color: #254253;
  font-size: 17px;
}

.site-footer {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 30px auto 0;
  padding: 28px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer code {
  color: var(--cyan-dark);
  font-family: Consolas, "Microsoft YaHei", monospace;
}

.site-footer a {
  color: var(--cyan-dark);
  font-weight: 700;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  padding: 12px 16px;
  border-radius: var(--radius);
  color: #fff;
  background: #17212b;
  box-shadow: 0 14px 34px rgba(23, 33, 43, .24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .2s ease, transform .2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .68s var(--ease-out), transform .68s var(--ease-out);
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-18px, -8px, 0);
  }
}

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

@media (max-width: 920px) {
  .site-header {
    top: 10px;
    height: 58px;
    padding: 0 10px 0 12px;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 42px rgba(19, 48, 66, .16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(.98);
    transform-origin: top center;
    transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
    backdrop-filter: blur(18px);
  }

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

  .site-nav a {
    min-height: 44px;
    justify-content: center;
    padding: 0 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .server-ticket {
    align-self: auto;
  }

  .hero-note {
    position: static;
    display: flex;
    max-width: none;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(245, 248, 251, .76), rgba(245, 248, 251, .94) 58%, var(--bg) 100%);
  }

  .overview-grid,
  .news-grid,
  .scenery-grid,
  .page-grid,
  .world-layout,
  .route-grid,
  .support-layout,
  .split-section,
  .section-band,
  .join-panel,
  .community-panel {
    grid-template-columns: 1fr;
  }

  .scenery-grid {
    grid-template-areas:
      "main"
      "lake"
      "night";
  }

  .scenery-card,
  .scenery-card-1 {
    min-height: 340px;
  }

  .sticky-heading {
    position: static;
  }

  .support-card-main {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 56px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 7px;
  }

  .brand strong {
    max-width: min(46vw, 190px);
    font-size: 14px;
  }

  .brand small {
    max-width: min(46vw, 190px);
    font-size: 11px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .primary-action,
  .ghost-action {
    width: 100%;
  }

  .primary-action {
    flex-direction: column;
    gap: 6px;
    min-height: 68px;
  }

  .primary-action strong {
    padding-left: 0;
    border-left: 0;
  }

  .status-strip,
  .band-stats {
    grid-template-columns: 1fr;
  }

  .section-block {
    padding: 58px 0;
  }

  .subpage-main {
    padding-top: 28px;
  }

  .page-hero {
    margin-top: 34px;
    padding: 74px 22px 30px;
  }

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

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

  .map-stage {
    min-height: 340px;
  }

  .section-band {
    padding: 22px;
  }

  .scenery-section::before {
    display: none;
  }

  .scenery-card,
  .scenery-card-1 {
    min-height: 300px;
  }

  .scenery-body {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .community-panel {
    padding: 22px;
  }

  .community-links a {
    width: 100%;
    justify-content: center;
  }

  .qr-card {
    padding: 16px;
  }

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

  .site-footer {
    display: grid;
  }
}
