:root {
  --bg: #2d241e;
  --panel: #1c1613;
  --deep: #0f0b09;
  --text: #f5ebe0;
  --muted: #d1c7bd;
  --green: #889c54;
  --green-dark: #6a8043;
  --teal: #00a896;
  --gold: #d4af37;
  --gold-soft: #f0d77a;
  --line: rgba(212, 175, 55, .28);
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--muted);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.72;
  letter-spacing: 0;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(212, 175, 55, .035) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(0deg, rgba(0, 168, 150, .03) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--bg);
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.18;
  font-weight: 800;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.2rem, 5.6vw, 4.9rem);
  color: var(--gold-soft);
  background: linear-gradient(135deg, #f5ebe0 0%, #f0d77a 42%, #00a896 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 5px 28px rgba(0, 0, 0, .65);
}

h2 {
  font-size: clamp(1.45rem, 2.45vw, 2.35rem);
  color: var(--gold-soft);
}

h3 {
  font-size: 1.18rem;
}

.icon {
  flex: 0 0 auto;
  width: 1.05em;
  height: 1.05em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 1000;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: #20150b;
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  border-bottom: 1px solid rgba(245, 235, 224, .08);
  background: rgba(15, 11, 9, .74);
  backdrop-filter: blur(14px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(15, 11, 9, .94);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .32);
}

.nav-wrap {
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  min-width: 0;
  color: var(--text);
  font-weight: 900;
}

.brand img {
  width: 40px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, .48);
}

.brand span {
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: .16rem;
  color: var(--muted);
  font-size: .95rem;
}

.main-nav a {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  padding: .48rem .72rem;
  border-radius: 999px;
  transition: color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.main-nav a::before {
  content: "";
  position: absolute;
  inset: .16rem;
  z-index: -1;
  border-radius: 999px;
  background: rgba(136, 156, 84, .18);
  border: 1px solid rgba(0, 168, 150, .24);
  transform: scale(.78);
  opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
}

.main-nav a:hover::before,
.main-nav a:focus-visible::before,
.main-nav a.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.main-nav .nav-download {
  margin-left: .35rem;
  color: #20150b;
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 8px 22px rgba(212, 175, 55, .2);
  font-weight: 900;
}

.main-nav .nav-download::before {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .3);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, .32);
  border-radius: 50%;
  background: rgba(28, 22, 19, .9);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

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

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

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

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px 0 48px;
  border-bottom: 1px solid var(--line);
}

.hero-bg,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
  filter: saturate(.95) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 11, 9, .9), rgba(15, 11, 9, .56) 42%, rgba(15, 11, 9, .76)),
    linear-gradient(0deg, rgba(15, 11, 9, .82), transparent 46%);
}

.hero-content {
  position: relative;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  color: var(--gold-soft);
  font-size: .82rem;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-lead {
  max-width: 720px;
  margin: 1.2rem 0 1.5rem;
  color: var(--text);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
}

.hero-actions,
.download-inner {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .48rem;
  min-height: 48px;
  padding: .82rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -140%;
  width: 80%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
  transform: skewX(-18deg);
  transition: left .45s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:hover::after,
.btn:focus-visible::after {
  left: 140%;
}

.btn-primary {
  color: #20150b;
  background: linear-gradient(135deg, var(--gold), #f2d86b);
  box-shadow: 0 15px 34px rgba(212, 175, 55, .22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 42px rgba(212, 175, 55, .34);
}

.btn-ghost {
  color: var(--text);
  background: rgba(28, 22, 19, .72);
  border-color: rgba(245, 235, 224, .18);
}

.btn-large {
  min-height: 64px;
  padding-inline: 1.8rem;
  font-size: 1.05rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  max-width: 780px;
  margin: 2.2rem 0 0;
}

.hero-facts div {
  padding: .92rem;
  border: 1px solid rgba(212, 175, 55, .25);
  border-radius: 8px;
  background: rgba(28, 22, 19, .72);
}

.hero-facts dt {
  color: var(--green);
  font-size: .82rem;
  font-weight: 900;
}

.hero-facts dd {
  margin: .18rem 0 0;
  color: var(--text);
  font-weight: 800;
}

.hero-hud {
  position: relative;
  width: min(100%, 780px);
  margin-top: .75rem;
  padding: .9rem;
  border: 1px solid rgba(0, 168, 150, .28);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(15, 11, 9, .9), rgba(28, 22, 19, .78)),
    repeating-linear-gradient(90deg, rgba(212, 175, 55, .08) 0 1px, transparent 1px 18px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .34), inset 0 0 0 1px rgba(245, 235, 224, .04);
}

.hero-hud::before,
.hero-hud::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, .42);
  background: rgba(212, 175, 55, .12);
  transform: translateY(-50%);
}

.hero-hud::before {
  left: -7px;
  border-radius: 8px 0 0 8px;
}

.hero-hud::after {
  right: -7px;
  border-radius: 0 8px 8px 0;
}

.hud-title {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .75rem;
  color: var(--gold-soft);
  font-size: .82rem;
  font-weight: 900;
}

.hud-title::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(0, 168, 150, .12);
}

