/* ============================================================
   地球online — 玩家评测页面
   重返未来1999 西方神秘学风格 × Apple 精致设计
   ============================================================ */

/* ---------- 字体引入 ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Noto+Serif+SC:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- CSS 变量 / 调色板 ---------- */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a28;
  --bg-card-hover: #222235;
  --text-primary: #e8e6e3;
  --text-secondary: #9a95a0;
  --text-muted: #6b6770;
  --accent-gold: #d4a853;
  --accent-gold-light: #f0d48a;
  --accent-gold-dark: #a67c34;
  --accent-amber: #c9953a;
  --accent-copper: #b87333;
  --accent-crimson: #8b1a1a;
  --accent-void: #2a1a3e;
  --star-color: #f0c040;
  --border-color: #2a2535;
  --border-gold: rgba(212, 168, 83, 0.3);
  --glow-gold: rgba(212, 168, 83, 0.15);
  --glow-amber: rgba(201, 149, 58, 0.1);
  --overlay-dark: rgba(10, 10, 15, 0.85);
  --font-title: 'Cinzel', 'Noto Serif SC', serif;
  --font-body: 'Inter', 'Noto Serif SC', sans-serif;
  --font-chinese: 'Noto Serif SC', serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px var(--glow-gold), 0 0 80px var(--glow-amber);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 基础重置 ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- 神秘学背景画布 ---------- */
#occult-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* 星空粒子层 */
#starfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 背景纹理叠加 */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(42, 26, 62, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(139, 26, 26, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(212, 168, 83, 0.05) 0%, transparent 40%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.008) 2px,
      rgba(255, 255, 255, 0.008) 4px
    );
  z-index: 0;
  pointer-events: none;
}

/* 装饰性神秘符文（CSS-only） */
body::after {
  content: '✦ ✧ ★ ✦ ✧ ★ ✦ ✧ ★ ✦ ✧ ★ ✦ ✧ ★ ✦ ✧';
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 30px;
  color: rgba(212, 168, 83, 0.08);
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}

/* ---------- 滚动条 ---------- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold-dark);
}

/* ---------- 主容器 ---------- */
.site-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HERO 区域
   ============================================================ */
.hero {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  overflow: hidden;
}

/* 顶部装饰光晕 */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, var(--glow-gold) 0%, transparent 70%);
  pointer-events: none;
}

/* 神秘学圆环装饰 */
.hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border: 1px solid rgba(212, 168, 83, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.hero-ring:nth-child(2) {
  width: 640px;
  height: 640px;
  border-width: 2px;
  border-color: rgba(212, 168, 83, 0.04);
}
.hero-ring:nth-child(3) {
  width: 380px;
  height: 380px;
  border-style: dashed;
  animation: rotate-ring 40s linear infinite;
}

@keyframes rotate-ring {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* 神秘符文图标 */
.hero-rune {
  font-size: 36px;
  color: var(--accent-gold);
  opacity: 0.6;
  display: block;
  margin-bottom: 20px;
  letter-spacing: 12px;
  text-shadow: 0 0 20px var(--glow-gold);
  animation: pulse-rune 3s ease-in-out infinite;
}

@keyframes pulse-rune {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 0.8; transform: scale(1.05); }
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold-light);
  background: rgba(212, 168, 83, 0.06);
  margin-bottom: 28px;
  font-family: var(--font-title);
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(48px, 10vw, 96px);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 6px;
  text-shadow: 0 0 60px rgba(212, 168, 83, 0.2);
}

.hero h1 .gold {
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold), var(--accent-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-chinese);
  font-size: clamp(18px, 3vw, 28px);
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 8px;
  margin-bottom: 12px;
}

.hero-subtitle-eng {
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-tagline {
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  font-family: var(--font-chinese);
}

/* ---------- 分割线装饰 ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0 32px;
  color: var(--accent-gold);
  opacity: 0.4;
  font-size: 12px;
  letter-spacing: 4px;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
  max-width: 200px;
}

/* ---------- 评测锁定状态 ---------- */
.locked-state {
  text-align: center;
  padding: 40px 20px 32px;
}

.locked-icon {
  font-size: 52px;
  display: block;
  margin-bottom: 16px;
  animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.05); }
}

.locked-title {
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--accent-gold-light);
  margin-bottom: 10px;
}

.locked-desc {
  font-size: 15px;
  color: var(--text-secondary);
  font-family: var(--font-chinese);
  margin-bottom: 6px;
}

