/* ================================================================
   FOREST CAMP — 森林营地 / 温暖户外纸感主题
   设计语言：暖纸米色背景 · 有机圆角 · 木质边框 · 柔和暖投影
   配色：深林绿 #2F5D3A · 苔藓橄榄 #6B8E4E · 陶土赤褐 #C2703D · 暖纸米 #F4EDE0
   反 AI 感手法：
     - 零蓝紫，纯绿/棕/陶土/米色暖色系，明矿暖意手作感
     - 柔和暖色投影（earthy soft shadow），无硬黑、无霓虹
     - 有机圆角替代斜切，木质棕色边框与分割线
     - Fraunces 暖意衬线标题（可带斜体重音），Nunito 正文 UI 字体
     - 纸纹微底（低透绿/棕径向 + 线性渐变叠层），哑光温暖
   字体由 layout 异步加载 Fraunces + Nunito
   ================================================================ */

/* ─────────────────────────────────────────────────
   1. :root 全量变量覆盖（彻底盖掉 glass-theme 的蓝紫）
   ───────────────────────────────────────────────── */
:root {
  --primary-color:    #2F5D3A;
  --secondary-color:  #6B8E4E;
  --accent-color:     #C2703D;
  --success-color:    #4E8C5A;
  --warning-color:    #D9A441;
  --danger-color:     #B5452F;

  --bg-primary:    #F4EDE0;
  --bg-secondary:  #FBF7EF;
  --bg-tertiary:   #E8DFCD;

  --text-primary:   #2C261C;
  --text-secondary: #5C5141;
  --text-tertiary:  #8C7E68;

  --glass-bg:        #FBF7EF;
  --glass-border:    rgba(139, 111, 71, 0.28);
  --glass-shadow:    0 10px 26px rgba(60, 45, 25, 0.14);
  --nav-bg:          rgba(244, 237, 224, 0.92);
  --search-input-bg: #FBF7EF;
  --panel-bg:        #FBF7EF;
  --footer-bg:       #E8DFCD;

  --border-radius-sm: 10px;
  --border-radius-md: 16px;
  --border-radius-lg: 22px;

  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.24s cubic-bezier(0.34, 1.2, 0.64, 1);

  --gradient-primary:   linear-gradient(135deg, #2F5D3A, #6B8E4E);
  --gradient-secondary: linear-gradient(135deg, #FBF7EF, #E8DFCD);
  --gradient-accent:    linear-gradient(135deg, #C2703D, #D9A441);

  --shadow-sm: 0 4px 12px rgba(60, 45, 25, 0.10);
  --shadow-md: 0 10px 26px rgba(60, 45, 25, 0.14);
  --shadow-lg: 0 18px 44px rgba(60, 45, 25, 0.18);

  /* 木质棕色描边与分割线 */
  --line-color:  #8B6F47;
}

/* ─────────────────────────────────────────────────
   2. Body：暖纸米色 + 极淡有机纸纹
   ───────────────────────────────────────────────── */
body.theme-forest-camp {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif !important;
  background-color: #F4EDE0 !important;
  background-image:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(47, 93, 58, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(194, 112, 61, 0.04) 0%, transparent 55%),
    linear-gradient(rgba(139, 111, 71, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 111, 71, 0.025) 1px, transparent 1px) !important;
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px !important;
  background-attachment: fixed !important;
  color: #2C261C !important;
}

/* ─────────────────────────────────────────────────
   3. Keyframes
   ───────────────────────────────────────────────── */
@keyframes fc-sway {
  0%, 100% { transform: rotate(-2deg); }
  50%       { transform: rotate(2deg); }
}
@keyframes fc-drift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────
   4. 粒子：柔和苔绿叶状圆点
   ───────────────────────────────────────────────── */
body.theme-forest-camp .particle {
  background: radial-gradient(circle at 35% 30%, #6B8E4E, #2F5D3A) !important;
  box-shadow: none !important;
  opacity: 0.12 !important;
  border-radius: 50% 50% 50% 0 !important;
  clip-path: none !important;
}

/* ═════════════════════════════════════════════════
   5. 顶部导航：暖纸奶油 + 深林绿点缀 + 木质底边
   ═════════════════════════════════════════════════ */
body.theme-forest-camp .glass-nav {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: auto !important;
  flex-direction: column !important;
  padding: 0 !important;
  border-right: none !important;
  border-bottom: 2px solid var(--line-color) !important;
  border-radius: 0 !important;
  background: rgba(244, 237, 224, 0.92) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  overflow: visible !important;
  z-index: 1000 !important;
  box-shadow: 0 6px 18px rgba(60, 45, 25, 0.08) !important;
}

body.theme-forest-camp .glass-nav-container {
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
  max-width: 1600px !important;
  height: auto !important;
  padding: 12px 32px !important;
  gap: 24px !important;
  margin: 0 auto !important;
  position: relative !important;
}

/* Logo：Fraunces 暖意衬线 + 深林绿 + 树形重音 */
body.theme-forest-camp .glass-logo {
  font-family: 'Fraunces', Georgia, serif !important;
  font-size: 1.55rem !important;
  font-weight: 700 !important;
  font-style: normal !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  color: #2F5D3A !important;
  -webkit-text-fill-color: #2F5D3A !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  padding: 4px 18px 4px 14px !important;
  margin: 0 !important;
  width: auto !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  background: #FBF7EF !important;
  border: 2px solid var(--line-color) !important;
  border-radius: var(--border-radius-md) !important;
  clip-path: none !important;
  flex-shrink: 0 !important;
}
body.theme-forest-camp .glass-logo a {
  color: #2F5D3A !important;
  -webkit-text-fill-color: #2F5D3A !important;
}
body.theme-forest-camp .glass-logo::before {
  content: '▲';
  margin-right: 8px;
  font-style: normal;
  font-size: 0.85em;
  color: #2F5D3A;
}

/* 主菜单 */
body.theme-forest-camp .glass-nav-menu {
  flex-direction: row !important;
  gap: 4px !important;
  width: auto !important;
  display: flex !important;
  margin: 0 !important;
  list-style: none !important;
  padding: 0 !important;
}
body.theme-forest-camp .glass-nav-menu::before { content: none !important; }

body.theme-forest-camp .glass-nav-link {
  display: flex !important;
  align-items: center !important;
  width: auto !important;
  padding: 9px 18px !important;
  border: none !important;
  border-radius: var(--border-radius-md) !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  font-style: normal !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  color: var(--text-secondary) !important;
  background: transparent !important;
  text-decoration: none !important;
  transition: var(--transition) !important;
  position: relative !important;
}
body.theme-forest-camp .glass-nav-link::after {
  content: '';
  position: absolute;
  left: 18px; right: 18px; bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: #C2703D;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
body.theme-forest-camp .glass-nav-link:hover { color: #2F5D3A !important; }
body.theme-forest-camp .glass-nav-link:hover::after { transform: scaleX(1); }
body.theme-forest-camp .glass-nav-link.active {
  color: #FBF7EF !important;
  background: #2F5D3A !important;
}
body.theme-forest-camp .glass-nav-link.active::after { transform: scaleX(0); }

/* 顶部分类条（横向滚动） */
body.theme-forest-camp .glass-nav-categories {
  display: flex !important;
  align-items: center !important;
  flex: 1 !important;
  min-width: 0 !important;
  border-top: none !important;
  padding: 0 !important;
  margin: 0 0 0 8px !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
}
body.theme-forest-camp .glass-nav-categories::-webkit-scrollbar { display: none; }
body.theme-forest-camp .nav-section-label { display: none !important; }

body.theme-forest-camp .glass-nav-categories .nav-category-list {
  display: flex !important;
  flex-direction: row !important;
  gap: 6px !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}
body.theme-forest-camp .nav-category-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 5px 14px !important;
  border: 1px solid var(--line-color) !important;
  border-radius: 999px !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  color: var(--text-secondary) !important;
  background: #FBF7EF !important;
  text-decoration: none !important;
  transition: var(--transition) !important;
  white-space: nowrap !important;
  clip-path: none !important;
}
body.theme-forest-camp .nav-category-link:hover {
  color: #2F5D3A !important;
  border-color: #2F5D3A !important;
}
body.theme-forest-camp .nav-category-link.active {
  color: #FBF7EF !important;
  background: #2F5D3A !important;
  border-color: #2F5D3A !important;
}
body.theme-forest-camp .cat-dot {
  width: 7px; height: 7px;
  border-radius: 50% 50% 50% 0 !important;
  clip-path: none !important;
  background: #6B8E4E;
  flex-shrink: 0;
}

/* 搜索框 */
body.theme-forest-camp .glass-nav-actions {
  flex-direction: row !important;
  align-items: center !important;
  width: auto !important;
  margin: 0 0 0 auto !important;
  padding: 0 !important;
  border-top: none !important;
  gap: 8px !important;
  order: 99 !important;
  flex-shrink: 0 !important;
}
body.theme-forest-camp .glass-search-box {
  width: auto !important;
  flex-direction: row !important;
  gap: 0 !important;
}
body.theme-forest-camp .glass-search-input {
  width: 200px !important;
  flex: none !important;
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md) !important;
  background: var(--search-input-bg) !important;
  border: 1px solid var(--line-color) !important;
  border-right: none !important;
  color: #2C261C !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  padding: 8px 14px !important;
}
body.theme-forest-camp .glass-search-input::placeholder {
  color: var(--text-tertiary);
  text-transform: none;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
body.theme-forest-camp .glass-search-input:focus {
  border-color: #2F5D3A !important;
  outline: none !important;
}
body.theme-forest-camp .glass-search-btn {
  width: auto !important;
  flex-shrink: 0 !important;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0 !important;
  background: #2F5D3A !important;
  border: 1px solid #2F5D3A !important;
  color: #FBF7EF !important;
  font-size: 0.9rem !important;
  padding: 8px 16px !important;
  transition: var(--transition) !important;
}
body.theme-forest-camp .glass-search-btn:hover {
  background: #6B8E4E !important;
  opacity: 1 !important;
}

/* ─────────────────────────────────────────────────
   6. 主内容区
   ───────────────────────────────────────────────── */
body.theme-forest-camp .main-container {
  margin-left: 0 !important;
  padding: 24px 0 !important;
  max-width: 1600px !important;
  margin: 0 auto !important;
}
body.theme-forest-camp .main-content > .container {
  max-width: 1600px !important;
  padding: 0 32px !important;
}
body.theme-forest-camp .particles { left: 0 !important; width: 100% !important; }

/* ═════════════════════════════════════════════════
   7. 通用卡片：木卡纸 + 有机圆角 + 柔和暖投影
   ═════════════════════════════════════════════════ */
body.theme-forest-camp .glass-card {
  background: #FBF7EF !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--border-radius-lg) !important;
  box-shadow: var(--shadow-sm) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: var(--transition) !important;
  position: relative !important;
  overflow: hidden !important;
  clip-path: none !important;
}
body.theme-forest-camp .glass-card:hover {
  border-color: #6B8E4E !important;
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-3px) !important;
}
body.theme-forest-camp .glass-card-image {
  transition: transform 0.3s ease, filter 0.3s ease !important;
  display: block !important;
}
body.theme-forest-camp .glass-card:hover .glass-card-image {
  transform: scale(1.05) !important;
  filter: saturate(1.1) contrast(1.03) !important;
}
body.theme-forest-camp .glass-card-badge {
  position: absolute !important;
  top: 10px; left: 10px;
  background: #2F5D3A !important;
  color: #FBF7EF !important;
  border-radius: 999px !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 0.64rem !important;
  font-weight: 800 !important;
  font-style: normal !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 3px 12px !important;
  clip-path: none !important;
  z-index: 2 !important;
}
body.theme-forest-camp .glass-card-badge.new {
  background: #C2703D !important;
  color: #fff !important;
}
body.theme-forest-camp .glass-card-category {
  background: #E8DFCD !important;
  border: 1px solid var(--glass-border) !important;
  color: #2F5D3A !important;
  border-radius: 999px !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 0.67rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  padding: 3px 10px !important;
}
body.theme-forest-camp .glass-card-title {
  font-family: 'Fraunces', Georgia, serif !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  font-style: normal !important;
  color: #2C261C !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
body.theme-forest-camp .glass-card-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(44, 38, 28, 0.78) 100%) !important;
  border-radius: 0 !important;
}
body.theme-forest-camp .fa-star { color: #D9A441 !important; }

/* 卡片网格 */
body.theme-forest-camp .glass-grid,
body.theme-forest-camp .glass-featured-grid,
body.theme-forest-camp .glass-popular-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 18px !important;
}
body.theme-forest-camp .glass-grid.two-columns {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* ═════════════════════════════════════════════════
   8. 节标题：Fraunces 衬线 + 叶点/陶土重音
   ═════════════════════════════════════════════════ */
body.theme-forest-camp .glass-section-header {
  display: flex !important;
  align-items: baseline !important;
  flex-wrap: wrap !important;
  gap: 10px 16px !important;
  margin: 36px 0 20px !important;
  position: relative !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid var(--line-color) !important;
}
body.theme-forest-camp .glass-section-title,
body.theme-forest-camp .glass-title.h2 {
  font-family: 'Fraunces', Georgia, serif !important;
  color: #2C261C !important;
  font-weight: 700 !important;
  font-style: normal !important;
  font-size: 1.85rem !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
}
body.theme-forest-camp .glass-section-title::before,
body.theme-forest-camp .glass-title.h2::before {
  content: '\2767' !important;
  color: #C2703D !important;
  font-weight: 700 !important;
  font-style: normal !important;
}
body.theme-forest-camp .glass-subtitle {
  font-family: 'Nunito', sans-serif !important;
  color: var(--text-secondary) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
}
body.theme-forest-camp .glass-view-all { margin-left: auto !important; }

body.theme-forest-camp .glass-title {
  font-family: 'Fraunces', Georgia, serif !important;
  color: #2C261C !important;
  font-weight: 600 !important;
  font-style: normal !important;
}
body.theme-forest-camp .glass-title.h1,
body.theme-forest-camp .glass-hero-title {
  font-family: 'Fraunces', Georgia, serif !important;
  font-weight: 700 !important;
  font-style: normal !important;
  font-size: 3rem !important;
  color: #2C261C !important;
  text-transform: none !important;
  letter-spacing: -0.02em !important;
  text-shadow: none !important;
  line-height: 1.02 !important;
}
body.theme-forest-camp p { color: var(--text-secondary) !important; }

/* ═════════════════════════════════════════════════
   9. 按钮：深林绿实底奶油字 + 圆角柔投影
   ═════════════════════════════════════════════════ */
body.theme-forest-camp .glass-button,
body.theme-forest-camp .glass-button.primary {
  background: #2F5D3A !important;
  border: none !important;
  color: #FBF7EF !important;
  border-radius: var(--border-radius-md) !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  font-style: normal !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: var(--transition) !important;
  clip-path: none !important;
  padding: 11px 26px !important;
  box-shadow: var(--shadow-sm) !important;
}
body.theme-forest-camp .glass-button:hover,
body.theme-forest-camp .glass-button.primary:hover {
  background: #6B8E4E !important;
  color: #FBF7EF !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-md) !important;
}
body.theme-forest-camp .glass-button.secondary {
  background: transparent !important;
  border: 2px solid #2F5D3A !important;
  color: #2F5D3A !important;
  box-shadow: none !important;
}
body.theme-forest-camp .glass-button.secondary:hover {
  background: #2F5D3A !important;
  color: #FBF7EF !important;
  box-shadow: none !important;
}
body.theme-forest-camp .glass-button.accent {
  background: #C2703D !important;
  color: #fff !important;
}
body.theme-forest-camp .glass-button.accent:hover { background: #d27f4a !important; color: #fff !important; }
body.theme-forest-camp .glass-button.small { font-size: 0.78rem !important; padding: 7px 16px !important; }
body.theme-forest-camp .glass-button.large { font-size: 1rem !important; padding: 14px 34px !important; }

/* ─────────────────────────────────────────────────
   10. 通用 hero / 面板（非专属 hero 兜底）
   ───────────────────────────────────────────────── */
body.theme-forest-camp .glass-hero-section,
body.theme-forest-camp .glass-panel,
body.theme-forest-camp .glass-section {
  background: #FBF7EF !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--border-radius-lg) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  clip-path: none !important;
  padding: 40px !important;
}
body.theme-forest-camp .glass-hero-overlay {
  background: linear-gradient(90deg, rgba(44,38,28,0.78) 0%, rgba(44,38,28,0.3) 100%) !important;
}
body.theme-forest-camp .hero-accent { color: #2F5D3A !important; }
body.theme-forest-camp .hero-secondary { color: #6B8E4E !important; }
body.theme-forest-camp .glass-orb { display: none !important; }

/* ═════════════════════════════════════════════════
   11. Footer：暖陶土米 + 木质顶边
   ═════════════════════════════════════════════════ */
body.theme-forest-camp .cyber-footer,
body.theme-forest-camp .glass-footer {
  background: #E8DFCD !important;
  border-top: 2px solid var(--line-color) !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  position: relative !important;
  margin-top: 60px !important;
}
body.theme-forest-camp .footer-content {
  background: transparent !important;
  padding: 44px 32px 24px !important;
  max-width: 1600px !important;
  margin: 0 auto !important;
}
body.theme-forest-camp .footer-section { text-align: left !important; }
body.theme-forest-camp .footer-title {
  font-family: 'Fraunces', Georgia, serif !important;
  color: #2F5D3A !important;
  text-shadow: none !important;
  text-transform: none !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  margin-bottom: 14px !important;
}
body.theme-forest-camp .footer-links { list-style: none !important; padding: 0 !important; }
body.theme-forest-camp .footer-links li { margin-bottom: 8px !important; }
body.theme-forest-camp .footer-links a {
  font-family: 'Nunito', sans-serif !important;
  color: var(--text-secondary) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
  text-decoration: none !important;
}
body.theme-forest-camp .footer-links a:hover { color: #2F5D3A !important; padding-left: 6px !important; }

/* ─────────────────────────────────────────────────
   12. 移动端面板
   ───────────────────────────────────────────────── */
body.theme-forest-camp .mobile-panel {
  background: #FBF7EF !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-left: 3px solid #2F5D3A !important;
}
body.theme-forest-camp .panel-header {
  border-bottom: 1px solid var(--glass-border) !important;
  background: #F4EDE0 !important;
}
body.theme-forest-camp .mobile-link {
  font-family: 'Nunito', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  font-style: normal !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  color: var(--text-secondary) !important;
  border-radius: var(--border-radius-sm) !important;
  border-left: 3px solid transparent !important;
  background: transparent !important;
}
body.theme-forest-camp .mobile-link:hover,
body.theme-forest-camp .mobile-link.active {
  background: rgba(47, 93, 58, 0.08) !important;
  border-left-color: #2F5D3A !important;
  color: #2F5D3A !important;
}
body.theme-forest-camp .mobile-categories {
  border-top: 1px solid var(--glass-border);
  padding-top: 12px;
  margin-top: 12px;
}
body.theme-forest-camp .panel-close { color: #2F5D3A !important; border-radius: var(--border-radius-sm) !important; }
body.theme-forest-camp .panel-close:hover { background: rgba(47, 93, 58, 0.1) !important; }
body.theme-forest-camp .hamburger { color: #2F5D3A !important; font-size: 1.4rem !important; }

/* ─────────────────────────────────────────────────
   13. 滚动条 / 选中
   ───────────────────────────────────────────────── */
body.theme-forest-camp ::-webkit-scrollbar { width: 8px; height: 8px; }
body.theme-forest-camp ::-webkit-scrollbar-track { background: #E8DFCD; }
body.theme-forest-camp ::-webkit-scrollbar-thumb { background: #6B8E4E; border-radius: 999px; }
body.theme-forest-camp ::-webkit-scrollbar-thumb:hover { background: #2F5D3A; }
body.theme-forest-camp ::selection { background: #6B8E4E; color: #FBF7EF; }
body.theme-forest-camp input:focus,
body.theme-forest-camp textarea:focus,
body.theme-forest-camp select:focus { outline-color: #2F5D3A !important; }

/* ═════════════════════════════════════════════════
   14. 首页专属 HERO（vh-* = volt home 复用结构）暖纸营地横幅
   ═════════════════════════════════════════════════ */
body.theme-forest-camp .vh-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  clip-path: none;
  box-shadow: var(--shadow-md);
}
body.theme-forest-camp .vh-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: sepia(0.25) brightness(0.45) saturate(1.05);
  transform: scale(1.08);
}
/* 暖绿向陶土的横向叠层 */
body.theme-forest-camp .vh-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(107,142,78,0.22) 0%, transparent 42%),
    linear-gradient(90deg, rgba(44,38,28,0.92) 0%, rgba(44,38,28,0.6) 55%, rgba(44,38,28,0.3) 100%);
}
body.theme-forest-camp .vh-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 56px 56px;
}
body.theme-forest-camp .vh-hero-text { flex: 1; min-width: 0; }
body.theme-forest-camp .vh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FBF7EF;
  background: #C2703D;
  padding: 4px 16px;
  border-radius: 999px;
  clip-path: none;
  margin-bottom: 18px;
}
body.theme-forest-camp .vh-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #FBF7EF;
  margin: 0 0 18px;
}
body.theme-forest-camp .vh-title .vh-title-hl {
  color: #6B8E4E;
  font-style: italic;
  display: block;
}
body.theme-forest-camp .vh-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #E8DFCD;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 0 26px;
}
body.theme-forest-camp .vh-actions { display: flex; gap: 14px; flex-wrap: wrap; }
body.theme-forest-camp .vh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  background: #2F5D3A;
  color: #FBF7EF;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  border-radius: var(--border-radius-md);
  clip-path: none;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
body.theme-forest-camp .vh-btn-primary:hover {
  background: #6B8E4E;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
body.theme-forest-camp .vh-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid #FBF7EF;
  color: #FBF7EF;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  border-radius: var(--border-radius-md);
  transition: var(--transition);
}
body.theme-forest-camp .vh-btn-ghost:hover { background: #FBF7EF; color: #2F5D3A; }

/* 右：主打封面（圆角）+ 缩略图轨 */
body.theme-forest-camp .vh-hero-visual {
  flex-shrink: 0;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.theme-forest-camp .vh-hero-cover {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  clip-path: none;
  border: 2px solid #FBF7EF;
  aspect-ratio: 16/10;
}
body.theme-forest-camp .vh-hero-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
body.theme-forest-camp .vh-hero-cover:hover img { transform: scale(1.05); }
body.theme-forest-camp .vh-hero-cover-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44,38,28,0.4);
  color: #FBF7EF;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
body.theme-forest-camp .vh-hero-cover:hover .vh-hero-cover-play { opacity: 1; }
body.theme-forest-camp .vh-hero-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
body.theme-forest-camp .vh-hero-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  clip-path: none;
  border: 1px solid var(--glass-border);
  aspect-ratio: 1;
  transition: var(--transition);
}
body.theme-forest-camp .vh-hero-thumb:hover { border-color: #6B8E4E; }
body.theme-forest-camp .vh-hero-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
body.theme-forest-camp .vh-hero-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44,38,28,0.45);
  color: #FBF7EF;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.18s ease;
}
body.theme-forest-camp .vh-hero-thumb:hover .vh-hero-thumb-play { opacity: 1; }

/* ═════════════════════════════════════════════════
   15. 列表页（ap-* 类）
   ═════════════════════════════════════════════════ */
body.theme-forest-camp .ap-list-wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 32px;
}
body.theme-forest-camp .ap-list-head { margin-bottom: 22px; }
body.theme-forest-camp .ap-list-title {
  font-family: 'Fraunces', Georgia, serif !important;
  font-size: 2.4rem;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  letter-spacing: -0.02em;
  color: #2C261C;
  margin: 0 0 6px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
body.theme-forest-camp .ap-list-title-cat { color: #2F5D3A; }
body.theme-forest-camp .ap-list-title-label { color: #2C261C; }
body.theme-forest-camp .ap-list-count {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 0;
}
body.theme-forest-camp .ap-cat-track-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line-color);
  padding-bottom: 16px;
}
body.theme-forest-camp .ap-cat-track-wrap::-webkit-scrollbar { display: none; }
body.theme-forest-camp .ap-cat-track { display: flex; flex-wrap: wrap; gap: 8px; }
body.theme-forest-camp .ap-cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  border: 1px solid var(--line-color);
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-secondary);
  background: #FBF7EF;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  clip-path: none;
}
body.theme-forest-camp .ap-cat-pill:hover { color: #2F5D3A; border-color: #2F5D3A; }
body.theme-forest-camp .ap-cat-pill.active {
  color: #FBF7EF;
  background: #2F5D3A;
  border-color: #2F5D3A;
}
body.theme-forest-camp .ap-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}
body.theme-forest-camp .ap-game-card {
  display: block;
  text-decoration: none;
  background: #FBF7EF;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  clip-path: none;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
body.theme-forest-camp .ap-game-card:hover {
  border-color: #6B8E4E;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
body.theme-forest-camp .ap-card-thumb {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}
body.theme-forest-camp .ap-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}
body.theme-forest-camp .ap-game-card:hover .ap-card-thumb img {
  transform: scale(1.05);
  filter: saturate(1.1);
}
body.theme-forest-camp .ap-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 12px;
  background: #2F5D3A;
  color: #FBF7EF;
  border-radius: 999px;
  clip-path: none;
  z-index: 2;
}
body.theme-forest-camp .ap-card-badge.new { background: #C2703D; color: #fff; }
body.theme-forest-camp .ap-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 38, 28, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}
body.theme-forest-camp .ap-game-card:hover .ap-card-play { opacity: 1; }
body.theme-forest-camp .ap-play-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2F5D3A;
  border-radius: 50%;
  clip-path: none;
  color: #FBF7EF;
  font-size: 1.1rem;
}
body.theme-forest-camp .ap-card-info {
  padding: 10px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.theme-forest-camp .ap-card-cat {
  font-family: 'Nunito', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B8E4E;
}
body.theme-forest-camp .ap-card-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
  color: #2C261C;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.theme-forest-camp .ap-card-rating { font-size: 0.75rem; }

/* 分页 */
body.theme-forest-camp .ap-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
body.theme-forest-camp .ap-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: var(--border-radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: #FBF7EF;
  border: 1px solid var(--line-color);
  text-decoration: none;
  transition: var(--transition);
}
body.theme-forest-camp .ap-page-btn:hover { color: #2F5D3A; border-color: #2F5D3A; }
body.theme-forest-camp .ap-page-btn.active {
  color: #FBF7EF;
  background: #2F5D3A;
  border-color: #2F5D3A;
}
body.theme-forest-camp .ap-page-ellipsis {
  color: var(--text-tertiary);
  font-size: 0.85rem;
  padding: 0 4px;
}

/* ═════════════════════════════════════════════════
   16. 详情页（ap-detail-* 类）
   ═════════════════════════════════════════════════ */
body.theme-forest-camp .ap-detail-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px 48px;
}
body.theme-forest-camp .ap-detail-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
  border-radius: var(--border-radius-lg);
  clip-path: none;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}
body.theme-forest-camp .ap-detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: sepia(0.25) brightness(0.42) saturate(1.05);
  transform: scale(1.08);
}
body.theme-forest-camp .ap-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(107,142,78,0.2) 0%, transparent 42%),
    linear-gradient(90deg, rgba(44,38,28,0.92) 0%, rgba(44,38,28,0.55) 100%);
}
body.theme-forest-camp .ap-detail-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 40px;
}
body.theme-forest-camp .ap-detail-poster {
  position: relative;
  flex-shrink: 0;
  width: 260px;
  border-radius: var(--border-radius-lg);
  clip-path: none;
  border: 2px solid #FBF7EF;
  overflow: hidden;
}
body.theme-forest-camp .ap-detail-poster img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
body.theme-forest-camp .ap-detail-play-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 38, 28, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease;
  text-decoration: none;
}
body.theme-forest-camp .ap-detail-poster:hover .ap-detail-play-cover { opacity: 1; }
body.theme-forest-camp .ap-detail-play-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2F5D3A;
  border-radius: 50%;
  clip-path: none;
  color: #FBF7EF;
  font-size: 1.4rem;
}
body.theme-forest-camp .ap-detail-info { flex: 1; min-width: 0; }
body.theme-forest-camp .ap-detail-cat {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FBF7EF;
  background: #C2703D;
  padding: 4px 16px;
  border-radius: 999px;
  clip-path: none;
  margin-bottom: 14px;
}
body.theme-forest-camp .ap-detail-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  font-style: normal;
  color: #FBF7EF;
  text-transform: none;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  line-height: 1.02;
}
body.theme-forest-camp .ap-detail-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
body.theme-forest-camp .ap-detail-score {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #2C261C;
  background: #D9A441;
  padding: 2px 14px;
  border-radius: 999px;
  clip-path: none;
}
body.theme-forest-camp .ap-detail-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #E8DFCD;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 620px;
}
body.theme-forest-camp .ap-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }
body.theme-forest-camp .ap-btn-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: #2F5D3A;
  border: none;
  color: #FBF7EF;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  border-radius: var(--border-radius-md);
  clip-path: none;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
