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

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

.a6org8t6 {
  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;
}
.oxkbp9dj {
  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;
}
.ktzlwmxj { display: flex; flex-direction: column; line-height: 1.2; }
.uw2eg {
  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;
}
.ja8to { font-size: 11px; color: var(--text-muted); letter-spacing: 2px; }

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

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

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

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

/* =============================================
   Hero 首屏
   ============================================= */
.ksp1pyne {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hl73c6j {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.ksp1pyne:hover .hl73c6j { transform: scale(1.0); }
.uhzwk {
  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%);
}
.d8c6a {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.e79rv {
  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;
}
.e79rv::before { content: '●'; font-size: 8px; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.biqta {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}
.biqta .brand { color: var(--brand-accent); }
.biqta .drm4qbo {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.n13zlrao { font-size: 16px; color: var(--text-muted); max-width: 560px; margin-bottom: 32px; }
.vowt5h { 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; }
.oxaffca { background: var(--brand-mid); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.blo10 { text-align: center; margin-bottom: 48px; }
.ks1qb5 {
  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;
}
.l0rk8n94 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}
.l0rk8n94 .tfog7 { color: var(--brand-accent); }
.gual2h4e { color: var(--text-muted); font-size: 15px; max-width: 560px; margin: 0 auto; }

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .okqufjc {
    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;
  }
  .okqufjc.open { display: flex; }
  .okqufjc a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .j3yfczpe { display: flex; }
  .site-header { position: relative; }
  .d8c6a { padding: 48px 24px; }
  .q4jdab { grid-template-columns: 1fr; gap: 28px; }
  .mh2qo170 { justify-content: center; }
  .u05i8qmi { display: none; }
  .tsryt { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .x87wq7z { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

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

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