/* =============================================
   高清无码 - 主样式文件
   品牌色: 玫瑰粉 #FF2D78 | 深玫 #C41A5A | 紫调 #7B2FBE
   背景色: 深夜紫 #0F0520 | 卡片深 #1A0A35
   ============================================= */

:root {
  --brand-pink: #FF2D78;
  --brand-rose: #C41A5A;
  --brand-purple: #7B2FBE;
  --brand-light: #FF6FA8;
  --bg-dark: #0F0520;
  --bg-card: #1A0A35;
  --bg-card2: #22103F;
  --text-white: #FFFFFF;
  --text-gray: #C0A8D0;
  --text-muted: #8A6FA0;
  --border-color: rgba(255,45,120,0.2);
  --gradient-main: linear-gradient(135deg, #FF2D78 0%, #7B2FBE 100%);
  --gradient-card: linear-gradient(180deg, #1A0A35 0%, #0F0520 100%);
  --shadow-pink: 0 4px 24px rgba(255,45,120,0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ===== 通用容器 ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.kp1vzmnc { text-align: center; margin-bottom: 48px; }
.gf6u9p7 {
  display: inline-block;
  background: var(--gradient-main);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.20l8q48d {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.20l8q48d span { color: var(--brand-pink); }
.4yijr { font-size: 15px; color: var(--text-gray); max-width: 560px; margin: 0 auto; }

/* ===== 按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,45,120,0.4); }
.btn-outline {
  background: transparent;
  color: var(--brand-pink);
  border: 2px solid var(--brand-pink);
}
.btn-outline:hover { background: var(--brand-pink); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ===== 顶部导航 ===== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15,5,32,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.site-logo img.logo-img {
  height: 36px;
  width: auto;
}
.site-logo .logo-favicon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-size: 18px;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-slogan {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  position: relative;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--brand-pink);
  background: rgba(255,45,120,0.1);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-login {
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--gradient-main);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-login:hover { opacity: 0.9; transform: translateY(-1px); }

/* 汉堡菜单 */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== 搜索栏 ===== */
.search-bar-wrap {
  background: rgba(26,10,53,0.8);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}
.search-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}
.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 0 16px;
  gap: 8px;
  transition: var(--transition);
}
.search-input-wrap:focus-within {
  border-color: var(--brand-pink);
  box-shadow: 0 0 0 3px rgba(255,45,120,0.15);
}
.search-icon { color: var(--text-muted); font-size: 16px; }
#searchInput {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-white);
  font-size: 14px;
  padding: 10px 0;
}
#searchInput::placeholder { color: var(--text-muted); }
.search-btn {
  padding: 8px 22px;
  border-radius: 50px;
  background: var(--gradient-main);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.search-btn:hover { opacity: 0.9; }
.search-hot-tags { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.search-hot-tags span { font-size: 12px; color: var(--text-muted); }
.hot-tag {
  font-size: 12px;
  color: var(--text-gray);
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  transition: var(--transition);
}
.hot-tag:hover { color: var(--brand-pink); background: rgba(255,45,120,0.1); }

/* ===== 移动端菜单 ===== */
#mobileMenu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15,5,32,0.98);
  z-index: 999;
  padding: 20px;
  overflow-y: auto;
}
#mobileMenu.open { display: block; }
#mobileMenu a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--text-gray);
  border-bottom: 1px solid var(--border-color);
}
#mobileMenu a:hover { color: var(--brand-pink); background: rgba(255,45,120,0.08); }

/* ===== Hero 首屏 ===== */
.n2hns {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.z84f7 {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.3pexy67y {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,5,32,0.95) 40%, transparent 100%);
}
.dmzvfs9c {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.a6lwn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,45,120,0.15);
  border: 1px solid rgba(255,45,120,0.4);
  color: var(--brand-light);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.a6lwn::before { content: "●"; color: var(--brand-pink); font-size: 8px; }
.hero-h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-h1 .6bikm0b { color: var(--brand-pink); }
.hero-h1 .pg2m0 { display: block; font-size: 0.6em; color: var(--text-gray); font-weight: 400; margin-top: 8px; }
.ikv9tnm8 {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 28px;
  line-height: 1.7;
}
.gw59asew { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.mqq7odk { display: flex; gap: 28px; }
.45ztcfcy { text-align: center; }
.45ztcfcy .3jayssv {
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.45ztcfcy .label { font-size: 12px; color: var(--text-muted); }

/* ===== 视频卡片 ===== */
.a7h8x {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.video-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-pink);
  box-shadow: var(--shadow-pink);
}
.qq9s5ay {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-card2);
}
.qq9s5ay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover .qq9s5ay img { transform: scale(1.06); }
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(0,0,0,0.4);
  transition: var(--transition);
}
.video-card:hover .play-btn { opacity: 1; }
.play-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255,45,120,0.5);
}
.play-icon::after {
  content: "";
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.1m90hmc {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 4px;
}
.qe88ghf8 {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--brand-pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}
.6r0ghlpb { padding: 14px; }
.video-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.jsm2p4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}
.2t6ojf2 { display: flex; align-items: center; gap: 5px; }
.7d12i3y {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
}
.y67v0yo { display: flex; gap: 10px; }
.y67v0yo span { display: flex; align-items: center; gap: 3px; }

