/* =============================================
   探花 (TaoHua) - 主样式文件
   品牌色：深酒红 #8B1A2F | 金色 #C9A84C | 深灰 #1A1A2E
   ============================================= */

/* === 基础重置 === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'PingFang SC', 'Microsoft YaHei', '微软雅黑', sans-serif;
  background: #0d0d1a;
  color: #e8e0d5;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: #C9A84C; text-decoration: none; transition: color .25s; }
a:hover { color: #e8c96a; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* === 变量 === */
:root {
  --red: #8B1A2F;
  --red-light: #b02240;
  --gold: #C9A84C;
  --gold-light: #e8c96a;
  --dark: #0d0d1a;
  --dark2: #141428;
  --dark3: #1e1e38;
  --card-bg: #1a1a30;
  --text: #e8e0d5;
  --text-muted: #9b9bb5;
  --border: rgba(201,168,76,0.2);
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* === 滚动条 === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* === 顶部公告栏 === */
.top-bar {
  background: linear-gradient(90deg, var(--red) 0%, #6b1020 100%);
  text-align: center;
  padding: 6px 20px;
  font-size: 13px;
  color: #ffd;
  letter-spacing: 1px;
}
.top-bar a { color: var(--gold-light); }

/* === 导航栏 === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,13,26,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar-brand img.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}
.navbar-brand .brand-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}
.navbar-brand .brand-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--text);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  transition: all .25s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--red);
  color: #fff;
}
.nav-search {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.nav-search input {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  padding: 7px 14px;
  border-radius: 20px 0 0 20px;
  font-size: 13px;
  width: 180px;
  outline: none;
  transition: border-color .25s;
}
.nav-search input:focus { border-color: var(--gold); }
.nav-search button {
  background: var(--red);
  border: none;
  color: #fff;
  padding: 7px 14px;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  font-size: 13px;
  transition: background .25s;
}
.nav-search button:hover { background: var(--red-light); }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }

/* === 搜索栏（导航下方） === */
.search-bar-section {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  display: flex;
  justify-content: center;
}
.search-bar-inner {
  display: flex;
  max-width: 640px;
  width: 100%;
  gap: 0;
}
.search-bar-inner input {
  flex: 1;
  background: var(--dark3);
  border: 1.5px solid var(--border);
  border-right: none;
  color: var(--text);
  padding: 11px 20px;
  border-radius: 24px 0 0 24px;
  font-size: 15px;
  outline: none;
  transition: border-color .25s;
}
.search-bar-inner input:focus { border-color: var(--gold); }
.search-bar-inner button {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  border: none;
  color: #fff;
  padding: 11px 28px;
  border-radius: 0 24px 24px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: opacity .25s;
}
.search-bar-inner button:hover { opacity: .85; }
.search-hot-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.search-hot-tags span { color: var(--text-muted); font-size: 12px; }
.search-hot-tags a {
  background: var(--dark3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  transition: all .2s;
}
.search-hot-tags a:hover { border-color: var(--gold); color: var(--gold); }

/* === Hero Banner === */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_banner.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.45);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,26,47,0.6) 0%, rgba(13,13,26,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  color: #fff;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,26,47,0.5); color: #fff; }
.btn-outline {
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  position: absolute;
  right: 32px;
  bottom: 40px;
  display: flex;
  gap: 28px;
  z-index: 2;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 24px; font-weight: 700; color: var(--gold); }
.hero-stat .label { font-size: 12px; color: rgba(255,255,255,0.6); }

/* === 通用区块 === */
.section { padding: 64px 0; }
.section-alt { background: var(--dark2); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 44px; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.section-header h2 span { color: var(--gold); }
.section-header p { color: var(--text-muted); font-size: 15px; max-width: 560px; margin: 0 auto; }
.section-more { text-align: center; margin-top: 36px; }

/* === 视频卡片网格 === */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.video-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s;
  cursor: pointer;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark3);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.video-card:hover .video-thumb img { transform: scale(1.08); }
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background .3s;
}
.video-card:hover .video-play-btn { background: rgba(0,0,0,0.45); }
.play-icon {
  width: 52px;
  height: 52px;
  background: rgba(139,26,47,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(139,26,47,0.6);
}
.video-card:hover .play-icon { opacity: 1; transform: scale(1); }
.play-icon svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }
.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 4px;
}
.video-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.video-info { padding: 14px; }
.video-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}
.video-meta span { display: flex; align-items: center; gap: 4px; }
.video-meta svg { width: 13px; height: 13px; fill: currentColor; }
.video-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-size: 12px; color: var(--text-muted); }