body.theme-forest-camp .ap-btn-play:hover {
  background: #6B8E4E;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #FBF7EF;
}
body.theme-forest-camp .ap-btn-cat {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  background: transparent;
  border: 2px solid #FBF7EF;
  color: #FBF7EF;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  border-radius: var(--border-radius-md);
  transition: var(--transition);
}
body.theme-forest-camp .ap-btn-cat:hover { background: #FBF7EF; color: #2F5D3A; }
body.theme-forest-camp .ap-detail-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}
body.theme-forest-camp .ap-detail-card {
  background: #FBF7EF;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  clip-path: none;
  box-shadow: var(--shadow-sm);
  padding: 24px 28px;
  margin-bottom: 18px;
}
body.theme-forest-camp .ap-detail-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  font-style: normal;
  color: #2C261C;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-color);
}
body.theme-forest-camp .ap-detail-card-accent {
  display: block;
  width: 5px;
  height: 1em;
  background: #C2703D;
  border-radius: 999px;
  flex-shrink: 0;
  transform: none;
}
body.theme-forest-camp .ap-detail-card-text {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
body.theme-forest-camp .ap-detail-info-list { list-style: none; padding: 0; margin: 0; }
body.theme-forest-camp .ap-detail-info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--glass-border);
  gap: 12px;
}
body.theme-forest-camp .ap-detail-info-list li:last-child { border-bottom: none; }
body.theme-forest-camp .ap-info-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
body.theme-forest-camp .ap-info-value {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: right;
}
body.theme-forest-camp .ap-info-rating { color: #2F5D3A; font-weight: 800; }
body.theme-forest-camp .ap-rec-list { display: flex; flex-direction: column; gap: 10px; }
body.theme-forest-camp .ap-rec-item {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: var(--border-radius-md);
  transition: var(--transition);
  clip-path: none;
}
body.theme-forest-camp .ap-rec-item:hover {
  background: rgba(47, 93, 58, 0.06);
  border-color: var(--glass-border);
}
body.theme-forest-camp .ap-rec-thumb {
  position: relative;
  width: 72px;
  height: 54px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  clip-path: none;
}
body.theme-forest-camp .ap-rec-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}
body.theme-forest-camp .ap-rec-item:hover .ap-rec-thumb img { transform: scale(1.08); }
body.theme-forest-camp .ap-rec-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 38, 28, 0.5);
  color: #FBF7EF;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.18s ease;
}
body.theme-forest-camp .ap-rec-item:hover .ap-rec-play { opacity: 1; }
body.theme-forest-camp .ap-rec-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.theme-forest-camp .ap-rec-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.92rem;
  font-weight: 600;
  font-style: normal;
  color: #2C261C;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.theme-forest-camp .ap-rec-cat {
  font-family: 'Nunito', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6B8E4E;
}