/* ===== 分类标签 ===== */
.cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cat-tab {
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255,255,255,0.06);
  color: var(--text-gray);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.cat-tab:hover, .cat-tab.active {
  background: rgba(255,45,120,0.15);
  color: var(--brand-pink);
  border-color: rgba(255,45,120,0.4);
}

/* ===== 专家卡片 ===== */
.gghwgs18 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.ut4exn {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.ut4exn:hover {
  border-color: var(--brand-pink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-pink);
}
.0852m3oh {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 14px;
  border: 3px solid var(--brand-pink);
  overflow: hidden;
  object-fit: cover;
}
.imuf59nf { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.dzv7d { font-size: 13px; color: var(--brand-light); margin-bottom: 10px; }
.52btk { font-size: 13px; color: var(--text-gray); margin-bottom: 14px; line-height: 1.5; }
.e5a3jvnq { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 14px; }
.zp8lb1g {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(123,47,190,0.2);
  color: #C084FC;
  border: 1px solid rgba(123,47,190,0.3);
}
.l4xoswe { display: flex; gap: 8px; justify-content: center; }

/* ===== 评价卡片 ===== */
.5cy50j {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.3sk8v4nl {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.3sk8v4nl:hover { border-color: rgba(255,45,120,0.4); }
.irjg26ks { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.b5b119ad {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.ydume8 { flex: 1; }
.r7tk876f { font-size: 14px; font-weight: 600; }
.u26i26x { font-size: 12px; color: var(--text-muted); }
.09x7nh8 { color: #FFD700; font-size: 13px; letter-spacing: 1px; }
.00flr { font-size: 14px; color: var(--text-gray); line-height: 1.6; }
.c9lt1 {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,45,120,0.1);
  color: var(--brand-light);
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(255,45,120,0.4); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  gap: 12px;
}
.faq-q:hover { color: var(--brand-pink); }
.faq-q .faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,45,120,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--brand-pink);
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--brand-pink); color: #fff; }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ===== 合作品牌 ===== */
.dc76jbs4 {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.7yxf8g {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
  transition: var(--transition);
}
.7yxf8g:hover { border-color: var(--brand-pink); color: var(--brand-pink); }

/* ===== AI 功能区 ===== */
.ch4mee {
  background: linear-gradient(135deg, rgba(123,47,190,0.15) 0%, rgba(255,45,120,0.1) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(123,47,190,0.3);
}
.lseb33 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.xlmu1 { border-radius: var(--radius-md); overflow: hidden; }
.xlmu1 img { width: 100%; border-radius: var(--radius-md); }
.uj6jeg { display: flex; flex-direction: column; gap: 16px; }
.0l5tr1gs {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(123,47,190,0.2);
  transition: var(--transition);
}
.0l5tr1gs:hover { border-color: var(--brand-purple); background: rgba(123,47,190,0.1); }
.cw5nrv {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.o0d5b { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.l62fw { font-size: 13px; color: var(--text-gray); line-height: 1.5; }

/* ===== How-To 加入指南 ===== */
.3z710o7 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.6o48pbi {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border: 1px solid var(--border-color);
  position: relative;
  text-align: center;
  transition: var(--transition);
}
.6o48pbi:hover { border-color: var(--brand-pink); transform: translateY(-3px); }
.xok9ga {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 14px;
}
.mg0wqh { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.g5c8f { font-size: 13px; color: var(--text-gray); line-height: 1.5; }

/* ===== 联系我们 ===== */
.an4af {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.2wl11x {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-color);
}
.2wl11x h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--brand-pink); }
.949cf { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.0y92qec { font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.9t3dw81k { font-size: 12px; color: var(--text-muted); }
.9thmdrgz { font-size: 14px; color: var(--text-white); }
.r82i12 { display: flex; gap: 20px; }
.3zan3r { text-align: center; }
.3zan3r img { width: 110px; height: 110px; border-radius: var(--radius-sm); border: 2px solid var(--border-color); }
.3zan3r p { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* ===== 社交分享 ===== */
.ix0q73f {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.g43l2h { font-size: 13px; color: var(--text-muted); }
.94bqw {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border-color);
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}
.94bqw:hover { border-color: var(--brand-pink); color: var(--brand-pink); background: rgba(255,45,120,0.08); }

/* ===== 页脚 ===== */
#199ta {
  background: rgba(10,3,22,0.98);
  border-top: 1px solid var(--border-color);
  padding: 48px 0 24px;
}
.yo4t8 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.ul6fwd .logo-name { font-size: 22px; margin-bottom: 10px; }
.u7pt2u { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.698dah87 h4 { font-size: 14px; font-weight: 700; color: var(--text-white); margin-bottom: 14px; }
.698dah87 a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: var(--transition);
}
.698dah87 a:hover { color: var(--brand-pink); }
.0dz4kv {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.gg6xzgn0 { font-size: 12px; color: var(--text-muted); }
.gg6xzgn0 a { color: var(--brand-light); }
.qx71cdbg { display: flex; gap: 16px; }
.qx71cdbg a { font-size: 12px; color: var(--text-muted); }
.qx71cdbg a:hover { color: var(--brand-pink); }
.grinl4l { font-size: 12px; color: var(--text-muted); }

/* ===== 面包屑 ===== */
.xm617tc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 14px 0;
}
.xm617tc a { color: var(--text-muted); }
.xm617tc a:hover { color: var(--brand-pink); }
.xm617tc .dew5zvs { color: var(--border-color); }
.xm617tc .current { color: var(--text-white); }

/* ===== 排行榜 ===== */
.o7l5p { display: flex; flex-direction: column; gap: 10px; }
.q81adhw {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.q81adhw:hover { border-color: rgba(255,45,120,0.3); }
.m4nufzny {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.m4nufzny.top1 { background: #FFD700; color: #333; }
.m4nufzny.top2 { background: #C0C0C0; color: #333; }
.m4nufzny.top3 { background: #CD7F32; color: #fff; }
.m4nufzny.other { background: rgba(255,255,255,0.1); color: var(--text-muted); }
.rank-title { flex: 1; font-size: 14px; font-weight: 500; }
.omvhi7 { font-size: 12px; color: var(--text-muted); }

/* ===== 页面横幅 ===== */
.8ew2wi {
  background: linear-gradient(135deg, #1A0A35 0%, #0F0520 100%);
  padding: 48px 0;
  border-bottom: 1px solid var(--border-color);
}
.8ew2wi h1 { font-size: clamp(24px, 4vw, 40px); font-weight: 800; margin-bottom: 8px; }
.8ew2wi h1 span { color: var(--brand-pink); }
.8ew2wi p { font-size: 15px; color: var(--text-gray); }

/* ===== 加载更多 ===== */
.enq5d3by { text-align: center; margin-top: 36px; }

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .yo4t8 { grid-template-columns: 1fr 1fr; }
  .lseb33 { grid-template-columns: 1fr; }
  .an4af { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .header-actions .btn-login { display: none; }
  .hamburger { display: flex; }
  .n2hns { min-height: 420px; }
  .mqq7odk { gap: 16px; }
  .section { padding: 48px 0; }
  .ch4mee { padding: 28px 20px; }
  .yo4t8 { grid-template-columns: 1fr; }
  .0dz4kv { flex-direction: column; align-items: flex-start; }
  .a7h8x { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .gghwgs18 { grid-template-columns: 1fr 1fr; }
  .5cy50j { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 28px; }
  .gw59asew { flex-direction: column; }
  .gghwgs18 { grid-template-columns: 1fr; }
  .a7h8x { grid-template-columns: 1fr; }
  .3z710o7 { grid-template-columns: 1fr; }
  .r82i12 { justify-content: center; }
}

/* ===== 动画 ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.wz44r7 { animation: fadeInUp 0.6s ease forwards; }

@keyframes pulse-pink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,45,120,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255,45,120,0); }
}
.pulse { animation: pulse-pink 2s infinite; }

/* ===== 懒加载占位 ===== */
img[data-src] { background: var(--bg-card2); }
