/* ============================================================
   神泣：光与暗 — 暗黑魔幻史诗风格
   ============================================================ */

:root {
  --bg-deep: #07070a;
  --bg-dark: #0d0d12;
  --bg-mid: #14141b;
  --gold: #d4af37;
  --gold-light: #f4c88e;
  --gold-bright: #ffd86b;
  --gold-dark: #8b6914;
  --ember: #e8743c;
  --ember-deep: #b8441f;
  --text: #e8e6e1;
  --text-dim: #9a968c;
  --text-muted: #5e5a52;
  --border-gold: rgba(212, 175, 55, 0.25);
  --border-gold-strong: rgba(212, 175, 55, 0.5);
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.25);
  --font-display: 'Cinzel Decorative', 'Cinzel', 'Noto Serif SC', serif;
  --font-body: 'Noto Sans SC', 'Cinzel', sans-serif;
  --transition: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

@media (max-width: 768px) {
  body { cursor: auto; }
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; color: inherit; cursor: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   自定义光标
   ============================================================ */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10002;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--gold);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--transition), height 0.3s var(--transition), border-color 0.3s, background 0.3s;
}
.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.08);
}
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================================
   粒子画布
   ============================================================ */
#emberCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   导航栏
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s var(--transition);
  background: linear-gradient(180deg, rgba(7, 7, 10, 0.9) 0%, transparent 100%);
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(7, 7, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 42px; width: auto; filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4)); }

.nav-menu {
  display: flex;
  gap: 8px;
  list-style: none;
}
.nav-link {
  position: relative;
  padding: 8px 18px;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--text-dim);
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s var(--transition);
  transform: translateX(-50%);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-bright);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 60%;
  box-shadow: 0 0 8px var(--gold);
}

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-btn-reserve {
  padding: 9px 22px;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 2px;
  font-weight: 700;
  transition: all 0.3s var(--transition);
  position: relative;
  overflow: hidden;
}
.nav-btn-reserve:hover {
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.5);
  transform: translateY(-1px);
}
.nav-btn-audio {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold);
  transition: color 0.3s, border-color 0.3s;
  position: relative;
}
.nav-btn-audio:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}
.nav-btn-audio svg { width: 16px; height: 16px; position: relative; z-index: 1; }
.nav-btn-audio .bgm-notes { z-index: 2; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .nav-btn-reserve { display: none; }
}

/* ============================================================
   滚动进度条 & 侧边导航
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1001;
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
  box-shadow: 0 0 10px var(--gold);
  transition: width 0.1s linear;
}

.side-nav {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.side-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border: 1px solid var(--border-gold-strong);
  border-radius: 50%;
  transition: all 0.3s var(--transition);
  display: block;
}
.side-dot.active {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold);
  transform: scale(1.3);
}
.side-label {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
}
.side-dot:hover .side-label { opacity: 1; }
@media (max-width: 768px) {
  .side-nav { display: none; }
}

/* ============================================================
   通用 Section & 标题
   ============================================================ */
.section {
  position: relative;
  min-height: 100vh;
  padding: 120px 40px;
  z-index: 2;
}
.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 8px;
  color: var(--gold);
  margin-bottom: 18px;
  position: relative;
}
.section-tag::before, .section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-tag::before { right: 100%; margin-right: 16px; }
.section-tag::after { left: 100%; margin-left: 16px; background: linear-gradient(90deg, var(--gold), transparent); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: 12px;
  background: linear-gradient(180deg, #fff 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 15px;
  color: var(--text-dim);
  letter-spacing: 3px;
}

/* 入场动画 */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   按钮
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 38px;
  font-size: 15px;
  letter-spacing: 4px;
  font-weight: 700;
  overflow: hidden;
  transition: all 0.4s var(--transition);
}
.btn-gold {
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.btn-gold:hover {
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.55);
  transform: translateY(-2px);
}
.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}
.btn-gold:hover .btn-shine { left: 100%; }

