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

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

.vylheq {
  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;
}
.xhyhhlb9 {
  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;
}
.jgloe { display: flex; flex-direction: column; line-height: 1.2; }
.qlsanxqq {
  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;
}
.kpjxx { font-size: 11px; color: var(--text-muted); letter-spacing: 2px; }

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

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

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

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

/* =============================================
   Hero 首屏
   ============================================= */
.ryi6r9q {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ni7ez {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.ryi6r9q:hover .ni7ez { transform: scale(1.0); }
.kptk7 {
  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%);
}
.jymkgbt {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.shluecc {
  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;
}
.shluecc::before { content: '●'; font-size: 8px; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.btvnyo {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}
.btvnyo .brand { color: var(--brand-accent); }
.btvnyo .au7fendl {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fp2jo5 { font-size: 16px; color: var(--text-muted); max-width: 560px; margin-bottom: 32px; }
.u83f2qb { 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; }
.ftdmlpq { background: var(--brand-mid); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.if1h6u { text-align: center; margin-bottom: 48px; }
.yiz5g1 {
  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;
}
.gfy1ucwb {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}
.gfy1ucwb .fggpy3 { color: var(--brand-accent); }
.fzt8haw { color: var(--text-muted); font-size: 15px; max-width: 560px; margin: 0 auto; }

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .oxlza {
    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;
  }
  .oxlza.open { display: flex; }
  .oxlza a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .fmn2jt { display: flex; }
  .site-header { position: relative; }
  .jymkgbt { padding: 48px 24px; }
  .ujrt3u { grid-template-columns: 1fr; gap: 28px; }
  .myy786 { justify-content: center; }
  .x0npwp2j { display: none; }
  .cggdbw7k { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .ompa7qyb { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

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

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