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

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

.cd6i5z {
  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;
}
.jxj7a {
  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;
}
.sesrsm3d { display: flex; flex-direction: column; line-height: 1.2; }
.wlrd347 {
  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;
}
.bwm9dr { font-size: 11px; color: var(--text-muted); letter-spacing: 2px; }

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

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

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

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

/* =============================================
   Hero 首屏
   ============================================= */
.h80s8 {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.p5hmjv9 {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.h80s8:hover .p5hmjv9 { transform: scale(1.0); }
.scve4 {
  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%);
}
.cdxjfzc {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.a3u9if {
  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;
}
.a3u9if::before { content: '●'; font-size: 8px; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.gfckw2r {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}
.gfckw2r .brand { color: var(--brand-accent); }
.gfckw2r .mbpy0kq {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.d66v2 { font-size: 16px; color: var(--text-muted); max-width: 560px; margin-bottom: 32px; }
.s3hum { 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; }
.p9hxlq { background: var(--brand-mid); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.qt1x54 { text-align: center; margin-bottom: 48px; }
.hq3rjk {
  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;
}
.vgbii {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}
.vgbii .xf4ocj { color: var(--brand-accent); }
.glak9 { color: var(--text-muted); font-size: 15px; max-width: 560px; margin: 0 auto; }

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .fg2ae {
    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;
  }
  .fg2ae.open { display: flex; }
  .fg2ae a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .zxup8f { display: flex; }
  .site-header { position: relative; }
  .cdxjfzc { padding: 48px 24px; }
  .xzsfu9wc { grid-template-columns: 1fr; gap: 28px; }
  .h7c8e { justify-content: center; }
  .v9f0c { display: none; }
  .tnzqp2 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .w2px9 { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

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

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