/* =============================================
   国产主播传媒 - 主样式表
   品牌色：深玫红 #C0185A | 金色 #E8A020 | 深色 #1A1A2E
   bhtmggc.cn
   ============================================= */

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

:root {
  --brand-primary: #C0185A;
  --brand-secondary: #E8A020;
  --brand-dark: #1A1A2E;
  --brand-mid: #16213E;
  --brand-light: #0F3460;
  --brand-accent: #FF6B9D;
  --text-light: #F5F5F5;
  --text-muted: #B0B0C0;
  --card-bg: rgba(255,255,255,0.05);
  --card-border: rgba(192,24,90,0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.35);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
  background: var(--brand-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--brand-accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--brand-secondary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ---- 滚动条美化 ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--brand-dark); }
::-webkit-scrollbar-thumb { background: var(--brand-primary); border-radius: 3px; }

/* =============================================
   顶部公告栏
   ============================================= */
.fgzat4 {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-light), var(--brand-primary));
  background-size: 200% 100%;
  animation: topBarSlide 6s linear infinite;
  padding: 6px 0;
  text-align: center;
  font-size: 13px;
  color: #fff;
  letter-spacing: 1px;
}
@keyframes topBarSlide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* =============================================
   头部导航
   ============================================= */
.site-header {
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.t6dof {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.fjmfdfx {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 16px rgba(192,24,90,0.5);
  flex-shrink: 0;
}
.f7zwz { display: flex; flex-direction: column; line-height: 1.2; }
.n5zi8 {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(90deg, #fff, var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.l28ck { font-size: 11px; color: var(--text-muted); letter-spacing: 2px; }

/* 主导航 */
.tkj1i { display: flex; align-items: center; gap: 4px; }
.tkj1i a {
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.tkj1i a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: var(--transition);
  border-radius: 1px;
}
.tkj1i a:hover, .tkj1i a.active {
  color: var(--brand-accent);
  background: rgba(192,24,90,0.12);
}
.tkj1i a:hover::after, .tkj1i a.active::after { width: 60%; }

/* 汉堡菜单 */
.t512spm {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.t512spm span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}
.t512spm.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.t512spm.open span:nth-child(2) { opacity: 0; }
.t512spm.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   搜索框
   ============================================= */
.di86yjhh {
  background: var(--brand-mid);
  border-bottom: 1px solid rgba(192,24,90,0.15);
  padding: 12px 0;
}
.b43xo73c {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.kas63j {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 600px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--card-border);
  border-radius: 30px;
  overflow: hidden;
  transition: var(--transition);
}
.kas63j:focus-within {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(192,24,90,0.15);
}
.kas63j input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-light);
  padding: 10px 18px;
  font-size: 14px;
}
.kas63j input::placeholder { color: var(--text-muted); }
.kas63j button {
  background: var(--brand-primary);
  border: none;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}
.kas63j button:hover { background: #a01048; }
.md3ueh { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.md3ueh span { font-size: 12px; color: var(--text-muted); }
.lfu8d {
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  padding: 3px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.lfu8d:hover { color: var(--brand-accent); background: rgba(192,24,90,0.15); }

/* =============================================
   面包屑
   ============================================= */
.kyk8y {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.kyk8y a { color: var(--text-muted); }
.kyk8y a:hover { color: var(--brand-accent); }
.kyk8y .sep { color: rgba(255,255,255,0.2); }
.kyk8y .current { color: var(--brand-accent); }

/* =============================================
   Hero 首屏
   ============================================= */
.xi4s8ui6 {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.yrvt63 {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.xi4s8ui6:hover .yrvt63 { transform: scale(1.0); }
.a4lwir4d {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.9) 0%, rgba(192,24,90,0.3) 50%, rgba(26,26,46,0.8) 100%);
}
.n8uuld {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.jnr2a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192,24,90,0.25);
  border: 1px solid rgba(192,24,90,0.5);
  color: var(--brand-accent);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 20px;
}
.jnr2a::before { content: '●'; font-size: 8px; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.za0rcxb {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}
.za0rcxb .brand { color: var(--brand-accent); }
.za0rcxb .l487g {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tccaijd { font-size: 16px; color: var(--text-muted); max-width: 560px; margin-bottom: 32px; }
.ori81 { display: flex; gap: 14px; flex-wrap: wrap; }

/* =============================================
   按钮系统
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), #9B0F48);
  color: #fff;
  box-shadow: 0 4px 20px rgba(192,24,90,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192,24,90,0.55);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
  background: rgba(192,24,90,0.1);
}
.btn-gold {
  background: linear-gradient(135deg, var(--brand-secondary), #C07010);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,160,32,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,160,32,0.5); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* =============================================
   区块通用
   ============================================= */
.section { padding: 72px 0; }
.sbf86 { background: var(--brand-mid); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.gcu2g4 { text-align: center; margin-bottom: 48px; }
.cio0p9 {
  display: inline-block;
  background: rgba(192,24,90,0.15);
  border: 1px solid rgba(192,24,90,0.35);
  color: var(--brand-accent);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.s1zp9xju {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}
.s1zp9xju .fisnism6 { color: var(--brand-accent); }
.otdte9z { color: var(--text-muted); font-size: 15px; max-width: 560px; margin: 0 auto; }

/* =============================================
   视频卡片
   ============================================= */
.yz406ge6 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.md5bdx {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.md5bdx:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--brand-primary);
}
.iq0pu2t {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0a0a1a;
}
.iq0pu2t img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.md5bdx:hover .iq0pu2t img { transform: scale(1.06); }
.jlzn9s6o {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: var(--transition);
}
.md5bdx:hover .jlzn9s6o { opacity: 1; }
.cz0p1uy {
  width: 56px;
  height: 56px;
  background: rgba(192,24,90,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(192,24,90,0.6);
}
.md5bdx:hover .cz0p1uy { transform: scale(1); }
.cz0p1uy::after {
  content: '';
  border: 10px solid transparent;
  border-left: 18px solid #fff;
  margin-left: 4px;
}
.oubvj8z {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
}
.jdbqfkaa {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.bdl0i6 { padding: 14px; }
.pn2os1lc {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.xcfie {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}
.xcfie span { display: flex; align-items: center; gap: 4px; }

/* =============================================
   专家卡片
   ============================================= */
.eh0anw7m {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.p08knzh5 {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.p08knzh5:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--brand-primary);
}
.ct7z1bx {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 3px solid var(--brand-primary);
  object-fit: cover;
  box-shadow: 0 0 20px rgba(192,24,90,0.3);
}
.xo3gbke { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.cu7m3s { font-size: 13px; color: var(--brand-accent); margin-bottom: 10px; }
.zivxx39 { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.sdvy41 { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 16px; }
.p1g7sp {
  font-size: 11px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  color: var(--brand-secondary);
  padding: 2px 8px;
  border-radius: 4px;
}
.ikpnrw9v { display: flex; gap: 8px; justify-content: center; }

/* =============================================
   合作品牌 Logo 墙
   ============================================= */
.x0lleouj {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.e6pyc {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  min-width: 120px;
  text-align: center;
}
.e6pyc:hover {
  color: var(--text-light);
  border-color: var(--brand-primary);
  background: rgba(192,24,90,0.1);
  transform: translateY(-2px);
}

/* =============================================
   FAQ 手风琴
   ============================================= */
.wjurulo { max-width: 800px; margin: 0 auto; }
.dxozz {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.nhmo1cl {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 600;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.nhmo1cl:hover { color: var(--brand-accent); }
.lb7qicd6 {
  width: 24px;
  height: 24px;
  border: 2px solid var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--brand-primary);
}
.dxozz.open .lb7qicd6 { transform: rotate(45deg); background: var(--brand-primary); color: #fff; }
.suu9bp {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.frt5m9 {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  border-top: 1px solid var(--card-border);
  padding-top: 14px;
}
.dxozz.open .suu9bp { max-height: 400px; }

/* =============================================
   用户评价
   ============================================= */
.peg1w4n {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.zd64vjxx {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.zd64vjxx:hover { border-color: var(--brand-primary); transform: translateY(-3px); }
.d75c15d { color: var(--brand-secondary); font-size: 16px; margin-bottom: 12px; }
.rjbn5wsx { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.hbi54ng { display: flex; align-items: center; gap: 10px; }
.r9bqoywr {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.mtcls { font-size: 14px; font-weight: 600; }
.oyhgyb { font-size: 12px; color: var(--text-muted); }

/* =============================================
   统计数字
   ============================================= */
.ifayoob {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-light) 100%);
  padding: 40px 0;
}
.huj7w {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.uwkuvo {}
.irxn2e0 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.trzpo { font-size: 13px; color: rgba(255,255,255,0.75); }

/* =============================================
   How-To 加入社区
   ============================================= */
.ao61dzm {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.bdfqij {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.bdfqij:hover { border-color: var(--brand-primary); transform: translateY(-4px); }
.irrp7v {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 16px;
}
.ucygj8o8 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.hwyc2 { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   联系/社区入口
   ============================================= */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--brand-primary); transform: translateY(-4px); }
.contact-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}
.contact-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.contact-val { font-size: 14px; color: var(--brand-accent); margin-bottom: 12px; }
.contact-desc { font-size: 13px; color: var(--text-muted); }

/* QR码 */
.t0zpv {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hsaov7t {
  width: 120px;
  height: 120px;
  border: 3px solid var(--brand-primary);
  border-radius: var(--radius-sm);
  padding: 4px;
  background: #fff;
}

/* =============================================
   社交分享
   ============================================= */
.sb2n80b {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ehnuhnd { font-size: 14px; color: var(--text-muted); }
.b14dl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  color: #fff;
}
.wngbe { background: #07C160; }
.d8bwbi6 { background: #E6162D; }
.wtjoe { background: #010101; border: 1px solid #69C9D0; }
.a58u8nq2 { background: #00A1D6; }
.b14dl:hover { transform: translateY(-2px); opacity: 0.9; }

/* =============================================
   页脚
   ============================================= */
.site-footer {
  background: #0D0D1A;
  border-top: 1px solid var(--card-border);
  padding: 56px 0 0;
}
.ss7isl8 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.r6hhrvx .n5zi8 { font-size: 26px; }
.bxtbg1n { font-size: 13px; color: var(--text-muted); margin: 14px 0 20px; line-height: 1.8; }
.pqxffs { display: flex; gap: 20px; }
.di5mmrl3 { text-align: center; }
.di5mmrl3 img {
  width: 90px;
  height: 90px;
  border: 2px solid var(--brand-primary);
  border-radius: 8px;
  padding: 3px;
  background: #fff;
  margin-bottom: 6px;
}
.di5mmrl3 span { font-size: 11px; color: var(--text-muted); }
.ofn7u9c {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--card-border);
}
.ulpnht { display: flex; flex-direction: column; gap: 8px; }
.ulpnht a { font-size: 13px; color: var(--text-muted); transition: var(--transition); }
.ulpnht a:hover { color: var(--brand-accent); padding-left: 4px; }
.uy38e {
  border-top: 1px solid var(--card-border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}
.uy38e a { color: var(--text-muted); }
.uy38e a:hover { color: var(--brand-accent); }

/* =============================================
   内页 Banner
   ============================================= */
.j7nnghyn {
  background: linear-gradient(135deg, var(--brand-mid) 0%, var(--brand-dark) 100%);
  padding: 56px 0;
  border-bottom: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}
.j7nnghyn::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192,24,90,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.z2jyll8q {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  margin-bottom: 10px;
}
.hta9w { font-size: 15px; color: var(--text-muted); }

/* =============================================
   通用卡片
   ============================================= */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.card:hover { border-color: var(--brand-primary); box-shadow: var(--shadow); }

/* =============================================
   标签云
   ============================================= */
.zinq2jxe { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.tag:hover { background: rgba(192,24,90,0.15); border-color: var(--brand-primary); color: var(--brand-accent); }
.tag.active { background: var(--brand-primary); border-color: var(--brand-primary); color: #fff; }

/* =============================================
   弹幕效果
   ============================================= */
.z62fzr0i {
  position: relative;
  height: 40px;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
  margin: 12px 0;
}
.nj6xy {
  position: absolute;
  white-space: nowrap;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  animation: danmaku linear infinite;
  top: 50%;
  transform: translateY(-50%);
}
@keyframes danmaku {
  from { left: 100%; }
  to { left: -100%; }
}

/* =============================================
   响应式
   ============================================= */
@media (max-width: 1024px) {
  .ss7isl8 { grid-template-columns: 1fr 1fr; }
  .huj7w { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .tkj1i {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(26,26,46,0.98);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--card-border);
    gap: 4px;
  }
  .tkj1i.open { display: flex; }
  .tkj1i a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .t512spm { display: flex; }
  .site-header { position: relative; }
  .n8uuld { padding: 48px 24px; }
  .ss7isl8 { grid-template-columns: 1fr; gap: 28px; }
  .pqxffs { justify-content: center; }
  .md3ueh { display: none; }
  .yz406ge6 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .eh0anw7m { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

@media (max-width: 480px) {
  .huj7w { grid-template-columns: repeat(2, 1fr); }
  .ori81 { flex-direction: column; }
  .ori81 .btn { width: 100%; justify-content: center; }
  .uy38e { flex-direction: column; text-align: center; }
}

/* =============================================
   动画工具类
   ============================================= */
.oj57q {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.oj57q.visible { opacity: 1; transform: translateY(0); }

/* 渐变文字 */
.gradient-text {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 发光边框 */
.glow-border {
  box-shadow: 0 0 0 1px var(--brand-primary), 0 0 20px rgba(192,24,90,0.3);
}

/* 分隔线 */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--card-border), transparent);
  margin: 32px 0;
}

/* 徽章 */
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.wu4fq3fe { background: var(--brand-primary); color: #fff; }
.clhoa3m { background: var(--brand-secondary); color: #fff; }
.q1wewvy { background: #E6162D; color: #fff; animation: pulse 1.5s infinite; }

/* 加载动画 */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
