:root {
  --bg: #070707;
  --ink: #f7f1e7;
  --muted: #aea79b;
  --soft: #171717;
  --soft-2: #202020;
  --line: rgba(214, 170, 74, .22);
  --line-strong: rgba(214, 170, 74, .48);
  --gold: #d7ae52;
  --gold-deep: #7d6028;
  --smoke: #0f1114;
  --red: #8f2424;
  color-scheme: dark;
  font-family: "Noto Serif SC", "Songti SC", "Microsoft YaHei", "PingFang SC", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  width: 100%;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(180deg, #050505 0%, #0a0a0a 38%, #111 100%);
  line-height: 1.82;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(215, 174, 82, .14), transparent 28rem),
    radial-gradient(circle at 8% 42%, rgba(143, 36, 36, .16), transparent 24rem),
    linear-gradient(90deg, rgba(0,0,0,.78), transparent 42%, rgba(0,0,0,.72));
  z-index: -1;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: .55rem .8rem;
  background: var(--gold);
  color: #111;
  z-index: 20;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(215,174,82,.16);
  background: rgba(5, 5, 5, .86);
  backdrop-filter: blur(18px);
}

.nav-wrap,
.section,
.footer-inner,
.breadcrumb {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--ink);
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #16120a;
  background: linear-gradient(135deg, #f1d48b, #b88731);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 32px rgba(215,174,82,.16);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  font-weight: 400;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #111;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .12rem;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

.nav-links a {
  color: #e8e0d3;
  padding: .55rem .78rem;
  border-bottom: 1px solid transparent;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: #fff;
  border-bottom-color: var(--gold);
  text-decoration: none;
}

.hero {
  min-height: 84vh;
  display: grid;
  align-items: center;
  padding: 4.8rem 0 4rem;
  border-bottom: 1px solid rgba(215,174,82,.14);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero-grid > *,
.grid > * { min-width: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--gold);
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: .78rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin: .9rem 0 1.25rem;
  font-size: clamp(3.1rem, 8vw, 7.4rem);
  font-weight: 900;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 850;
}

h3 {
  margin-bottom: .55rem;
  font-size: 1.08rem;
}

p { margin: 0 0 1rem; }

.mobile-break { display: none; }

.lead {
  max-width: 720px;
  color: #d7cdbd;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
}

.hero-actions,
.button-row {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.55rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .72rem 1.05rem;
  border: 1px solid var(--line-strong);
  color: #111;
  background: linear-gradient(135deg, #f1d27c, #b8832e);
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  font-weight: 700;
  text-align: center;
}

.button.secondary {
  color: var(--ink);
  background: rgba(255,255,255,.025);
}

.hero-card {
  position: relative;
  padding: 1.15rem;
  border: 1px solid rgba(215,174,82,.24);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    #101010;
  box-shadow: 0 34px 100px rgba(0,0,0,.46);
}

.hero-card::before {
  content: "OFFICIAL WORK";
  position: absolute;
  right: -2.6rem;
  top: 2rem;
  color: rgba(215,174,82,.36);
  font: 700 .72rem/1 "Microsoft YaHei", sans-serif;
  transform: rotate(90deg);
}

.placeholder-image {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(215,174,82,.3);
  background: #101010;
}

.cover-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 2rem;
  border: 1px solid rgba(215,174,82,.3);
  background: #101010;
  text-align: center;
}

.cover-title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.25;
}

.cover-subtitle,
.muted { color: var(--muted); }

.meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.8rem;
  border: 1px solid rgba(215,174,82,.18);
  background: rgba(215,174,82,.18);
}

.meta-item {
  min-height: 104px;
  padding: 1rem;
  background: rgba(9,9,9,.88);
}

.meta-label {
  color: var(--muted);
  font: 400 .76rem/1.3 "Microsoft YaHei", "PingFang SC", sans-serif;
}

.meta-value {
  display: block;
  margin-top: .42rem;
  color: #fff;
  font-weight: 800;
}

.section { padding: 5rem 0; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.panel,
.notice {
  border: 1px solid rgba(215,174,82,.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    rgba(14,14,14,.9);
}

.panel {
  min-height: 190px;
  padding: 1.35rem;
}

.panel h3 {
  color: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

.panel p,
.notice p,
.content p {
  color: #d4cabc;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

.panel p:last-child,
.notice p:last-child { margin-bottom: 0; }

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

.list-clean li {
  padding: .78rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.list-clean li:last-child { border-bottom: 0; }

.breadcrumb {
  margin-top: 1.25rem;
  color: var(--muted);
  font: .9rem/1.7 "Microsoft YaHei", "PingFang SC", sans-serif;
}

.page-title {
  padding: 4rem 0 2.4rem;
  border-bottom: 1px solid rgba(215,174,82,.14);
}

.content {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 3.5rem 0 4.5rem;
}

.content h2 { margin-top: 2.2rem; }

.content > .placeholder-image {
  max-width: 520px;
  margin: 0 0 2rem;
}

.notice {
  padding: 1.25rem;
  color: #f4d796;
}

.article-list article {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.article-list article:last-child { border-bottom: 0; }

.site-footer {
  border-top: 1px solid rgba(215,174,82,.16);
  background: #050505;
  color: var(--muted);
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 2.1rem 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

code {
  padding: .12rem .35rem;
  background: #1b1b1b;
  color: #f7d892;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    padding: .8rem;
    border: 1px solid var(--line);
    background: #080808;
  }

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

  .hero-grid,
  .grid.two,
  .grid.three,
  .footer-inner { grid-template-columns: 1fr; }

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

  .hero {
    min-height: auto;
    padding-top: 3.2rem;
  }

  .section-head { display: block; }
}

@media (max-width: 540px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  .hero,
  .hero-grid,
  .hero-grid > div,
  .lead,
  .hero-actions,
  .meta-grid,
  .hero-card,
  .placeholder-image {
    max-width: 100%;
  }

  .nav-wrap,
  .section,
  .footer-inner,
  .breadcrumb,
  .content {
    width: calc(100% - 28px);
    max-width: 1180px;
  }

  h1 {
    font-size: 2.35rem;
    word-break: keep-all;
  }

  p,
  .lead,
  .meta-value,
  .button {
    line-break: anywhere;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .lead {
    max-width: 100%;
    font-size: .96rem;
    line-height: 1.9;
    white-space: normal;
  }

  .mobile-break { display: block; }

  .hero-actions .button,
  .button-row .button { width: 100%; }

  .meta-grid { grid-template-columns: 1fr; }
  .hero-card {
    padding: .8rem;
    overflow: hidden;
  }

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