/* =============================================
   母狗传媒 - 主样式表
   品牌色：深玫红 #C0185A | 金色 #E8A020 | 深色 #1A1A2E
   vexqwdp.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; }

/* =============================================
   顶部公告栏
   ============================================= */
.keft4891 {
  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);
}

.h8nwg {
  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;
}
.d6hbjxn {
  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;
}
.bf64eyo2 { display: flex; flex-direction: column; line-height: 1.2; }
.wxx9f {
  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;
}
.wijdxifs { font-size: 11px; color: var(--text-muted); letter-spacing: 2px; }

/* 主导航 */
.zi8sk9o { display: flex; align-items: center; gap: 4px; }
.zi8sk9o 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;
}
.zi8sk9o 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;
}
.zi8sk9o a:hover, .zi8sk9o a.active {
  color: var(--brand-accent);
  background: rgba(192,24,90,0.12);
}
.zi8sk9o a:hover::after, .zi8sk9o a.active::after { width: 60%; }

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

/* =============================================
   搜索框
   ============================================= */
.q47zx2 {
  background: var(--brand-mid);
  border-bottom: 1px solid rgba(192,24,90,0.15);
  padding: 12px 0;
}
.kd5oe {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chpjo8fq {
  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);
}
.chpjo8fq:focus-within {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(192,24,90,0.15);
}
.chpjo8fq input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-light);
  padding: 10px 18px;
  font-size: 14px;
}
.chpjo8fq input::placeholder { color: var(--text-muted); }
.chpjo8fq button {
  background: var(--brand-primary);
  border: none;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}
