/* =============================================
   爆料吃瓜网 - 主样式文件
   原创设计 | 阴阳师国风游戏主题
   ============================================= */

/* ---- 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);
}

.aeu9g5p4 {
  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.nv2o8t {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
}

.site-logo .wt3bk {
  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);
}

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

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

.danpi6s .7r8p8y {
  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;
}

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

.wqkjh9u0 {
  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%
  );
}

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

.od3slyhi {
  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;
}

.od3slyhi::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); }
}

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

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

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

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

.dsuijqpb {
  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);
}

.ahxsx {
  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;
}

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

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

.728yknd {
  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;
}

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

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

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

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

/* =============================================
   视频卡片
   ============================================= */
.i1xig {
  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);
}

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

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

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

.qhpbutm {
  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 .qhpbutm {
  opacity: 1;
}

.kc99f {
  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 .kc99f {
  transform: scale(1);
}

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

.1bj97 {
  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;
}

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

.0sw3ykug {
  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;
}

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

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

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

.m60bwrz {
  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;
}

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

/* =============================================
   精选视频大卡片
   ============================================= */
.58xt0 {
  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;
}

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

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

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

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

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

.ex9df59v .qhpbutm {
  opacity: 0;
}

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

.xsh4xzdg {
  padding: 18px 20px;
}

.xsh4xzdg .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;
}

.n8f2a {
  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;
}

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

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

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

.hjagja2 {
  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);
}

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

.n8f2a 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;
}

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

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

.y49b4c .bvjp9li {
  position: relative;
  z-index: 1;
}

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

.9tncer {
  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;
}

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

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

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

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

.39qdu {
  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;
}

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

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

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

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

.47mo27pg:hover .nhim9a2t img {
  transform: scale(1.05);
}

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

.w0ji52a {
  padding: 16px;
}

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

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

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

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

.6mpkwveh {
  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;
}

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

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

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

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

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

.kze6j3 {
  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;
}

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

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

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

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

.yh12w {
  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%);
}

.zcm4v7v {
  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);
}

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

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

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

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

.qb55gv {
  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墙
   ============================================= */
.ilvh9 {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

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

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

.id2d8hs:hover {
  animation-play-state: paused;
}

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

.n6cbtl {
  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);
}

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

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

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

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

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

.b3nrl71l {
  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;
}

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

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

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

.1uxlu0i {
  text-align: center;
}

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

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

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

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

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

.z9z9v {
  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);
}

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

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

.dvx6ses {
  font-size: 1.4rem;
}

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

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

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

.5c34zvfa {
  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;
}

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

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

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

.cqr6x .yoveoi img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

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

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

.78pgp7n {
  display: flex;
  gap: 10px;
}

.78pgp7n 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);
}

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

.720al 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);
}

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

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

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

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

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

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

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

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

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

.goltwpem 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%); }
}

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

.9n2bze::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);
  }
  .yihnmyxa {
    grid-template-columns: repeat(2, 1fr);
  }
  .rdrf2 {
    grid-template-columns: 1fr 1fr;
  }
  .764dslwv {
    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;
  }

  .58xt0 {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

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

  .dsuijqpb {
    gap: 20px;
  }

  .section {
    padding: 56px 0;
  }

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

  .bybnmkdn .search-tags {
    display: none;
  }
}

@media (max-width: 480px) {
  .experts-grid {
    grid-template-columns: 1fr;
  }
  .764dslwv {
    grid-template-columns: 1fr 1fr;
  }
  .i1xig {
    grid-template-columns: 1fr;
  }
  .ahxsx {
    flex-direction: column;
  }
  .bq5b6d {
    flex-direction: column;
    align-items: center;
  }
}

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

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

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

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

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

/* =============================================
   频道入口卡片（娱乐专区）
   ============================================= */
.9tncer {
  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;
}

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

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

.9tncer:hover::before {
  opacity: 1;
}

.9tncer .lcuyk7sf {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 10px;
}

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

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

.9tncer .39qdu {
  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);
}

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

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

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

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

.9dfq4r:last-of-type {
  border-bottom: none;
}

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

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

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

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

.1uxlu0i {
  text-align: center;
}

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

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

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

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

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

.z9z9v {
  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);
}

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

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

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

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

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

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

.5c34zvfa {
  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) {
  .ya9fdm {
    grid-template-columns: 1fr;
  }
}

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

  .9tncer .lcuyk7sf {
    font-size: 1.8rem;
  }

  .9tncer h3 {
    font-size: 0.85rem;
  }

  .vff6h,
  .zkty67x {
    padding: 20px;
  }

  .bq5b6d {
    gap: 12px;
  }

  .1uxlu0i img {
    width: 70px;
    height: 70px;
  }
}

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

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