.hud-bars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .65rem;
}

.hud-bars span {
  display: grid;
  gap: .32rem;
}

.hud-bars b {
  color: var(--text);
  font-size: .78rem;
}

.hud-bars i {
  position: relative;
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(245, 235, 224, .12);
}

.hud-bars i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--gold));
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.hero,
.section,
.download-band {
  scroll-margin-top: 96px;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .78fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.intro-band,
.guide-band,
.faq-band {
  background: linear-gradient(180deg, rgba(28, 22, 19, .78), rgba(15, 11, 9, .7));
}

.section-copy h2,
.section-head h2 {
  margin: .45rem 0 1rem;
}

.section-copy p,
.section-head p {
  max-width: 820px;
}

.check-list {
  display: grid;
  gap: .65rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72rem;
  width: .58rem;
  height: .58rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 168, 150, .12);
}

.media-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, .3);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.media-frame img {
  width: 100%;
  transition: transform .35s ease, filter .35s ease;
}

.media-frame:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, .55);
  box-shadow: 0 28px 76px rgba(0, 0, 0, .5), 0 0 0 1px rgba(0, 168, 150, .18);
}

.media-frame:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

figcaption {
  padding: .85rem 1rem;
  color: var(--muted);
  font-size: .92rem;
}

.section-head {
  margin-bottom: clamp(26px, 4vw, 42px);
}

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

.temple-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
  margin: 0 0 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(212, 175, 55, .22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(15, 11, 9, .88), rgba(28, 22, 19, .86)),
    repeating-linear-gradient(135deg, rgba(212, 175, 55, .05) 0 2px, transparent 2px 16px);
}

.temple-route::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 43px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .5), rgba(0, 168, 150, .45), transparent);
}

.temple-route div {
  position: relative;
  display: grid;
  gap: .35rem;
  min-height: 154px;
  padding: .95rem;
  border: 1px solid rgba(245, 235, 224, .08);
  border-radius: 8px;
  background: rgba(45, 36, 30, .62);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.temple-route div:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, .4);
  background: rgba(45, 36, 30, .82);
}

.route-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f0b09;
  border: 1px solid rgba(212, 175, 55, .55);
  color: var(--gold-soft);
  font-weight: 900;
  box-shadow: 0 0 0 6px rgba(136, 156, 84, .1);
  transition: transform .22s ease, box-shadow .22s ease;
}

.temple-route strong {
  color: var(--text);
  font-size: 1.02rem;
}

.temple-route p {
  margin: 0;
  font-size: .92rem;
}

.content-card,
.feature-card,
.guide-panel,
.timeline li,
.faq-list details {
  border: 1px solid rgba(212, 175, 55, .2);
  border-radius: 8px;
  background: rgba(28, 22, 19, .9);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .24);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.content-card {
  overflow: hidden;
}

.content-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .34s ease, filter .34s ease;
}

.content-card div,
.feature-card,
.guide-panel {
  padding: 1.2rem;
}

.content-card:hover,
.feature-card:hover,
.guide-panel:hover,
.timeline li:hover,
.faq-list details:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, .48);
  background: rgba(31, 24, 20, .96);
  box-shadow: 0 24px 62px rgba(0, 0, 0, .36), 0 0 0 1px rgba(0, 168, 150, .13);
}

.content-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.05);
}

.content-card h3,
.feature-card h3,
.guide-panel h3 {
  margin-bottom: .55rem;
  transition: color .22s ease;
}

.content-card:hover h3,
.feature-card:hover h3,
.guide-panel:hover h3,
.timeline li:hover h3 {
  color: var(--gold-soft);
}

.content-card p,
.feature-card p,
.guide-panel p,
.timeline p,
.faq-list p {
  margin-bottom: 0;
}

.guide-layout,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.guide-panel {
  position: relative;
  min-height: 238px;
  overflow: hidden;
}

.guide-panel::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(212, 175, 55, .18);
  transform: rotate(45deg);
}

.step-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(136, 156, 84, .22);
  border: 1px solid rgba(0, 168, 150, .3);
  color: var(--gold-soft);
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease;
}

.guide-panel:hover .step-mark,
.temple-route div:hover .route-icon {
  transform: scale(1.06);
  box-shadow: 0 0 0 8px rgba(212, 175, 55, .12), 0 0 24px rgba(0, 168, 150, .18);
}

.inventory-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.1rem;
  padding: .85rem;
  border: 1px solid rgba(0, 168, 150, .24);
  border-radius: 8px;
  background: rgba(15, 11, 9, .72);
}

.inventory-strip span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .48rem .78rem .48rem 2.25rem;
  border: 1px solid rgba(212, 175, 55, .26);
  border-radius: 999px;
  background: rgba(28, 22, 19, .92);
  color: var(--text);
  font-size: .9rem;
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}

.inventory-strip span::before {
  content: "";
  position: absolute;
  left: .58rem;
  width: 1.08rem;
  height: 1.08rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .1);
}

.inventory-strip span:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 168, 150, .5);
  background: rgba(45, 36, 30, .96);
  color: var(--gold-soft);
}