.btn-ghost {
  color: var(--gold);
  border: 1px solid var(--border-gold-strong);
  background: rgba(212, 175, 55, 0.05);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.btn-ghost:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-bright);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}
.btn-ghost svg { width: 14px; height: 14px; }
.btn-lg { padding: 20px 56px; font-size: 17px; }
.btn-sm { padding: 12px 28px; font-size: 13px; }

/* ============================================================
   HERO 英雄区
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(7, 7, 10, 0.5) 60%, var(--bg-deep) 100%),
    linear-gradient(180deg, rgba(7, 7, 10, 0.6) 0%, transparent 40%, transparent 60%, rgba(7, 7, 10, 0.7) 100%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}
.eyebrow-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow-line:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.eyebrow-text {
  font-size: 13px;
  letter-spacing: 8px;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  margin-bottom: 24px;
  line-height: 1.1;
}
.title-line {
  display: block;
  font-size: clamp(60px, 12vw, 140px);
  font-weight: 900;
  letter-spacing: 18px;
  background: linear-gradient(180deg, #fff 0%, var(--gold-light) 45%, var(--gold) 70%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 30px rgba(212, 175, 55, 0.4));
  animation: titleGlow 4s ease-in-out infinite;
}
@keyframes titleGlow {
  0%, 100% { filter: drop-shadow(0 4px 30px rgba(212, 175, 55, 0.3)); }
  50% { filter: drop-shadow(0 4px 50px rgba(212, 175, 55, 0.6)); }
}
.title-sub {
  display: block;
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: 24px;
  color: var(--gold-light);
  margin-top: 8px;
  opacity: 0.9;
}

.hero-desc {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--text-dim);
  letter-spacing: 2px;
  margin-bottom: 48px;
  line-height: 2;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--gold-bright);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}
.stat-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--text-dim);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--border-gold-strong), transparent);
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}
.scroll-text {
  display: block;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--text-dim);
  margin-bottom: 12px;
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1px solid var(--border-gold-strong);
  border-radius: 12px;
  margin: 0 auto;
  position: relative;
}
.scroll-wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  border-color: var(--border-gold);
  z-index: 3;
  pointer-events: none;
}
.corner-tl { top: 100px; left: 40px; border-top: 1px solid; border-left: 1px solid; }
.corner-tr { top: 100px; right: 40px; border-top: 1px solid; border-right: 1px solid; }
.corner-bl { bottom: 40px; left: 40px; border-bottom: 1px solid; border-left: 1px solid; }
.corner-br { bottom: 40px; right: 40px; border-bottom: 1px solid; border-right: 1px solid; }

@media (max-width: 600px) {
  .hero-corner { width: 40px; height: 40px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
}

/* ============================================================
   职业展示 — 全屏沉浸式
   ============================================================ */
.classes {
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

/* 全屏视频背景 */
.class-fs-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.class-fs-video-wrap {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.9s var(--transition), transform 1.2s var(--transition);
}
.class-fs-video-wrap.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.class-fs-video-wrap.active ~ .class-fs-video-wrap.active {
  z-index: 2;
}
.class-fs-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.class-fs-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    linear-gradient(180deg, rgba(7, 7, 10, 0.5) 0%, transparent 25%, transparent 60%, rgba(7, 7, 10, 0.85) 100%),
    linear-gradient(90deg, rgba(7, 7, 10, 0.7) 0%, transparent 35%, transparent 65%, rgba(7, 7, 10, 0.7) 100%);
}
.class-fs-vignette {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}
.class-fs-particles {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
}

/* 顶部标题 */
.class-fs-header {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}
.class-fs-header .section-tag {
  margin-bottom: 10px;
}
.class-fs-header .section-title {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 8px;
  margin-bottom: 0;
  padding-right: 8px; /* 补偿 letter-spacing 尾部额外间距，使视觉居中 */
  display: block;
  width: 100%;
  text-align: center;
}