/* ═════════════════════════════════════════════════
   17. 搜索页（glass-search-* 补充覆盖）
   ═════════════════════════════════════════════════ */
body.theme-forest-camp .glass-search-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 32px 48px;
}
body.theme-forest-camp .glass-search-header { margin-bottom: 28px; }
body.theme-forest-camp .glass-search-header .glass-title.h1 { font-size: 2.4rem; }
body.theme-forest-camp .glass-search-section { margin-bottom: 32px; }
body.theme-forest-camp .glass-search-input-group .glass-search-input {
  background: var(--search-input-bg) !important;
  border: 1px solid var(--line-color) !important;
  color: #2C261C !important;
}
body.theme-forest-camp .glass-results-header {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-color);
  margin-bottom: 24px !important;
  text-align: left !important;
}
body.theme-forest-camp .glass-search-tips {
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--border-radius-lg) !important;
  clip-path: none !important;
}
body.theme-forest-camp .glass-no-results-icon,
body.theme-forest-camp .glass-search-icon { color: #6B8E4E !important; }
body.theme-forest-camp .glass-games-grid .glass-card-media img { height: 160px !important; }

/* ═════════════════════════════════════════════════
   18. 播放页（glass-play-* / glass-game-*）
   ═════════════════════════════════════════════════ */
body.theme-forest-camp .glass-play-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 32px 48px;
}
body.theme-forest-camp .glass-game-player {
  border: 2px solid #6B8E4E !important;
  border-radius: var(--border-radius-lg) !important;
  clip-path: none !important;
  box-shadow: var(--shadow-md) !important;
  overflow: hidden !important;
}
body.theme-forest-camp .glass-game-iframe { background: #2C261C !important; }
body.theme-forest-camp .glass-meta-value { color: #2F5D3A !important; }

/* ═════════════════════════════════════════════════
   19. 响应式
   ═════════════════════════════════════════════════ */
@media (max-width: 1400px) {
  body.theme-forest-camp .ap-list-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1200px) {
  body.theme-forest-camp .glass-grid,
  body.theme-forest-camp .glass-featured-grid,
  body.theme-forest-camp .glass-popular-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 1024px) {
  body.theme-forest-camp .ap-list-grid { grid-template-columns: repeat(3, 1fr); }
  body.theme-forest-camp .vh-hero-visual { width: 340px; }
}
@media (max-width: 992px) {
  body.theme-forest-camp .glass-nav-menu,
  body.theme-forest-camp .glass-nav-categories { display: none !important; }
  body.theme-forest-camp .glass-nav-container { padding: 12px 20px !important; }
  body.theme-forest-camp .glass-search-input { width: 140px !important; }
  body.theme-forest-camp .glass-grid,
  body.theme-forest-camp .glass-featured-grid,
  body.theme-forest-camp .glass-popular-grid { grid-template-columns: repeat(2, 1fr) !important; }
  body.theme-forest-camp .main-content > .container { padding: 0 20px !important; }
  body.theme-forest-camp .vh-hero-inner { flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 28px; }
  body.theme-forest-camp .vh-hero-visual { width: 100%; }
  body.theme-forest-camp .ap-detail-body { grid-template-columns: 1fr; }
  body.theme-forest-camp .ap-detail-hero-inner { flex-direction: column; align-items: flex-start; padding: 24px; gap: 20px; }
  body.theme-forest-camp .ap-detail-poster { width: 100%; max-width: 320px; }
  body.theme-forest-camp .ap-detail-title { font-size: 2rem; }
  body.theme-forest-camp .ap-detail-wrap { padding: 0 20px 32px; }
}
@media (max-width: 768px) {
  body.theme-forest-camp .ap-list-wrap { padding: 16px 20px; }
  body.theme-forest-camp .ap-list-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  body.theme-forest-camp .glass-title.h1,
  body.theme-forest-camp .glass-hero-title { font-size: 2rem !important; }
}
@media (max-width: 576px) {
  body.theme-forest-camp .glass-grid,
  body.theme-forest-camp .glass-featured-grid,
  body.theme-forest-camp .glass-popular-grid { grid-template-columns: 1fr !important; }
  body.theme-forest-camp .glass-search-box { display: none !important; }
  body.theme-forest-camp .vh-hero-thumbs { grid-template-columns: repeat(4, 1fr); }
}

/* ═════════════════════════════════════════════════
   20. 首页专属 HERO — 营地公告板（fch-*）
   框景照片（木框）+ 木质公告面板 + 竖向 trail 步道
   ═════════════════════════════════════════════════ */
body.theme-forest-camp .fch-hero {
  display: flex !important;
  gap: 36px !important;
  align-items: stretch !important;
  margin-bottom: 44px !important;
  padding: 26px !important;
  background:
    radial-gradient(ellipse 70% 60% at 18% 0%, rgba(107, 142, 78, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 100% 100%, rgba(194, 112, 61, 0.08) 0%, transparent 55%),
    #F4EDE0 !important;
  border: 2px solid var(--line-color) !important;
  border-radius: var(--border-radius-lg) !important;
  box-shadow: var(--shadow-md) !important;
  clip-path: none !important;
  position: relative !important;
}

/* 左：框景照片（木框） */
body.theme-forest-camp .fch-hero-photo {
  position: relative !important;
  display: block !important;
  flex: 0 0 46% !important;
  max-width: 46% !important;
  overflow: hidden !important;
  border-radius: var(--border-radius-md) !important;
  clip-path: none !important;
  border: 8px solid #8B6F47 !important;
  box-shadow:
    inset 0 0 0 2px rgba(251, 247, 239, 0.6),
    var(--shadow-md) !important;
  background: #2C261C !important;
  aspect-ratio: 16 / 11 !important;
}
body.theme-forest-camp .fch-hero-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.35s ease !important;
}
body.theme-forest-camp .fch-hero-photo:hover img { transform: scale(1.05) !important; }
body.theme-forest-camp .fch-hero-photo-play {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(47, 93, 58, 0.42) !important;
  color: #FBF7EF !important;
  font-size: 2.2rem !important;
  opacity: 0 !important;
  transition: opacity 0.2s ease !important;
}
body.theme-forest-camp .fch-hero-photo:hover .fch-hero-photo-play { opacity: 1 !important; }

/* 右：木质公告面板 */
body.theme-forest-camp .fch-hero-board {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 18px 8px 18px 4px !important;
}
body.theme-forest-camp .fch-eyebrow {
  display: inline-flex !important;
  align-self: flex-start !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #FBF7EF !important;
  background: #C2703D !important;
  padding: 4px 16px !important;
  border-radius: 999px !important;
  clip-path: none !important;
  margin-bottom: 16px !important;
}
body.theme-forest-camp .fch-title {
  font-family: 'Fraunces', Georgia, serif !important;
  font-weight: 700 !important;
  font-style: normal !important;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  color: #5C3D22 !important;
  margin: 0 0 14px !important;
}
body.theme-forest-camp .fch-desc {
  font-family: 'Nunito', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: var(--text-secondary) !important;
  line-height: 1.6 !important;
  max-width: 520px !important;
  margin: 0 0 22px !important;
}
body.theme-forest-camp .fch-actions {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  margin-bottom: 26px !important;
}
body.theme-forest-camp .fch-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  padding: 13px 30px !important;
  background: #2F5D3A !important;
  color: #FBF7EF !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  font-style: normal !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  text-decoration: none !important;
  border-radius: var(--border-radius-md) !important;
  clip-path: none !important;
  box-shadow: var(--shadow-md) !important;
  transition: var(--transition) !important;
}
body.theme-forest-camp .fch-btn-primary:hover {
  background: #6B8E4E !important;
  color: #FBF7EF !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-lg) !important;
}
body.theme-forest-camp .fch-btn-ghost {
  display: inline-flex !important;
  align-items: center !important;
  padding: 13px 26px !important;
  background: transparent !important;
  border: 2px solid #2F5D3A !important;
  color: #2F5D3A !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  font-style: normal !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  text-decoration: none !important;
  border-radius: var(--border-radius-md) !important;
  transition: var(--transition) !important;
}
body.theme-forest-camp .fch-btn-ghost:hover {
  background: #2F5D3A !important;
  color: #FBF7EF !important;
}

/* 竖向 trail 步道：连接虚线 + 标记点 */
body.theme-forest-camp .fch-trail {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  position: relative !important;
  padding-left: 4px !important;
  border-top: 1px dashed var(--line-color) !important;
  padding-top: 14px !important;
}
body.theme-forest-camp .fch-trail-item {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  position: relative !important;
  padding: 9px 8px 9px 4px !important;
  text-decoration: none !important;
  border-radius: var(--border-radius-sm) !important;
  transition: var(--transition) !important;
}
body.theme-forest-camp .fch-trail-item:hover {
  background: rgba(47, 93, 58, 0.06) !important;
}
/* 连接竖线（穿过 dot 中心） */
body.theme-forest-camp .fch-trail-item::before {
  content: '' !important;
  position: absolute !important;
  left: 9px !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 2px !important;
  background: rgba(139, 111, 71, 0.4) !important;
  z-index: 0 !important;
}
body.theme-forest-camp .fch-trail-item:first-child::before { top: 50%; }
body.theme-forest-camp .fch-trail-item:last-child::before { bottom: 50%; }
body.theme-forest-camp .fch-trail-dot {
  position: relative !important;
  z-index: 1 !important;
  flex-shrink: 0 !important;
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  background: #6B8E4E !important;
  border: 3px solid #F4EDE0 !important;
  box-shadow: 0 0 0 1px var(--line-color) !important;
}
body.theme-forest-camp .fch-trail-item:nth-child(2) .fch-trail-dot { background: #C2703D !important; }
body.theme-forest-camp .fch-trail-name {
  font-family: 'Fraunces', Georgia, serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  font-style: normal !important;
  color: #2C261C !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  transition: color 0.2s ease !important;
}
body.theme-forest-camp .fch-trail-item:hover .fch-trail-name { color: #2F5D3A !important; }

/* fch-hero 响应式 */
@media (max-width: 992px) {
  body.theme-forest-camp .fch-hero {
    flex-direction: column !important;
    gap: 24px !important;
    padding: 20px !important;
  }
  body.theme-forest-camp .fch-hero-photo {
    flex: 1 1 auto !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  body.theme-forest-camp .fch-hero-board { padding: 4px !important; }
}
@media (max-width: 768px) {
  body.theme-forest-camp .fch-hero { padding: 14px !important; margin-bottom: 32px !important; }
  body.theme-forest-camp .fch-hero-photo { border-width: 6px !important; }
  body.theme-forest-camp .fch-title { font-size: clamp(1.8rem, 7vw, 2.4rem) !important; }
  body.theme-forest-camp .fch-desc { font-size: 0.92rem !important; }
  body.theme-forest-camp .fch-btn-primary,
  body.theme-forest-camp .fch-btn-ghost { flex: 1 1 auto !important; justify-content: center !important; }
}

/* ═════════════════════════════════════════════════
   21. 列表页结构改造 — 暖卡纸卡片（图在上 + 信息块在下）
   覆盖第 15 节，使构图区别于其它主题
   ═════════════════════════════════════════════════ */
body.theme-forest-camp .ap-game-card {
  background: #FBF7EF !important;
  border: 1px solid var(--line-color) !important;
  border-radius: var(--border-radius-md) !important;
  box-shadow: var(--shadow-sm) !important;
  overflow: hidden !important;
  transition: var(--transition) !important;
}
body.theme-forest-camp .ap-game-card:hover {
  border-color: #6B8E4E !important;
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-4px) !important;
}
/* 图在上，4/3 更"相片"感 */
body.theme-forest-camp .ap-card-thumb {
  padding-top: 66% !important;
  border-bottom: 2px solid var(--line-color) !important;
}
/* 信息块：加内边距的纸面区块 + 衬线名 */
body.theme-forest-camp .ap-card-info {
  padding: 14px 16px 16px !important;
  gap: 6px !important;
  background:
    linear-gradient(180deg, rgba(232, 223, 205, 0.35) 0%, transparent 40%),
    #FBF7EF !important;
}
body.theme-forest-camp .ap-card-name {
  font-size: 1.08rem !important;
  white-space: normal !important;
  line-height: 1.2 !important;
}

/* ═════════════════════════════════════════════════
   22. 详情页结构改造 — 框景海报 + 木卡信息 + "Field Notes"侧栏
   覆盖第 16 节，使构图区别于其它主题
   ═════════════════════════════════════════════════ */
/* hero 改为暖绿/纸叠层（非灰度），圆角 */
body.theme-forest-camp .ap-detail-hero-bg {
  filter: sepia(0.18) brightness(0.55) saturate(1.1) !important;
}
body.theme-forest-camp .ap-detail-hero-overlay {
  background:
    linear-gradient(115deg, rgba(47, 93, 58, 0.55) 0%, rgba(47, 93, 58, 0.18) 45%, transparent 70%),
    linear-gradient(0deg, rgba(244, 237, 224, 0.30) 0%, transparent 60%),
    linear-gradient(90deg, rgba(44, 38, 28, 0.86) 0%, rgba(44, 38, 28, 0.42) 100%) !important;
}
/* 框景海报（木框） */
body.theme-forest-camp .ap-detail-poster {
  width: 300px !important;
  border: 8px solid #8B6F47 !important;
  border-radius: var(--border-radius-md) !important;
  box-shadow:
    inset 0 0 0 2px rgba(251, 247, 239, 0.55),
    var(--shadow-md) !important;
}
/* body：信息主区 + 侧栏，加大侧栏 */
body.theme-forest-camp .ap-detail-body {
  grid-template-columns: 1fr 330px !important;
  gap: 28px !important;
}
/* 木卡信息块加厚木质边 */
body.theme-forest-camp .ap-detail-card {
  border: 1px solid var(--line-color) !important;
  border-radius: var(--border-radius-md) !important;
}
/* 侧栏整体做成"Field Notes"便签面板 */
body.theme-forest-camp .ap-detail-sidebar {
  position: relative !important;
  background:
    repeating-linear-gradient(180deg, transparent 0, transparent 33px, rgba(139, 111, 71, 0.10) 33px, rgba(139, 111, 71, 0.10) 34px),
    radial-gradient(ellipse 80% 30% at 50% 0%, rgba(194, 112, 61, 0.07) 0%, transparent 60%),
    #FBF7EF !important;
  border: 2px solid var(--line-color) !important;
  border-radius: var(--border-radius-md) !important;
  box-shadow: var(--shadow-sm) !important;
  padding: 18px 20px !important;
}
body.theme-forest-camp .ap-detail-sidebar::before {
  content: 'Field Notes' !important;
  display: block !important;
  font-family: 'Fraunces', Georgia, serif !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  font-style: italic !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #C2703D !important;
  padding-bottom: 10px !important;
  margin-bottom: 14px !important;
  border-bottom: 1px dashed var(--line-color) !important;
}
/* 侧栏内卡片去掉重复底框，融入便签面板 */
body.theme-forest-camp .ap-detail-sidebar .ap-detail-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 0 16px !important;
  margin-bottom: 16px !important;
  border-radius: 0 !important;
}
body.theme-forest-camp .ap-detail-sidebar .ap-detail-card:last-child { margin-bottom: 0 !important; padding-bottom: 0 !important; }

@media (max-width: 992px) {
  body.theme-forest-camp .ap-detail-body { grid-template-columns: 1fr !important; }
}