.chpjo8fq button:hover { background: #a01048; }
.phugm1ie { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.phugm1ie span { font-size: 12px; color: var(--text-muted); }
.id27o {
  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);
}
.id27o:hover { color: var(--brand-accent); background: rgba(192,24,90,0.15); }

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

/* =============================================
   Hero 首屏
   ============================================= */
.mcjgfsa {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.wvkqcv {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.mcjgfsa:hover .wvkqcv { transform: scale(1.0); }
.y4g2dk {
  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%);
}
.cfliwi {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.x7ymt0 {
  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;
}
.x7ymt0::before { content: '●'; font-size: 8px; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.ugy0b {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}
.ugy0b .brand { color: var(--brand-accent); }
.ugy0b .vsm4wgl8 {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.q660si { font-size: 16px; color: var(--text-muted); max-width: 560px; margin-bottom: 32px; }
.qpllcav { 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; }
.fuver8yf { background: var(--brand-mid); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.oxlxbbg5 { text-align: center; margin-bottom: 48px; }
.idyr4z {
  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;
}
.vkkuliy {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}
.vkkuliy .guf1yp { color: var(--brand-accent); }
.ckytg4 { color: var(--text-muted); font-size: 15px; max-width: 560px; margin: 0 auto; }

/* =============================================
   视频卡片
   ============================================= */
.dj4kv7e8 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.nypwkt {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.nypwkt:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--brand-primary);
}
.yp1d2 {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0a0a1a;
}
.yp1d2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.nypwkt:hover .yp1d2 img { transform: scale(1.06); }
.m8of2 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: var(--transition);
}
.nypwkt:hover .m8of2 { opacity: 1; }
.if1sc7h9 {
  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);
}
.nypwkt:hover .if1sc7h9 { transform: scale(1); }
.if1sc7h9::after {
  content: '';
  border: 10px solid transparent;
  border-left: 18px solid #fff;
  margin-left: 4px;
}
.bk8ck {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
}
.vxn5zq {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.tmxjk9 { padding: 14px; }
.gif7b {
  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;
}
.pecvme {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}
.pecvme span { display: flex; align-items: center; gap: 4px; }

/* =============================================
   专家卡片
   ============================================= */
.ipj6oo {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.g801ziq {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.g801ziq:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--brand-primary);
}
.oeagf95 {
  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);
}
.te6f0m { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.ae305lu { font-size: 13px; color: var(--brand-accent); margin-bottom: 10px; }
.y97e4zyy { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.suuhbg { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 16px; }
.malb0w1 {
  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;
}
.lj1jp122 { display: flex; gap: 8px; justify-content: center; }

/* =============================================
   合作品牌 Logo 墙
   ============================================= */
.hpnsixk {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.tm0wjf {
  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;
}
.tm0wjf:hover {
  color: var(--text-light);
  border-color: var(--brand-primary);
  background: rgba(192,24,90,0.1);
  transform: translateY(-2px);
}

/* =============================================
   FAQ 手风琴
   ============================================= */
.gg6lvr3j { max-width: 800px; margin: 0 auto; }
.d9jmdz {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.qexai {
  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);
}
.qexai:hover { color: var(--brand-accent); }
.gnp1hbbw {
  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);
}
.d9jmdz.open .gnp1hbbw { transform: rotate(45deg); background: var(--brand-primary); color: #fff; }
.rl4sch {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.muyiramy {
  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;
}
.d9jmdz.open .rl4sch { max-height: 400px; }

/* =============================================
   用户评价
   ============================================= */
.l5f1twaj {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.g6st3z {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.g6st3z:hover { border-color: var(--brand-primary); transform: translateY(-3px); }
.hva6yasl { color: var(--brand-secondary); font-size: 16px; margin-bottom: 12px; }
.r9gka { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.x265ep { display: flex; align-items: center; gap: 10px; }
.lfls6 {
  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;
}
.alhj5 { font-size: 14px; font-weight: 600; }
.nd06m { font-size: 12px; color: var(--text-muted); }

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

/* =============================================
   How-To 加入社区
   ============================================= */
.a7eer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.sei5ltvc {
  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);
}
.sei5ltvc:hover { border-color: var(--brand-primary); transform: translateY(-4px); }
.hq1a0 {
  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;
}
.pf6qsxn4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.kjrw3q { 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码 */
.nuwfddov {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.solmyxwm {
  width: 120px;
  height: 120px;
  border: 3px solid var(--brand-primary);
  border-radius: var(--radius-sm);
  padding: 4px;
  background: #fff;
}

/* =============================================
   社交分享
   ============================================= */
.q0qkg {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.nqj7dkc { font-size: 14px; color: var(--text-muted); }
.iy36t {
  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;
}
.a2xjmbn { background: #07C160; }
.lg3ce { background: #E6162D; }
.fgeto2o5 { background: #010101; border: 1px solid #69C9D0; }
.jc11cib { background: #00A1D6; }
.iy36t:hover { transform: translateY(-2px); opacity: 0.9; }

/* =============================================
   页脚
   ============================================= */
.site-footer {
  background: #0D0D1A;
  border-top: 1px solid var(--card-border);
  padding: 56px 0 0;
}
.e93lr {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.jkwws .wxx9f { font-size: 26px; }
.hb5jm6 { font-size: 13px; color: var(--text-muted); margin: 14px 0 20px; line-height: 1.8; }
.mp59qvv0 { display: flex; gap: 20px; }
.d2d3z { text-align: center; }
.d2d3z img {
  width: 90px;
  height: 90px;
  border: 2px solid var(--brand-primary);
  border-radius: 8px;
  padding: 3px;
  background: #fff;
  margin-bottom: 6px;
}
.d2d3z span { font-size: 11px; color: var(--text-muted); }
.ndf4n {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--card-border);
}
.ny2qur { display: flex; flex-direction: column; gap: 8px; }
.ny2qur a { font-size: 13px; color: var(--text-muted); transition: var(--transition); }
.ny2qur a:hover { color: var(--brand-accent); padding-left: 4px; }
.i535e1b {
  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);
}
.i535e1b a { color: var(--text-muted); }
.i535e1b a:hover { color: var(--brand-accent); }

/* =============================================
   内页 Banner
   ============================================= */
.h5q1oqi {
  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;
}
.h5q1oqi::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;
}
.l9o6x4em {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  margin-bottom: 10px;
}
.crhwkg { 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); }

/* =============================================
   标签云
   ============================================= */
.qk638c { 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; }

/* =============================================
   弹幕效果
   ============================================= */
.zxjhi8 {
  position: relative;
  height: 40px;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
  margin: 12px 0;
}
.jn020 {
  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) {
  .e93lr { grid-template-columns: 1fr 1fr; }
  .w2wugc { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .zi8sk9o {
    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;
  }
  .zi8sk9o.open { display: flex; }
  .zi8sk9o a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .w1l3f { display: flex; }
  .site-header { position: relative; }
  .cfliwi { padding: 48px 24px; }
  .e93lr { grid-template-columns: 1fr; gap: 28px; }
  .mp59qvv0 { justify-content: center; }
  .phugm1ie { display: none; }
  .dj4kv7e8 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .ipj6oo { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

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

/* =============================================
   动画工具类
   ============================================= */
.ehhv71u {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.ehhv71u.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;
}
.n8jclwyz { background: var(--brand-primary); color: #fff; }
.cb81e0 { background: var(--brand-secondary); color: #fff; }
.i1dq0 { 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; }
}
