/* =============================================
   日本三级 - 主样式文件
   品牌色: 玫瑰粉 #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; }
.p16j5hv { text-align: center; margin-bottom: 48px; }
.na38dq9 {
  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;
}
.92ofmfs {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.92ofmfs span { color: var(--brand-pink); }
.e3r92c { 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 首屏 ===== */
.ydaa3 {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.g95zt {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.9ong0v {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,5,32,0.95) 40%, transparent 100%);
}
.8eevddc {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.0aual58j {
  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;
}
.0aual58j::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 .xq3a6d9f { color: var(--brand-pink); }
.hero-h1 .64gza0lh { display: block; font-size: 0.6em; color: var(--text-gray); font-weight: 400; margin-top: 8px; }
.e1zvw74 {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 28px;
  line-height: 1.7;
}
.hhz58qtp { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.1g0g1t9d { display: flex; gap: 28px; }
.unx34eg3 { text-align: center; }
.unx34eg3 .a59ukcaz {
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.unx34eg3 .label { font-size: 12px; color: var(--text-muted); }

/* ===== 视频卡片 ===== */
.33ivo {
  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);
}
.1e64uz {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-card2);
}
.1e64uz img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover .1e64uz 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;
}
.9fyhv6 {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 4px;
}
.hwcs1g8w {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--brand-pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}
.w69xb86 { 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;
}
.2r422n4r {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}
.ig0iw6j { display: flex; align-items: center; gap: 5px; }
.ckq08 {
  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;
}
.fav6t03g { display: flex; gap: 10px; }
.fav6t03g 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);
}

/* ===== 专家卡片 ===== */
.9rf8wtms {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.xfoh466f {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.xfoh466f:hover {
  border-color: var(--brand-pink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-pink);
}
.k7ylx {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 14px;
  border: 3px solid var(--brand-pink);
  overflow: hidden;
  object-fit: cover;
}
.7nqnt { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.ylq4t { font-size: 13px; color: var(--brand-light); margin-bottom: 10px; }
.9biucov { font-size: 13px; color: var(--text-gray); margin-bottom: 14px; line-height: 1.5; }
.sex5o { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 14px; }
.7eaa3 {
  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);
}
.gq785 { display: flex; gap: 8px; justify-content: center; }

/* ===== 评价卡片 ===== */
.bh6j7yuj {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.q8sanja {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.q8sanja:hover { border-color: rgba(255,45,120,0.4); }
.b60wqkv { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.v6cxfs {
  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;
}
.ibq0tf { flex: 1; }
.j9eyeq3u { font-size: 14px; font-weight: 600; }
.2jb43p1 { font-size: 12px; color: var(--text-muted); }
.z13dp7t { color: #FFD700; font-size: 13px; letter-spacing: 1px; }
.6b1jsddl { font-size: 14px; color: var(--text-gray); line-height: 1.6; }
.a8krxr {
  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; }

/* ===== 合作品牌 ===== */
.vo3cxw6 {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.msfs3 {
  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);
}
.msfs3:hover { border-color: var(--brand-pink); color: var(--brand-pink); }

/* ===== AI 功能区 ===== */
.ow492 {
  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);
}
.hht7jenv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.aby6c42j { border-radius: var(--radius-md); overflow: hidden; }
.aby6c42j img { width: 100%; border-radius: var(--radius-md); }
.ydko4gc5 { display: flex; flex-direction: column; gap: 16px; }
.0teup {
  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);
}
.0teup:hover { border-color: var(--brand-purple); background: rgba(123,47,190,0.1); }
.p4re0m {
  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;
}
.9d379ud { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.xiuz8 { font-size: 13px; color: var(--text-gray); line-height: 1.5; }

/* ===== How-To 加入指南 ===== */
.3uw7zf6 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.u37ru58g {
  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);
}
.u37ru58g:hover { border-color: var(--brand-pink); transform: translateY(-3px); }
.b1aff3j5 {
  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;
}
.73t4jwt { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.uset70 { font-size: 13px; color: var(--text-gray); line-height: 1.5; }

/* ===== 联系我们 ===== */
.hn8vl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.izv577 {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-color);
}
.izv577 h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--brand-pink); }
.jn189nc { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.0djfy { font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.bbibqz9 { font-size: 12px; color: var(--text-muted); }
.yif95 { font-size: 14px; color: var(--text-white); }
.02oop { display: flex; gap: 20px; }
.z7w0f0wv { text-align: center; }
.z7w0f0wv img { width: 110px; height: 110px; border-radius: var(--radius-sm); border: 2px solid var(--border-color); }
.z7w0f0wv p { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* ===== 社交分享 ===== */
.wd7lqe {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.i2fg1 { font-size: 13px; color: var(--text-muted); }
.ovc6e6m {
  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;
}
.ovc6e6m:hover { border-color: var(--brand-pink); color: var(--brand-pink); background: rgba(255,45,120,0.08); }

/* ===== 页脚 ===== */
#z96jr1a {
  background: rgba(10,3,22,0.98);
  border-top: 1px solid var(--border-color);
  padding: 48px 0 24px;
}
.f4o5r6rk {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.9d32gf .logo-name { font-size: 22px; margin-bottom: 10px; }
.2ry2sb { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.2vnv6h h4 { font-size: 14px; font-weight: 700; color: var(--text-white); margin-bottom: 14px; }
.2vnv6h a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: var(--transition);
}
.2vnv6h a:hover { color: var(--brand-pink); }
.fjh56goc {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.1i8lc { font-size: 12px; color: var(--text-muted); }
.1i8lc a { color: var(--brand-light); }
.7yb18315 { display: flex; gap: 16px; }
.7yb18315 a { font-size: 12px; color: var(--text-muted); }
.7yb18315 a:hover { color: var(--brand-pink); }
.1egzpa0a { font-size: 12px; color: var(--text-muted); }

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

/* ===== 排行榜 ===== */
.f9t0pcg { display: flex; flex-direction: column; gap: 10px; }
.3amjp6 {
  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);
}
.3amjp6:hover { border-color: rgba(255,45,120,0.3); }
.4h546 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.4h546.top1 { background: #FFD700; color: #333; }
.4h546.top2 { background: #C0C0C0; color: #333; }
.4h546.top3 { background: #CD7F32; color: #fff; }
.4h546.other { background: rgba(255,255,255,0.1); color: var(--text-muted); }
.rank-title { flex: 1; font-size: 14px; font-weight: 500; }
.w9bh5w2r { font-size: 12px; color: var(--text-muted); }

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

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

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

@media (max-width: 768px) {
  .main-nav, .header-actions .btn-login { display: none; }
  .hamburger { display: flex; }
  .ydaa3 { min-height: 420px; }
  .1g0g1t9d { gap: 16px; }
  .section { padding: 48px 0; }
  .ow492 { padding: 28px 20px; }
  .f4o5r6rk { grid-template-columns: 1fr; }
  .fjh56goc { flex-direction: column; align-items: flex-start; }
  .33ivo { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .9rf8wtms { grid-template-columns: 1fr 1fr; }
  .bh6j7yuj { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 28px; }
  .hhz58qtp { flex-direction: column; }
  .9rf8wtms { grid-template-columns: 1fr; }
  .33ivo { grid-template-columns: 1fr; }
  .3uw7zf6 { grid-template-columns: 1fr; }
  .02oop { justify-content: center; }
}

/* ===== 动画 ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.qnyd7h { 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); }