/* 左侧职业导航 */
.class-fs-nav {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.class-fs-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 16px 24px 16px 20px;
  position: relative;
  transition: all 0.4s var(--transition);
  border-left: 2px solid transparent;
  text-align: left;
}
.fs-tab-num {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 3px;
  transition: color 0.3s;
}
.fs-tab-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-dim);
  transition: all 0.3s;
}
.fs-tab-en {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s var(--transition);
}
.fs-tab-bar {
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px;
  height: 70%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dark));
  box-shadow: 0 0 10px var(--gold);
  transition: transform 0.4s var(--transition);
}
.class-fs-tab:hover {
  padding-left: 26px;
}
.class-fs-tab:hover .fs-tab-name {
  color: var(--gold-light);
}
.class-fs-tab:hover .fs-tab-en {
  opacity: 0.7;
  transform: translateX(0);
}
.class-fs-tab.active {
  padding-left: 26px;
}
.class-fs-tab.active .fs-tab-num { color: var(--gold); }
.class-fs-tab.active .fs-tab-name {
  color: var(--gold-bright);
  text-shadow: 0 0 16px rgba(212, 175, 55, 0.5);
}
.class-fs-tab.active .fs-tab-en {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold);
}
.class-fs-tab.active .fs-tab-bar {
  transform: translateY(-50%) scaleY(1);
}

/* 左侧速览+特色标签 */
.class-fs-left {
  position: absolute;
  left: 60px;
  bottom: 200px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fs-overview {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 8px;
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}
.class-fs-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fs-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(7, 7, 10, 0.5);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: all 0.5s var(--transition);
}
.fs-tag.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.fs-tag-diamond {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(139, 105, 20, 0.5));
  border: 1px solid var(--gold-bright);
  transform: rotate(45deg);
  color: var(--gold-bright);
  font-size: 12px;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
  flex-shrink: 0;
}
.fs-tag-diamond > span {
  transform: rotate(-45deg);
  display: block;
}
.fs-tag-text {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gold-light);
  white-space: nowrap;
}

/* 右侧职业信息（竖排大字+种族武器+雷达+技能） */
.class-fs-info-wrap {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: min(360px, 32vw);
}
.class-fs-info {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(40px, -50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--transition), transform 0.6s var(--transition), visibility 0.6s;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.class-fs-info.active {
  position: relative;
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

/* 顶部：竖排大字职业名 + 种族武器 */
.fs-info-top {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.fs-info-name-v {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 4px;
  background: linear-gradient(180deg, #fff, var(--gold-bright) 40%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 28px rgba(212, 175, 55, 0.45));
  margin: 0;
  text-align: center;
}
.fs-info-meta-v {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-top: 6px;
}
.fs-race, .fs-weapon {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold-light);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.fs-meta-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: 0 auto;
}

/* 属性雷达条 */
.fs-radar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  background: rgba(7, 7, 10, 0.55);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(6px);
}
.fs-radar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fs-radar-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-dim);
  width: 36px;
  flex-shrink: 0;
}
.fs-radar-bar {
  flex: 1;
  height: 4px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
.fs-radar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
  box-shadow: 0 0 8px var(--gold);
  border-radius: 2px;
  transition: width 1s var(--transition);
}
.class-fs-info.active .fs-radar-fill {
  width: var(--lvl, 50%);
}

/* 技能图标 */
.fs-skills-v {
  display: flex;
  gap: 28px;
}
.fs-skill-v {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
}
.fs-skill-v:hover { transform: translateY(-3px); }
.fs-skill-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(139, 105, 20, 0.25));
  border: 1px solid var(--border-gold-strong);
  border-radius: 50%;
  transition: all 0.3s;
}
.fs-skill-v:hover .fs-skill-icon {
  border-color: var(--gold-bright);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(139, 105, 20, 0.4));
}
.fs-skill-name {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold-light);
}