.locked-sub {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-chinese);
}

/* ---------- 表单输入通用样式 ---------- */
.form-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-family: var(--font-body);
}

.form-input {
  width: 100%;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-chinese);
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--border-gold);
  box-shadow: 0 0 16px var(--glow-gold);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a95a0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-field {
  flex: 1;
  min-width: 160px;
}

.write-review-form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.write-review-stars-row {
  margin-bottom: 16px;
}

/* ============================================================
   评分概览
   ============================================================ */
.rating-overview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  margin-bottom: 48px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.rating-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.rating-big {
  text-align: center;
  padding-right: 48px;
  border-right: 1px solid var(--border-color);
}

.rating-big-number {
  font-family: var(--font-title);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-big-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 2px;
}

.rating-big-stars {
  margin-top: 8px;
  font-size: 20px;
  letter-spacing: 4px;
  color: var(--star-color);
}

.rating-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-bar-label {
  font-size: 14px;
  color: var(--text-secondary);
  min-width: 60px;
  letter-spacing: 1px;
}

.rating-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.rating-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.rating-bar-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20px;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(4px);
}

.rating-bar-count {
  font-size: 14px;
  color: var(--text-muted);
  min-width: 30px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.rating-stats {
  display: flex;
  gap: 32px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.rating-stat-item {
  text-align: center;
}

.rating-stat-number {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-gold-light);
}

.rating-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ============================================================
   筛选 Tabs
   ============================================================ */
.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.filter-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-search-row {
  width: 100%;
}

.filter-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 4px;
  border: 1px solid var(--border-color);
}

.filter-tab {
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-family: var(--font-body);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.filter-tab:hover {
  color: var(--text-secondary);
}

.filter-tab.active {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15), rgba(201, 149, 58, 0.1));
  color: var(--accent-gold-light);
  box-shadow: 0 0 20px var(--glow-gold);
}

.filter-tab .count {
  display: inline-block;
  margin-left: 6px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0 8px;
  border-radius: 10px;
  font-variant-numeric: tabular-nums;
}

.filter-tab.active .count {
  background: rgba(212, 168, 83, 0.2);
}

.sort-select {
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 13px;
  font-family: var(--font-body);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a95a0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* ---------- 搜索框 ---------- */
.search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.search-box:focus-within {
  border-color: var(--border-gold);
  box-shadow: 0 0 16px var(--glow-gold);
}

.search-icon {
  position: absolute;
  left: 14px;
  font-size: 14px;
  opacity: 0.4;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 11px 40px 11px 40px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-chinese);
  outline: none;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-clear {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 50%;
  transition: var(--transition);
}

.search-clear:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.sort-select:focus {
  border-color: var(--border-gold);
}

/* ============================================================
   评测卡片网格 — 长条形单列布局
   ============================================================ */
.review-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 64px;
}

/* ---------- 单张卡片（长条形） ---------- */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.review-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  transition: var(--transition);
}

.review-card.type-positive::before {
  background: linear-gradient(180deg, var(--accent-gold), var(--accent-gold-light));
}

.review-card.type-negative::before {
  background: linear-gradient(180deg, var(--accent-crimson), #b33a3a);
}

.review-card:hover {
  border-color: rgba(212, 168, 83, 0.2);
  box-shadow: var(--shadow-card), 0 0 30px var(--glow-gold);
}

/* 卡片装饰性边框角标（移除 — 长条形不需要） */
.review-card::after {
  display: none;
}

/* 卡片头部 — 用户信息（水平排列） */
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  border: 1.5px solid var(--border-gold);
}

.review-avatar.positive {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15), rgba(201, 149, 58, 0.05));
  border-color: rgba(212, 168, 83, 0.3);
}

.review-avatar.negative {
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.15), rgba(100, 20, 20, 0.05));
  border-color: rgba(139, 26, 26, 0.3);
}

.review-user-info {
  flex: 1;
}

.review-username {
  font-family: var(--font-chinese);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.review-date {
  font-size: 12px;
  color: var(--text-muted);
}

/* 游玩的"区服"标签 */
.review-server {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  margin-left: auto;
  font-family: var(--font-title);
}

/* 星级 */
.review-stars {
  margin-bottom: 8px;
  font-size: 16px;
  letter-spacing: 2px;
}

.review-stars .star {
  color: var(--star-color);
  display: inline-block;
  transition: var(--transition);
}

.review-stars .star.empty {
  color: rgba(255, 255, 255, 0.08);
}

/* 评测标签 */
.review-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-family: var(--font-chinese);
}

