/* =============================================
   蜜桃 - 主样式文件
   原创设计 | 阴阳师国风游戏主题
   ============================================= */

/* ---- CSS变量 ---- */
:root {
  --primary: #8B1A4A;
  --primary-dark: #5C0F30;
  --primary-light: #C2185B;
  --accent: #D4AF37;
  --accent-light: #F5D76E;
  --purple: #3D1A6E;
  --purple-mid: #5E2D9E;
  --purple-light: #9B59B6;
  --dark-bg: #0D0A1A;
  --dark-card: #150E2B;
  --dark-border: #2A1A4A;
  --text-main: #EDE8F5;
  --text-muted: #9B8EC4;
  --text-light: #C9B8E8;
  --gradient-hero: linear-gradient(135deg, #0D0A1A 0%, #1A0A2E 50%, #0D1A3A 100%);
  --gradient-card: linear-gradient(145deg, #1A1030 0%, #0F0820 100%);
  --gradient-gold: linear-gradient(135deg, #D4AF37, #F5D76E, #D4AF37);
  --gradient-red: linear-gradient(135deg, #8B1A4A, #C2185B, #8B1A4A);
  --shadow-card: 0 8px 32px rgba(139, 26, 74, 0.3);
  --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.4);
  --border-radius: 12px;
  --border-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: 'PingFang SC', 'Microsoft YaHei', '微软雅黑', 'Noto Sans SC', sans-serif;
  background: var(--dark-bg);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

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

/* =============================================
   头部导航
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 10, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-border);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(139, 26, 74, 0.4);
}

.7spke {
  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;
  flex-shrink: 0;
}

.site-logo img.lnujmiq {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
}

.site-logo .gwgycfcf {
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* 主导航 */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: var(--text-light);
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  position: relative;
  transition: var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  background: rgba(212, 175, 55, 0.1);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 60%;
}

/* 移动端菜单按钮 */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* 搜索框 */
.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dark-border);
  border-radius: 24px;
  padding: 6px 16px;
  min-width: 200px;
  transition: var(--transition);
}

.header-search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.header-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--text-main);
  font-size: 0.9rem;
  width: 100%;
}

.header-search input::placeholder {
  color: var(--text-muted);
}

.header-search button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.header-search button:hover {
  color: var(--accent);
}

/* 搜索下拉提示 */
.search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  padding: 8px 0;
  box-shadow: var(--shadow-card);
  z-index: 100;
}

.search-wrap {
  position: relative;
  flex: 1;
  max-width: 280px;
}

.search-dropdown.show {
  display: block;
}

.search-dropdown li {
  padding: 8px 16px;
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.search-dropdown li:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent);
}

/* =============================================
   搜索栏（导航下方）
   ============================================= */
.5cqg03l7 {
  background: rgba(21, 14, 43, 0.9);
  border-bottom: 1px solid var(--dark-border);
  padding: 10px 0;
}

.uffkqf {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.uffkqf .noe5avcf {
  color: var(--accent);
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-search-form {
  display: flex;
  flex: 1;
  max-width: 600px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dark-border);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition);
}

.nav-search-form:focus-within {
  border-color: var(--accent);
}

.nav-search-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-main);
  padding: 8px 16px;
  font-size: 0.9rem;
}

.nav-search-form input::placeholder {
  color: var(--text-muted);
}

.nav-search-form button {
  background: var(--gradient-red);
  border: none;
  color: white;
  padding: 8px 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-search-form button:hover {
  opacity: 0.9;
}

.search-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.search-tags span {
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px 10px;
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  transition: var(--transition);
}

.search-tags span:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* =============================================
   Hero Banner区域
   ============================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 110px;
}

.cudaux {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.oyg6gf {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 10, 26, 0.6) 0%,
    rgba(13, 10, 26, 0.4) 40%,
    rgba(13, 10, 26, 0.85) 80%,
    rgba(13, 10, 26, 1) 100%
  );
}