/* 技能描述 */
.fs-skill-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.8;
  letter-spacing: 1px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
  padding-left: 4px;
  border-left: 2px solid var(--border-gold-strong);
  padding-top: 4px;
  padding-bottom: 4px;
}

/* 底部职业图标导航 */
.class-fs-icons {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 24px;
  background: linear-gradient(180deg, rgba(7, 7, 10, 0.78) 0%, rgba(13, 13, 18, 0.88) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold-strong);
  box-shadow: 0 10px 44px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(212, 175, 55, 0.12);
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 14px 100%, 0 50%);
}
.class-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  transition: all 0.3s var(--transition);
}
.icon-diamond {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid var(--border-gold);
  transform: rotate(45deg);
  transition: all 0.35s var(--transition);
  color: var(--gold);
  font-size: 18px;
}
.icon-diamond > * { transform: rotate(-45deg); display: block; }
.icon-name {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: color 0.3s;
  margin-top: 2px;
  white-space: nowrap;
}
.class-icon:hover:not(.locked) .icon-diamond {
  border-color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.18);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
}
.class-icon:hover:not(.locked) .icon-name {
  color: var(--gold-light);
}
.class-icon.active .icon-diamond {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.32), rgba(139, 105, 20, 0.55));
  border: 2px solid var(--gold-bright);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.65), inset 0 0 18px rgba(212, 175, 55, 0.25);
  color: var(--gold-bright);
}
.class-icon.active .icon-name {
  color: var(--gold-bright);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
.class-icon.locked {
  opacity: 0.3;
  cursor: not-allowed;
}
.class-icon.locked .icon-diamond {
  border-style: dashed;
  background: transparent;
}
.icon-sep {
  font-size: 7px;
  color: var(--border-gold);
  opacity: 0.6;
}

/* 底部阵营切换 */
.class-fs-faction {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0;
}
.faction-btn {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 5px;
  color: var(--text-muted);
  padding: 10px 36px;
  transition: all 0.4s var(--transition);
  position: relative;
}
.faction-btn.active {
  color: var(--gold-bright);
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.6);
}
.faction-btn.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 10px var(--gold);
}
.faction-btn:hover:not(.active) {
  color: var(--gold-light);
}
.faction-vs {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
  text-shadow: 0 0 10px rgba(255, 216, 107, 0.7);
}
.faction-vs::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-gold-strong);
  border-radius: 50%;
  animation: factionSpin 8s linear infinite;
  z-index: -1;
}
.faction-vs::after {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  border-top-color: var(--gold-bright);
  animation: factionSpin 5s linear infinite reverse;
  z-index: -1;
}
@keyframes factionSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 装饰角框 */
.class-fs-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 10;
  pointer-events: none;
}
.class-fs-corner.tl { top: 80px; left: 40px; border-top: 1px solid var(--border-gold); border-left: 1px solid var(--border-gold); }
.class-fs-corner.tr { top: 80px; right: 40px; border-top: 1px solid var(--border-gold); border-right: 1px solid var(--border-gold); }
.class-fs-corner.bl { bottom: 40px; left: 40px; border-bottom: 1px solid var(--border-gold); border-left: 1px solid var(--border-gold); }
.class-fs-corner.br { bottom: 40px; right: 40px; border-bottom: 1px solid var(--border-gold); border-right: 1px solid var(--border-gold); }

/* ---- 1440px ---- 大屏稍缩右侧面板 */
@media (max-width: 1440px) {
  .class-fs-info-wrap { width: min(320px, 28vw); right: 40px; }
  .class-fs-nav { left: 40px; }
  .fs-info-name-v { font-size: clamp(40px, 5vw, 64px); }
}