/* === 图片卡片 === */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid var(--border);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.photo-card:hover img { transform: scale(1.08); }
.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.photo-card:hover .photo-overlay { opacity: 1; }
.photo-overlay span { color: #fff; font-size: 13px; font-weight: 600; }

/* === 专家卡片 === */
.expert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.expert-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all .3s;
}
.expert-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow); }
.expert-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  font-weight: 700;
  border: 3px solid var(--border);
}
.expert-name { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.expert-title { font-size: 12px; color: var(--gold); margin-bottom: 10px; }
.expert-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.expert-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 16px; }
.tag {
  background: var(--dark3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
}
.expert-btns { display: flex; gap: 8px; justify-content: center; }
.btn-sm {
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  border: none;
}
.btn-sm-red { background: var(--red); color: #fff; }
.btn-sm-red:hover { background: var(--red-light); color: #fff; }
.btn-sm-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-sm-outline:hover { background: var(--gold); color: var(--dark); }

/* === 合作品牌 === */
.partner-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.partner-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 24px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  transition: all .25s;
  cursor: default;
}
.partner-item:hover { border-color: var(--gold); color: var(--gold); }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color .2s;
  gap: 12px;
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-icon { color: var(--gold); font-size: 20px; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }

/* === 用户评论 === */
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all .3s;
}
.review-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; color: var(--text); }
.review-date { font-size: 11px; color: var(--text-muted); }
.review-stars { color: var(--gold); font-size: 14px; margin-bottom: 8px; }
.review-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.review-tag { display: inline-block; margin-top: 10px; background: var(--dark3); color: var(--gold); padding: 2px 10px; border-radius: 10px; font-size: 11px; }

/* === 联系我们 === */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.contact-icon { font-size: 36px; margin-bottom: 14px; }
.contact-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.contact-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.contact-card a { color: var(--gold); }
.qr-wrap { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.qr-item { text-align: center; }
.qr-item img { width: 120px; height: 120px; border-radius: 10px; border: 2px solid var(--border); margin-bottom: 8px; }
.qr-item span { font-size: 12px; color: var(--text-muted); }

/* === 社区功能 === */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all .3s;
}
.feature-card:hover { border-color: var(--red); transform: translateY(-4px); }
.feature-icon { font-size: 36px; margin-bottom: 12px; }
.feature-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.feature-card p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* === AI赋能 === */
.ai-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.ai-card {
  background: linear-gradient(135deg, var(--dark3) 0%, var(--card-bg) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.ai-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.ai-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.ai-card h3 { font-size: 16px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.ai-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.ai-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, #a07830 100%);
  color: var(--dark);
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* === 分享按钮 === */
.share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .25s;
  color: #fff;
}
.share-wechat { background: #07C160; }
.share-weibo { background: #E6162D; }
.share-douyin { background: #010101; border: 1px solid #333; }
.share-bilibili { background: #00A1D6; }
.share-btn:hover { opacity: .85; transform: translateY(-2px); color: #fff; }

/* === 加入社区指南 === */
.how-to-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.how-to-step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 14px;
}
.how-to-step h3 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.how-to-step p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* === 面包屑 === */
.breadcrumb {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb-inner a { color: var(--text-muted); }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-inner .sep { color: var(--border); }
.breadcrumb-inner .current { color: var(--gold); }

/* === 内页Hero === */
.page-hero {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 15px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* === 页脚 === */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 56px 24px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.footer-brand img { width: 60px; margin-bottom: 14px; }
.footer-brand .brand-name { font-size: 20px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: var(--text-muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; }
.footer-logo-wrap img { width: 32px; }

/* === 统计数字 === */
.stats-bar {
  background: linear-gradient(135deg, var(--red) 0%, #6b1020 100%);
  padding: 32px 24px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item .num { font-size: 2rem; font-weight: 800; color: #fff; }
.stat-item .unit { font-size: 14px; color: rgba(255,255,255,0.7); margin-left: 2px; }
.stat-item .label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* === 直播区域 === */
.live-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.live-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s;
  cursor: pointer;
}
.live-card:hover { transform: translateY(-5px); border-color: var(--red); box-shadow: 0 8px 32px rgba(139,26,47,0.3); }
.live-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.live-thumb img { width: 100%; height: 100%; object-fit: cover; }
.live-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #E6162D;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.live-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.live-viewers {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
}
.live-info { padding: 12px; }
.live-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.live-host { font-size: 12px; color: var(--text-muted); }

/* === 滚动公告 === */
.marquee-wrap {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-inner:hover { animation-play-state: paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item { font-size: 13px; color: var(--text-muted); }
.marquee-item a { color: var(--gold); }
.marquee-item .dot { color: var(--red); margin-right: 6px; }

/* === 响应式 === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar { padding: 0 16px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--dark2); padding: 16px; border-bottom: 1px solid var(--border); gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-search { display: none; }
  .hero { height: 400px; }
  .hero-stats { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .video-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 1.6rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* === 懒加载占位 === */
img[data-src] { background: var(--dark3); }

/* === 动画 === */
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.animate-in { animation: fadeInUp .6s ease forwards; }

/* === 内页文章 === */
.article-body { max-width: 860px; margin: 0 auto; }
.article-body h2 { font-size: 1.4rem; font-weight: 700; color: var(--gold); margin: 28px 0 12px; }
.article-body h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin: 20px 0 8px; }
.article-body p { font-size: 14px; color: var(--text-muted); line-height: 1.9; margin-bottom: 14px; }
.article-body ul { padding-left: 20px; margin-bottom: 14px; }
.article-body ul li { font-size: 14px; color: var(--text-muted); line-height: 1.8; list-style: disc; }

/* === 分页 === */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.page-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--text-muted);
  transition: all .2s;
}
.page-btn:hover, .page-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

/* === 标签云 === */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 5px 14px;
  border-radius: 16px;
  font-size: 13px;
  transition: all .2s;
}
.tag-cloud a:hover { border-color: var(--gold); color: var(--gold); }