.feature-band {
  background: linear-gradient(180deg, rgba(45, 36, 30, .98), rgba(15, 11, 9, .86));
}

.feature-card {
  min-height: 172px;
}

.gallery {
  position: relative;
  margin-top: clamp(28px, 5vw, 56px);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, .25);
  border-radius: 8px;
  background: var(--deep);
  transition: border-color .24s ease, box-shadow .24s ease;
}

.gallery:hover {
  border-color: rgba(0, 168, 150, .46);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .34), 0 0 0 1px rgba(212, 175, 55, .16);
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery figure {
  margin: 0;
  scroll-snap-align: start;
}

.gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 235, 224, .25);
  border-radius: 50%;
  background: rgba(15, 11, 9, .78);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.gallery-btn::before {
  content: "";
  position: absolute;
  inset: 15px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
}

.gallery-btn.prev {
  left: 14px;
}

.gallery-btn:hover,
.gallery-btn:focus-visible {
  background: rgba(212, 175, 55, .22);
  border-color: rgba(212, 175, 55, .58);
  transform: translateY(-50%) scale(1.08);
}

.gallery-btn.prev::before {
  transform: rotate(-135deg);
}

.gallery-btn.next {
  right: 14px;
}

.gallery-btn.next::before {
  transform: rotate(45deg);
}

.updates-layout {
  align-items: start;
}

.timeline {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  padding: 1.1rem 1.2rem;
}

.timeline time {
  display: inline-flex;
  margin-bottom: .55rem;
  color: var(--gold-soft);
  font-weight: 900;
}

.timeline h3 {
  margin-bottom: .45rem;
}

.faq-list {
  display: grid;
  gap: .85rem;
  max-width: 980px;
}

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 62px;
  padding: .95rem 1.15rem;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.faq-list summary::after {
  content: "";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, .45);
  background:
    linear-gradient(var(--gold), var(--gold)) center / 12px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center / 2px 12px no-repeat;
}

.faq-list details[open] summary::after {
  background: linear-gradient(var(--gold), var(--gold)) center / 12px 2px no-repeat;
}

.faq-list details[open] summary,
.faq-list summary:hover {
  color: var(--gold-soft);
  background: rgba(136, 156, 84, .1);
}

.faq-list p {
  padding: 0 1.15rem 1.05rem;
}

.download-band {
  padding: clamp(46px, 7vw, 82px) 0;
  background: var(--deep);
  border-top: 1px solid var(--line);
}

.download-inner {
  justify-content: space-between;
  gap: 1.5rem;
}

.download-inner h2 {
  margin: .35rem 0 .75rem;
}

.download-inner p {
  max-width: 720px;
}

.friend-links {
  padding: clamp(38px, 6vw, 70px) 0;
  border-top: 1px solid rgba(212, 175, 55, .18);
  background:
    repeating-linear-gradient(135deg, rgba(212, 175, 55, .055) 0 1px, transparent 1px 30px),
    linear-gradient(180deg, rgba(45, 36, 30, .96), rgba(28, 22, 19, .98));
}

.friend-links h2 {
  margin-bottom: 1.2rem;
  text-align: center;
  color: var(--text);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.friend-link-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem 1rem;
}

.friend-link-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .62rem 1.08rem;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, .22);
  border-radius: 999px;
  background: rgba(245, 235, 224, .96);
  color: #2d241e;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

.friend-link-list a::before {
  content: "";
  width: .62rem;
  height: .62rem;
  margin-right: .46rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 0 0 4px rgba(0, 168, 150, .1);
}

.friend-link-list a:hover,
.friend-link-list a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, .62);
  color: #1c1613;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28), 0 0 0 1px rgba(0, 168, 150, .18);
}

.site-footer {
  padding: 28px 0;
  background: #080604;
  border-top: 1px solid rgba(245, 235, 224, .08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--gold-soft);
  font-weight: 800;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    gap: .4rem;
    padding: .9rem;
    border: 1px solid rgba(212, 175, 55, .28);
    border-radius: 8px;
    background: rgba(15, 11, 9, .97);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }

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

  .main-nav .nav-download {
    margin-left: 0;
    text-align: center;
  }

  .two-col,
  .content-grid,
  .temple-route,
  .guide-layout,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .temple-route::before {
    top: 1rem;
    bottom: 1rem;
    left: 42px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, .48), rgba(0, 168, 150, .42), transparent);
  }

  .guide-panel,
  .feature-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 112px;
  }

  .nav-wrap,
  .container,
  .hero-content {
    width: min(100% - 24px, var(--max));
  }

  .hero,
  .section,
  .download-band {
    scroll-margin-top: 112px;
  }

  .brand span {
    max-width: 9em;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 88vh;
    padding-top: 104px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(15, 11, 9, .9), rgba(15, 11, 9, .62)),
      linear-gradient(90deg, rgba(15, 11, 9, .86), rgba(15, 11, 9, .44));
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

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

  .hero-hud {
    padding: .85rem .78rem;
  }

  .hero-actions,
  .download-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .gallery-btn {
    display: none;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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