/* ---- 1200px ---- 右侧面板进一步缩小，避免竖排大字溢出标题 */
@media (max-width: 1200px) {
  .class-fs-info-wrap { width: min(260px, 26vw); right: 30px; gap: 16px; }
  .class-fs-nav { left: 30px; }
  .fs-info-name-v { font-size: clamp(36px, 4.5vw, 52px); letter-spacing: 3px; }
  .fs-info-top { gap: 16px; }
  .fs-radar { padding: 14px 16px; gap: 8px; }
  .fs-radar-item { gap: 8px; }
  .fs-radar-label { font-size: 11px; width: 30px; }
  .class-fs-left { bottom: 180px; left: 30px; }
  .fs-overview { font-size: 16px; letter-spacing: 6px; }
  .fs-tag-text { font-size: 12px; }
  .fs-tag { padding: 6px 14px; }
  .class-fs-header { top: 70px; }
  .class-fs-header .section-title { font-size: clamp(22px, 3vw, 32px); letter-spacing: 6px; }
  .class-fs-header .section-tag { font-size: 11px; letter-spacing: 6px; }
}

/* ---- 1024px ---- 平板横屏 */
@media (max-width: 1024px) {
  .class-fs-nav { left: 20px; gap: 0; }
  .class-fs-tab { padding: 10px 18px 10px 16px; }
  .fs-tab-name { font-size: 15px; }
  .fs-tab-en { font-size: 9px; letter-spacing: 3px; }
  .class-fs-info-wrap { width: min(220px, 24vw); right: 20px; }
  .fs-info-name-v { font-size: clamp(32px, 4vw, 44px); }
  .fs-info-meta-v { gap: 6px; padding-top: 4px; }
  .fs-race, .fs-weapon { font-size: 11px; }
  .fs-meta-line { height: 20px; }
  .fs-radar { padding: 12px 14px; gap: 6px; }
  .fs-radar-label { font-size: 10px; width: 28px; }
  .fs-radar-bar { height: 3px; }
  .fs-skill-name { font-size: 10px; }
  .fs-skill-icon { width: 28px; height: 28px; font-size: 12px; }
  .fs-skill-desc { font-size: 11px; }
  .class-fs-left { left: 20px; bottom: 170px; }
  .fs-overview { font-size: 14px; letter-spacing: 5px; }
  .class-fs-corner { width: 36px; height: 36px; }
  .class-fs-corner.tl, .class-fs-corner.tr { top: 60px; }
  .class-fs-corner.bl, .class-fs-corner.br { bottom: 160px; }
}

/* ---- 900px ---- 平板竖屏 */
@media (max-width: 900px) {
  .class-fs-nav { left: 16px; }
  .class-fs-tab { padding: 8px 14px 8px 12px; }
  .fs-tab-name { font-size: 13px; }
  .fs-tab-en { display: none; }
  .class-fs-info-wrap { width: min(200px, 28vw); right: 16px; gap: 12px; }
  .fs-info-name-v { font-size: clamp(28px, 3.5vw, 38px); }
  .fs-radar { padding: 10px 12px; gap: 5px; }
  .fs-radar-item { gap: 6px; }
  .fs-radar-label { font-size: 10px; width: 26px; }
  .class-fs-left { display: none; }
  .class-fs-corner { width: 30px; height: 30px; }
  .class-fs-corner.tl, .class-fs-corner.tr { top: 55px; }
}