.review-tag.positive {
  background: rgba(212, 168, 83, 0.12);
  color: var(--accent-gold-light);
  border: 1px solid rgba(212, 168, 83, 0.2);
}

.review-tag.negative {
  background: rgba(139, 26, 26, 0.12);
  color: #e06060;
  border: 1px solid rgba(139, 26, 26, 0.2);
}

/* 评测正文 */
.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-family: var(--font-chinese);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-text.expanded {
  -webkit-line-clamp: unset;
}

.review-expand {
  background: none;
  border: none;
  color: var(--accent-gold);
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-body);
  opacity: 0.6;
  transition: var(--transition);
  padding: 0;
}

.review-expand:hover {
  opacity: 1;
}

/* 卡片底部操作 */
.review-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.review-action {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: var(--font-body);
}

.review-action:hover {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
}

.review-action .icon {
  font-size: 16px;
}

.review-action.liked {
  color: var(--accent-gold-light);
}

.review-action.disliked {
  color: #e06060;
}

/* 评测卡片高亮动画 */
.review-card.just-submitted {
  box-shadow: 0 0 40px var(--glow-gold), 0 8px 32px rgba(0,0,0,0.5);
  border-color: rgba(212,168,83,0.5);
}

/* ============================================================
   撰写评测区域（装饰性占位）
   ============================================================ */
.write-review-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.write-review-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.write-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.write-review-title {
  font-family: var(--font-title);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.write-review-runes {
  font-size: 16px;
  color: var(--accent-gold);
  opacity: 0.3;
  letter-spacing: 8px;
}

.write-review-stars-input {
  margin-bottom: 16px;
  font-size: 28px;
  letter-spacing: 8px;
  cursor: pointer;
}

.write-review-stars-input .star {
  color: rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  cursor: pointer;
}

.write-review-stars-input .star.active {
  color: var(--star-color);
}

.write-review-textarea {
  width: 100%;
  min-height: 100px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 15px;
  font-family: var(--font-chinese);
  line-height: 1.6;
  resize: vertical;
  transition: var(--transition);
  outline: none;
}

.write-review-textarea:focus {
  border-color: var(--border-gold);
  box-shadow: 0 0 20px var(--glow-gold);
}

.write-review-textarea::placeholder {
  color: var(--text-muted);
}

.write-review-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 16px;
}

.btn {
  padding: 10px 32px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 1px;
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

.btn-ghost:hover {
  color: var(--text-secondary);
  border-color: rgba(212, 168, 83, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #0a0a0f;
  font-weight: 600;
  box-shadow: 0 4px 16px var(--glow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--glow-gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  text-align: center;
  padding: 48px 0 32px;
  border-top: 1px solid var(--border-color);
  position: relative;
}

.site-footer::before {
  content: '✦ ✦ ✦';
  display: block;
  font-size: 12px;
  letter-spacing: 16px;
  color: rgba(212, 168, 83, 0.15);
  margin-bottom: 20px;
}

.footer-mystic {
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-chinese);
}

/* ============================================================
   空状态 / 滚动揭示动画
   ============================================================ */

/* 揭示基础 — 隐藏 + 下移 */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 揭示后 — 可见 + 归位 */
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* 卡片交错延迟 */
.review-card.reveal.revealed {
  transition-delay: var(--reveal-delay, 0s);
}

.no-reviews {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
  font-family: var(--font-chinese);
}

.no-reviews .symbol {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
  opacity: 0.3;
}

.no-reviews p {
  font-size: 16px;
}

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 768px) {
  .site-wrapper {
    padding: 0 16px;
  }

  .hero {
    padding: 80px 0 48px;
  }

  .hero h1 {
    letter-spacing: 2px;
  }

  .rating-overview {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
  }

  .rating-big {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .rating-big-number {
    font-size: 56px;
  }

  .rating-stats {
    gap: 16px;
    flex-wrap: wrap;
  }

  .review-grid {
    gap: 16px;
  }

  .filter-bar {
    flex-direction: column;
  }

  .filter-row-top {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .write-review-section {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 36px;
  }

  .review-card {
    padding: 18px 20px;
  }

  .rating-big-number {
    font-size: 44px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 4px 14px;
  }
}