.07l4pfcr {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.8dnm2cdg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 24px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.8dnm2cdg::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.gl7h5jfl {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.gl7h5jfl .brand {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gl7h5jfl .subtitle-line {
  display: block;
  font-size: 0.6em;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 8px;
}

.16dqx {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hvi8l9 {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.powwmbh1 {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   按钮组件
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-red);
  color: white;
  box-shadow: 0 4px 15px rgba(139, 26, 74, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 26, 74, 0.6);
  color: white;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--dark-bg);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  color: var(--dark-bg);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--dark-border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(212, 175, 55, 0.05);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* =============================================
   通用区块样式
   ============================================= */
.section {
  padding: 80px 0;
}

.a0ixaxm {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.9gpemmoa {
  text-align: center;
  margin-bottom: 52px;
}

.w4688d3 {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--accent);
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.nqqkh {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-main);
}

.nqqkh .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.2ba95 {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* 装饰分隔线 */
.toz80v {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* =============================================
   视频卡片
   ============================================= */
.kc337v {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--gradient-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-card);
}

.omuf1ca {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark-card);
}

.omuf1ca img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .omuf1ca img {
  transform: scale(1.05);
}

.venckoeg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: var(--transition);
}

.video-card:hover .venckoeg {
  opacity: 1;
}

.ts83z {
  width: 56px;
  height: 56px;
  background: rgba(212, 175, 55, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.video-card:hover .ts83z {
  transform: scale(1);
}

.ts83z svg {
  width: 22px;
  height: 22px;
  fill: var(--dark-bg);
  margin-left: 3px;
}

.yjybc8cy {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: white;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
}

.7eqdt5e {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--primary);
  color: white;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 4px;
}

.uwh5hh5r {
  padding: 14px 16px;
}

.video-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.czbaui {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.czbaui span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.p66s2j {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--dark-border);
}

.0jz3dqrd {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: white;
  font-weight: 600;
  flex-shrink: 0;
}

.12vdi00u {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* =============================================
   精选视频大卡片
   ============================================= */
.d7bnhr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.featured-video-card {
  background: var(--gradient-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.featured-video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 12px 40px rgba(139, 26, 74, 0.4);
}

.featured-video-card.large {
  grid-row: span 2;
}

.eacihux {
  position: relative;
  overflow: hidden;
}

.featured-video-card.large .eacihux {
  aspect-ratio: 3/4;
}

.featured-video-card:not(.large) .eacihux {
  aspect-ratio: 16/9;
}

.eacihux img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-video-card:hover .eacihux img {
  transform: scale(1.04);
}

.eacihux .venckoeg {
  opacity: 0;
}

.featured-video-card:hover .venckoeg {
  opacity: 1;
}

.5s6a4v1 {
  padding: 18px 20px;
}

.5s6a4v1 .video-title {
  font-size: 1.05rem;
}

/* =============================================
   游戏传媒模块
   ============================================= */
.media-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.media-tab {
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid var(--dark-border);
  color: var(--text-muted);
  background: transparent;
  transition: var(--transition);
}

.media-tab:hover,
.media-tab.active {
  background: var(--gradient-red);
  color: white;
  border-color: transparent;
}

/* =============================================
   AI赋能区域
   ============================================= */
.ai-section {
  background: linear-gradient(135deg, #0D0A1A 0%, #1A0A2E 100%);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(94, 45, 158, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.ai-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.6vob0yas {
  background: var(--gradient-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.6vob0yas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition);
}

.6vob0yas:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
}

.6vob0yas:hover::before {
  opacity: 1;
}

.jprh1q {
  width: 56px;
  height: 56px;
  background: rgba(94, 45, 158, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  border: 1px solid rgba(94, 45, 158, 0.5);
}

.6vob0yas h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.6vob0yas p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.ai-img-wrap {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: 16px;
}

/* =============================================
   社区功能
   ============================================= */
.2ejuerb {
  background: url('../images/community_bg.jpg') center/cover no-repeat;
  position: relative;
}

.2ejuerb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 10, 26, 0.88);
}

.2ejuerb .a0ixaxm {
  position: relative;
  z-index: 1;
}

.v70jrp60 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.b729qy {
  background: rgba(21, 14, 43, 0.8);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.b729qy:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.sz561it {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}

.b729qy h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
}

.b729qy p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.goinfsm {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--accent);
  background: rgba(212, 175, 55, 0.1);
  padding: 2px 10px;
  border-radius: 12px;
}

/* =============================================
   专家展示
   ============================================= */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.a2i3jst7 {
  background: var(--gradient-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.a2i3jst7:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-card);
}

.sbo9t {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.sbo9t img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.a2i3jst7:hover .sbo9t img {
  transform: scale(1.05);
}

.4odt33 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--gradient-red);
  color: white;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 12px;
}

.eqrj9 {
  padding: 16px;
}

.83lroayn {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.o5b6xqk {
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.cext2 {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.dinoporc {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.6a0swd {
  font-size: 0.72rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 10px;
}

.ptbpo {
  display: flex;
  gap: 8px;
}

/* =============================================
   用户评价
   ============================================= */
.ghxy39ls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.szd0ch {
  background: var(--gradient-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  padding: 20px;
  transition: var(--transition);
}

.szd0ch:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.ue27otp {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.golt9 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

.j50ozpdf .name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.j50ozpdf .date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.5pe0u {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.v2o145hd {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.uk5g7hrm {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--purple-light);
  background: rgba(94, 45, 158, 0.15);
  padding: 2px 10px;
  border-radius: 10px;
}

/* =============================================
   FAQ区域
   ============================================= */
.faq-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #0A0618 100%);
}

.c836qt {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--gradient-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(212, 175, 55, 0.4);
}

.faq-question {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  gap: 12px;
}

.faq-question:hover {
  color: var(--accent);
}

.qzxi9osh {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.open .qzxi9osh {
  transform: rotate(180deg);
  color: var(--accent);
}

.dtsx9vt {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .dtsx9vt {
  max-height: 300px;
}

.jhm055l {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--dark-border);
  padding-top: 14px;
}

/* =============================================
   合作品牌Logo墙
   ============================================= */
.nca4gg {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.7m4yvfn {
  overflow: hidden;
  position: relative;
}

.4dbr4h {
  display: flex;
  gap: 40px;
  animation: scrollPartners 20s linear infinite;
  width: max-content;
}

.4dbr4h:hover {
  animation-play-state: paused;
}

@keyframes scrollPartners {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.25ixyz {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  white-space: nowrap;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.25ixyz:hover {
  color: var(--accent);
  border-color: rgba(212, 175, 55, 0.3);
}

/* =============================================
   联系我们
   ============================================= */
.9pvmgp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.guhqmg {
  background: var(--gradient-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-lg);
  padding: 32px;
}

.guhqmg h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent);
}

.3spw3 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.m1edpf {
  width: 40px;
  height: 40px;
  background: rgba(139, 26, 74, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cpie5 .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.cpie5 .value {
  font-size: 0.95rem;
  color: var(--text-main);
}

.tlo488 {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.0wwsnhe {
  text-align: center;
}

.0wwsnhe img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  border: 2px solid var(--dark-border);
}

.0wwsnhe p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* =============================================
   社区入口
   ============================================= */
.fei02u {
  background: var(--gradient-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-lg);
  padding: 32px;
}

.fei02u h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent);
}

.k2r454o1 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zoe8dg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  transition: var(--transition);
}

.zoe8dg:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.05);
}

.8lad07v {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dysbgorc {
  font-size: 1.4rem;
}

.30oiw4p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.2hr3zf {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =============================================
   社交分享
   ============================================= */
.jil2s7s {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.irpt80tj {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  border: 1px solid var(--dark-border);
  background: transparent;
  color: var(--text-muted);
  transition: var(--transition);
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-btn.wechat:hover { color: #07C160; border-color: #07C160; }
.share-btn.weibo:hover { color: #E6162D; border-color: #E6162D; }
.share-btn.douyin:hover { color: #FE2C55; border-color: #FE2C55; }
.share-btn.bilibili:hover { color: #00A1D6; border-color: #00A1D6; }

/* =============================================
   页脚
   ============================================= */
.site-footer {
  background: #080614;
  border-top: 1px solid var(--dark-border);
  padding: 60px 0 0;
}

.5lbsw {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.59ub4 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.uwphk .i2oaesgd {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.uwphk .i2oaesgd img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.uwphk .61k4r {
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.uwphk p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.vlsplr6h {
  display: flex;
  gap: 10px;
}

.vlsplr6h a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.vlsplr6h a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.n26yrf1 h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--dark-border);
}

.n26yrf1 ul li {
  margin-bottom: 8px;
}

.n26yrf1 ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.n26yrf1 ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.0hrew4f {
  border-top: 1px solid var(--dark-border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.p6tetj {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.p6tetj a {
  color: var(--text-muted);
}

.p6tetj a:hover {
  color: var(--accent);
}

.qw604ba {
  display: flex;
  gap: 16px;
}

.qw604ba a {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.qw604ba a:hover {
  color: var(--accent);
}

.update-time {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =============================================
   面包屑
   ============================================= */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--dark-border);
}

/* =============================================
   内页Banner
   ============================================= */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #0D0A1A 0%, #1A0A2E 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* =============================================
   通知栏
   ============================================= */
.notice-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--purple), var(--primary-dark));
  padding: 8px 0;
  overflow: hidden;
}

.notice-track {
  display: flex;
  gap: 60px;
  animation: scrollNotice 25s linear infinite;
  width: max-content;
}

@keyframes scrollNotice {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.lbbmul {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

.lbbmul::before {
  content: '📢 ';
}

/* =============================================
   加载动画
   ============================================= */
.lazy-img {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lazy-img.loaded {
  opacity: 1;
}

/* =============================================
   响应式
   ============================================= */
@media (max-width: 1024px) {
  .ai-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ghxy39ls {
    grid-template-columns: repeat(2, 1fr);
  }
  .59ub4 {
    grid-template-columns: 1fr 1fr;
  }
  .v70jrp60 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(13, 10, 26, 0.98);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--dark-border);
    gap: 4px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .header-search {
    display: none;
  }

  .search-wrap {
    display: none;
  }

  .d7bnhr {
    grid-template-columns: 1fr;
  }

  .featured-video-card.large {
    grid-row: span 1;
  }

  .featured-video-card.large .eacihux {
    aspect-ratio: 16/9;
  }

  .ai-cards {
    grid-template-columns: 1fr;
  }

  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ghxy39ls {
    grid-template-columns: 1fr;
  }

  .9pvmgp {
    grid-template-columns: 1fr;
  }

  .59ub4 {
    grid-template-columns: 1fr;
  }

  .hvi8l9 {
    gap: 20px;
  }

  .section {
    padding: 56px 0;
  }

  .v70jrp60 {
    grid-template-columns: repeat(2, 1fr);
  }

  .5cqg03l7 .search-tags {
    display: none;
  }
}

@media (max-width: 480px) {
  .experts-grid {
    grid-template-columns: 1fr;
  }
  .v70jrp60 {
    grid-template-columns: 1fr 1fr;
  }
  .kc337v {
    grid-template-columns: 1fr;
  }
  .powwmbh1 {
    flex-direction: column;
  }
  .tlo488 {
    flex-direction: column;
    align-items: center;
  }
}

/* =============================================
   媒体面板（标签切换内容区）
   ============================================= */
.qbr3q {
  display: block;
  animation: fadeIn 0.3s ease;
}

.qbr3q[style*="display:none"] {
  display: none !important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   TikTok风格短视频竖屏卡片
   ============================================= */
.video-card .omuf1ca[style*="aspect-ratio:9/16"] {
  aspect-ratio: 9 / 16;
  max-height: 320px;
  overflow: hidden;
}

.video-card .omuf1ca[style*="aspect-ratio:9/16"] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* =============================================
   频道入口卡片（娱乐专区）
   ============================================= */
.b729qy {
  background: var(--gradient-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  padding: 24px 18px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.b729qy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.b729qy:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(212,175,55,0.15);
}

.b729qy:hover::before {
  opacity: 1;
}

.b729qy .sz561it {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 10px;
}

.b729qy h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.b729qy p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.b729qy .goinfsm {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  background: rgba(212,175,55,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.25);
}

/* =============================================
   联系方式区域
   ============================================= */
.9pvmgp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.guhqmg {
  background: var(--gradient-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-lg);
  padding: 32px;
}

.guhqmg h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--dark-border);
}

.3spw3 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(42,26,74,0.5);
}

.3spw3:last-of-type {
  border-bottom: none;
}

.m1edpf {
  font-size: 1.2rem;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.cpie5 .label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.cpie5 .value {
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
}

.tlo488 {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--dark-border);
}

.0wwsnhe {
  text-align: center;
}

.0wwsnhe img {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  border: 1px solid var(--dark-border);
}

.0wwsnhe p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.fei02u {
  background: var(--gradient-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-lg);
  padding: 32px;
}

.fei02u h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--dark-border);
}

.k2r454o1 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zoe8dg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  transition: var(--transition);
}

.zoe8dg:hover {
  border-color: var(--accent);
  background: rgba(212,175,55,0.05);
}

.8lad07v {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dysbgorc {
  font-size: 1.4rem;
  width: 36px;
  text-align: center;
}

.30oiw4p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 2px;
}

.2hr3zf {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =============================================
   分享栏
   ============================================= */
.jil2s7s {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.irpt80tj {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 24px;
  border: 1px solid var(--dark-border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-btn.wechat:hover  { background: #07C160; border-color: #07C160; color: #fff; }
.share-btn.weibo:hover   { background: #E6162D; border-color: #E6162D; color: #fff; }
.share-btn.douyin:hover  { background: #FE2C55; border-color: #FE2C55; color: #fff; }
.share-btn.bilibili:hover{ background: #00A1D6; border-color: #00A1D6; color: #fff; }

/* =============================================
   响应式补充（新增模块）
   ============================================= */
@media (max-width: 1024px) {
  .9pvmgp {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .b729qy {
    padding: 16px 12px;
  }

  .b729qy .sz561it {
    font-size: 1.8rem;
  }

  .b729qy h3 {
    font-size: 0.85rem;
  }

  .guhqmg,
  .fei02u {
    padding: 20px;
  }

  .tlo488 {
    gap: 12px;
  }

  .0wwsnhe img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .jil2s7s {
    gap: 8px;
  }

  .share-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