/* ---- 768px ---- 大手机横屏 */
@media (max-width: 768px) {
  .class-fs-header { top: 55px; }
  .class-fs-header .section-title { font-size: clamp(20px, 2.8vw, 26px); letter-spacing: 5px; padding-right: 5px; }
  .class-fs-header .section-tag { font-size: 10px; letter-spacing: 5px; margin-bottom: 6px; }
  .class-fs-corner { display: none; }
  .class-fs-faction { bottom: 160px; gap: 10px; }
  .faction-btn { font-size: 13px; padding: 6px 20px; letter-spacing: 4px; }
  .class-fs-icons { bottom: 40px; gap: 2px; padding: 8px 16px; max-width: 96vw; }
  .icon-diamond { width: 36px; height: 36px; font-size: 14px; }
  .icon-name { font-size: 9px; }
  .icon-sep { display: none; }
  .class-fs-tab { padding: 6px 10px; }
  .fs-tab-num { font-size: 10px; letter-spacing: 2px; }
  .fs-tab-name { font-size: 12px; letter-spacing: 2px; }
  .fs-tab-bar { width: 1px; }
  .class-fs-info-wrap { width: min(180px, 30vw); }
  .fs-info-name-v { font-size: clamp(24px, 3vw, 32px); letter-spacing: 2px; }
  .fs-info-top { gap: 10px; }
  .fs-radar { padding: 8px 10px; gap: 4px; }
  .fs-radar-label { font-size: 9px; width: 22px; }
  .fs-radar-bar { height: 2px; }
  .fs-skill-icon { width: 24px; height: 24px; font-size: 10px; }
  .fs-skill-name { font-size: 9px; }
  .fs-skill-desc { font-size: 10px; }
}

/* ---- 600px ---- 手机竖屏：转为上下布局 */
@media (max-width: 600px) {
  .class-fs-header { top: 45px; }
  .class-fs-header .section-title { font-size: 22px; letter-spacing: 4px; padding-right: 4px; }
  .class-fs-nav {
    position: relative;
    left: auto; top: auto; transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 12px;
    gap: 0;
  }
  .class-fs-tab { padding: 8px 12px; border-left: none; border-bottom: 2px solid transparent; }
  .class-fs-tab.active { border-bottom-color: var(--gold); }
  .fs-tab-bar { display: none; }
  .class-fs-left { display: none; }
  .class-fs-info-wrap {
    position: relative;
    right: auto; top: auto; transform: none;
    width: 92%;
    margin: 0 auto;
    gap: 16px;
  }
  .class-fs-info { position: relative; transform: translate(0, 0); }
  .fs-info-top { flex-direction: row; justify-content: flex-start; }
  .fs-info-name-v { font-size: 36px; letter-spacing: 3px; }
  .fs-radar { padding: 12px 14px; gap: 6px; }
  .fs-skill-desc { font-size: 11px; line-height: 1.6; }
  .class-fs-faction { bottom: 100px; gap: 12px; }
  .faction-btn { font-size: 12px; padding: 5px 14px; letter-spacing: 3px; }
  .faction-vs { width: 36px; height: 36px; font-size: 12px; }
  .class-fs-icons {
    bottom: 16px;
    gap: 2px; padding: 6px 8px;
    flex-wrap: wrap; justify-content: center;
    max-width: 97vw;
  }
  .class-icon { padding: 3px 5px; gap: 3px; }
  .icon-diamond { width: 30px; height: 30px; font-size: 12px; }
  .class-icon.active .icon-diamond { box-shadow: 0 0 16px rgba(212, 175, 55, 0.5), inset 0 0 10px rgba(212, 175, 55, 0.2); }
  .icon-name { font-size: 8px; }
  .class-fs-corner { display: none; }
}

/* ============================================================
   新闻资讯
   ============================================================ */
.news {
  background: var(--bg-deep);
  position: relative;
}
.news-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(232, 116, 60, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.news-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.news-card {
  display: flex;
  gap: 0;
  background: linear-gradient(135deg, rgba(20, 20, 27, 0.9), rgba(13, 13, 18, 0.9));
  border: 1px solid var(--border-gold);
  overflow: hidden;
  transition: all 0.4s var(--transition);
  position: relative;
  text-decoration: none;
  color: inherit;
}
.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dark));
  transform: scaleY(0);
  transition: transform 0.4s var(--transition);
}
.news-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.15);
}
.news-card:hover::before { transform: scaleY(1); }

.news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  padding: 24px 16px;
  background: rgba(212, 175, 55, 0.05);
  border-right: 1px solid var(--border-gold);
}
.news-day {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
}
.news-month {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 6px;
}
.news-body {
  flex: 1;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
}
.news-tag {
  align-self: flex-start;
  padding: 3px 10px;
  font-size: 11px;
  letter-spacing: 1px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.tag-major { background: rgba(232, 116, 60, 0.15); color: var(--ember); border: 1px solid rgba(232, 116, 60, 0.3); }
.tag-update { background: rgba(212, 175, 55, 0.12); color: var(--gold); border: 1px solid var(--border-gold-strong); }
.tag-info { background: rgba(120, 120, 140, 0.15); color: var(--text-dim); border: 1px solid rgba(120, 120, 140, 0.3); }
.news-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.5;
  transition: color 0.3s;
}
.news-card:hover .news-title { color: var(--gold-bright); }
.news-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1;
}
.news-more {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s var(--transition);
}
.news-card:hover .news-more {
  opacity: 1;
  transform: translateX(0);
}

.news-more-wrap {
  text-align: center;
  margin-top: 50px;
}

/* ============================================================
   预约 CTA
   ============================================================ */
.cta-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-dark), var(--bg-deep));
}
.cta-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  animation: ctaRotate 40s linear infinite;
}
.cta-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  animation: ctaRotate 30s linear infinite reverse;
}
@keyframes ctaRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: 14px;
  background: linear-gradient(180deg, #fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 16px;
  color: var(--text-dim);
  letter-spacing: 2px;
  margin-bottom: 40px;
}
.cta-count {
  margin-bottom: 40px;
}
.cta-count-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 900;
  color: var(--gold-bright);
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
  display: block;
}
.cta-count-label {
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--text-dim);
}

/* ============================================================
   页脚
   ============================================================ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-gold);
  padding: 70px 40px 0;
  position: relative;
  z-index: 2;
}
.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-logo {
  height: 54px;
  margin-bottom: 16px;
}
.footer-slogan {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 3px;
}
.footer-col-title {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-link {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 10px;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-link:hover {
  color: var(--gold-bright);
  padding-left: 6px;
}
.social-icons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  transition: all 0.3s var(--transition);
}
.social-icon img { width: 20px; height: 20px; filter: grayscale(40%); transition: filter 0.3s; }
.social-icon:hover {
  border-color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}
.social-icon:hover img { filter: grayscale(0%); }

.footer-bottom {
  border-top: 1px solid var(--border-gold);
  padding: 24px 0;
  text-align: center;
}
.footer-copyright {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.footer-icp {
  font-size: 11px;
  color: var(--text-muted);
}
.footer-icp a { color: var(--text-muted); transition: color 0.3s; }
.footer-icp a:hover { color: var(--gold); }
.icp-sep { margin: 0 10px; opacity: 0.5; }

@media (max-width: 900px) {
  .footer-container { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .footer-links { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   视频弹窗
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal.active { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}
.modal-content {
  position: relative;
  width: min(960px, 90vw);
  z-index: 2;
}
.modal-video {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
}
.modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  color: var(--gold);
  font-size: 20px;
  border: 1px solid var(--border-gold-strong);
  border-radius: 50%;
  transition: all 0.3s;
}
.modal-close:hover {
  background: rgba(212, 175, 55, 0.15);
  transform: rotate(90deg);
}

/* ============================================================
   预约弹窗
   ============================================================ */
.reserve-modal-content {
  width: min(440px, 92vw);
  background: linear-gradient(180deg, rgba(13, 13, 18, 0.98) 0%, rgba(7, 7, 10, 0.99) 100%);
  border: 1px solid var(--border-gold-strong);
  border-radius: 2px;
  padding: 40px 36px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.1);
  position: relative;
}
.reserve-modal-content::before,
.reserve-modal-content::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold);
}
.reserve-modal-content::before {
  top: -1px; left: -1px;
  border-right: none; border-bottom: none;
}
.reserve-modal-content::after {
  bottom: -1px; right: -1px;
  border-left: none; border-top: none;
}
.reserve-header { text-align: center; margin-bottom: 28px; }
.reserve-rune { width: 64px; height: 64px; margin: 0 auto 16px; animation: runeRotate 10s linear infinite; }
.reserve-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 8px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.reserve-sub { font-size: 12px; color: var(--text-dim); letter-spacing: 4px; }
.reserve-field { margin-bottom: 18px; }
.reserve-label {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.reserve-label .req { color: var(--ember); margin-left: 2px; }
.reserve-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-gold);
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-body);
  padding: 12px 14px;
  transition: all 0.3s var(--transition);
  outline: none;
  letter-spacing: 1px;
}
.reserve-input::placeholder { color: var(--text-muted); }
.reserve-input:focus {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}
.reserve-input.error {
  border-color: var(--ember);
  box-shadow: 0 0 12px rgba(232, 116, 60, 0.2);
}
.reserve-textarea { resize: vertical; min-height: 72px; }
.reserve-error {
  font-size: 11px;
  color: var(--ember);
  margin-top: 6px;
  letter-spacing: 1px;
  min-height: 14px;
}
.reserve-submit {
  width: 100%;
  margin-top: 8px;
  letter-spacing: 6px;
}
.reserve-tip {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 1px;
}
.reserve-success { text-align: center; padding: 20px 0; }
.success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--gold-bright);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.4);
  animation: successPulse 0.6s ease-out;
}
@keyframes successPulse {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}
.reserve-success h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-bright);
  letter-spacing: 4px;
  margin-bottom: 10px;
}
.reserve-success p {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.reserve-success .btn { letter-spacing: 4px; }
.success-qr { margin: 20px 0 24px; text-align: center; }
.qr-title { font-size: 12px; color: var(--gold); letter-spacing: 4px; margin-bottom: 12px; font-family: var(--font-display); }
.qr-box { width: 120px; height: 120px; margin: 0 auto 10px; background: rgba(212, 175, 55, 0.05); border: 1px solid var(--border-gold); padding: 8px; position: relative; display: flex; align-items: center; justify-content: center; }
.qr-box::before { content: ''; position: absolute; inset: -1px; border: 1px solid var(--gold); border-top-color: transparent; border-left-color: transparent; }
.qr-img { width: 100%; height: 100%; object-fit: cover; }
.qr-rune { width: 100%; height: 100%; animation: runeRotate 6s linear infinite; display: flex; }
.qr-tip { font-size: 11px; color: var(--text-dim); letter-spacing: 2px; }

/* ===== 联系客服弹窗 ===== */
.contact-modal-content {
  width: min(400px, 92vw);
  background: linear-gradient(180deg, rgba(13, 13, 18, 0.98) 0%, rgba(7, 7, 10, 0.99) 100%);
  border: 1px solid var(--border-gold-strong);
  border-radius: 2px;
  padding: 36px 32px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.1);
  position: relative;
  text-align: center;
}
.contact-modal-content::before,
.contact-modal-content::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold);
}
.contact-modal-content::before {
  top: -1px; left: -1px;
  border-right: none; border-bottom: none;
}
.contact-modal-content::after {
  bottom: -1px; right: -1px;
  border-left: none; border-top: none;
}
.contact-header { margin-bottom: 24px; }
.contact-icon { width: 56px; height: 56px; margin: 0 auto 14px; }
.contact-icon svg { width: 100%; height: 100%; }
.contact-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 8px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.contact-sub { font-size: 12px; color: var(--text-dim); letter-spacing: 3px; }
.contact-qr { margin: 8px 0 22px; }
.contact-modal-content .btn-gold { display: block; margin: 0 auto; }

@media (max-width: 600px) {
  .reserve-modal-content { padding: 28px 22px 24px; }
  .reserve-title { font-size: 20px; letter-spacing: 6px; }
  .reserve-rune { width: 48px; height: 48px; }
  .qr-box { width: 100px; height: 100px; }
}
