/* ============================================================
   萝莉岛 - 官方网站样式表
   品牌色：深紫罗兰 #6C3FA0 / 玫瑰粉 #FF4D8B / 暗夜蓝 #1A1A2E
   rjoyrk.cn
   ============================================================ */

/* ---- CSS变量 ---- */
:root {
  --brand-primary: #6C3FA0;
  --brand-secondary: #FF4D8B;
  --brand-dark: #1A1A2E;
  --brand-mid: #16213E;
  --brand-accent: #E94560;
  --brand-purple-light: #9B59B6;
  --brand-pink-light: #FF85B3;
  --text-main: #1A1A2E;
  --text-sub: #555577;
  --text-light: #888899;
  --text-white: #FFFFFF;
  --bg-page: #F8F6FF;
  --bg-card: #FFFFFF;
  --bg-dark: #1A1A2E;
  --border-color: #E8E0F5;
  --shadow-sm: 0 2px 8px rgba(108,63,160,0.10);
  --shadow-md: 0 4px 20px rgba(108,63,160,0.15);
  --shadow-lg: 0 8px 40px rgba(108,63,160,0.20);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --font-main: 'PingFang SC','Microsoft YaHei','Hiragino Sans GB',sans-serif;
}

/* ---- 全局重置 ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--bg-page);
  color: var(--text-main);
  line-height: 1.7;
  min-height: 100vh;
}
a { color: var(--brand-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-secondary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); border: none; background: none; }

/* ---- 容器 ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- 通用按钮 ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  box-shadow: 0 4px 15px rgba(255,77,139,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,77,139,0.45);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}
.btn-outline:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ---- 高亮文字 ---- */
.highlight {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--brand-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}
.logo-wrap a { display: flex; align-items: center; }
.logo-img { height: 46px; width: auto; }

/* 导航 */
.main-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  background: rgba(255,77,139,0.18);
  color: var(--brand-pink-light);
}
.nav-toggle {
  display: none;
  color: #fff;
  font-size: 1.4rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
}

/* 搜索栏 */
.search-bar-wrap {
  background: var(--brand-mid);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.search-form {
  display: flex;
  gap: 10px;
  max-width: 700px;
}
.search-input {
  flex: 1;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition);
}
.search-input::placeholder { color: rgba(255,255,255,0.45); }
.search-input:focus { border-color: var(--brand-secondary); }
.search-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all var(--transition);
}
.search-btn:hover { transform: scale(1.04); box-shadow: 0 4px 15px rgba(255,77,139,0.4); }
.search-tip {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin-top: 6px;
  padding-left: 18px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-nav {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.breadcrumb li:not(:last-child)::after {
  content: '›';
  margin-left: 8px;
  color: var(--text-light);
}
.breadcrumb a { color: var(--brand-primary); }
.breadcrumb a:hover { color: var(--brand-secondary); }

/* ============================================================
   HERO BANNER (首页)
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1B69 50%, #6C3FA0 100%);
}
.mmy02wo {
  position: absolute;
  inset: 0;
  background-image: url('/images/banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.yg7i2l0c {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(108,63,160,0.75) 100%);
}
.w1u0qr {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.w1u0qr span {
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,77,139,0.6);
  animation: float-particle 8s infinite linear;
}
.w1u0qr span:nth-child(1)  { left:10%; animation-delay:0s;   animation-duration:7s;  width:3px; height:3px; }
.w1u0qr span:nth-child(2)  { left:25%; animation-delay:1.5s; animation-duration:9s;  width:5px; height:5px; background:rgba(108,63,160,0.7); }
.w1u0qr span:nth-child(3)  { left:50%; animation-delay:3s;   animation-duration:6s;  }
.w1u0qr span:nth-child(4)  { left:70%; animation-delay:0.8s; animation-duration:10s; width:6px; height:6px; background:rgba(255,133,179,0.5); }
.w1u0qr span:nth-child(5)  { left:85%; animation-delay:2s;   animation-duration:8s;  }
@keyframes float-particle {
  0%   { transform: translateY(120vh) rotate(0deg); opacity:0; }
  10%  { opacity:1; }
  90%  { opacity:1; }
  100% { transform: translateY(-20px) rotate(360deg); opacity:0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.0etr2 {
  display: inline-block;
  background: rgba(255,77,139,0.2);
  border: 1px solid rgba(255,77,139,0.4);
  color: var(--brand-pink-light);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title .brand-name {
  background: linear-gradient(135deg, #FF85B3, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.mh7oc1n { text-align: center; }
.50npdb {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-pink-light);
  line-height: 1;
}
.d9mrfb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.egwo1w1e {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.9hwmz {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 420px;
}
.c5g3gif {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  cursor: pointer;
}
.c5g3gif img { width: 100%; height: 140px; object-fit: cover; transition: transform 0.4s; }
.c5g3gif:hover img { transform: scale(1.06); }
.c5g3gif .4boby12m {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
.c5g3gif .ze8tmpw {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255,77,139,0.8);
  padding: 3px 8px;
  border-radius: 4px;
}
.c5g3gif.span2 { grid-column: span 2; }
.c5g3gif.span2 img { height: 160px; }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}
.section-desc {
  color: var(--text-sub);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-more {
  text-align: center;
  margin-top: 32px;
}

/* 内页标题 */
.page-main { padding: 40px 0 80px; }
.page-hero-inner {
  text-align: center;
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 40px;
}
.page-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 14px;
}
.page-desc {
  color: var(--text-sub);
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}
.sub-section { margin-bottom: 56px; }
.sub-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
  position: relative;
}
.sub-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
}

/* ============================================================
   VIDEO CARDS
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.video-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border-color);
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(108,63,160,0.25);
}
.video-thumb-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--brand-dark);
}
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.video-card:hover .video-thumb { transform: scale(1.06); }
.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.video-card:hover .play-overlay { background: rgba(0,0,0,0.38); }
.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,77,139,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(255,77,139,0.5);
}
.play-btn svg { width: 22px; height: 22px; margin-left: 3px; }
.video-card:hover .play-btn { opacity: 1; transform: scale(1); }
.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 600;
}
.video-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  font-size: 0.72rem;
  padding: 3px 9px;
  border-radius: 4px;
  font-weight: 600;
}
.live-tag { background: linear-gradient(135deg, #E94560, #FF6B35) !important; }
.live-badge-sm {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #E94560;
  color: #fff;
  font-size: 0.72rem;
  padding: 3px 9px;
  border-radius: 4px;
  font-weight: 700;
  animation: pulse-live 1.5s infinite;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.video-info { padding: 14px 16px; }
.video-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-title a { color: inherit; }
.video-title a:hover { color: var(--brand-primary); }
.video-desc {
  font-size: 0.82rem;
  color: var(--text-sub);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.video-meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============================================================
   HOMEPAGE SECTIONS
   ============================================================ */
.home-section { padding: 70px 0; }
.home-section:nth-child(even) { background: #fff; }

/* 动漫直播区 */
.live-section { background: linear-gradient(135deg, var(--brand-dark) 0%, #2D1B69 100%); }
.live-section .section-title { color: #fff; }
.live-section .section-desc { color: rgba(255,255,255,0.7); }
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.live-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.live-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.12); }
.live-card .video-title a { color: #fff; }
.live-card .video-desc { color: rgba(255,255,255,0.65); }
.live-card .video-meta { color: rgba(255,255,255,0.5); }
.live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #E94560;
  color: #fff;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  animation: pulse-live 1.5s infinite;
}
.live-viewers {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
}

/* 专家区 */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.expert-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}
.expert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.expert-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 3px solid var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(108,63,160,0.15);
}
.expert-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.expert-title {
  font-size: 0.82rem;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 10px;
}
.expert-desc { font-size: 0.82rem; color: var(--text-sub); line-height: 1.6; }

/* 评论区 */
.reviews-section { background: linear-gradient(135deg, #F8F6FF 0%, #FFF0F7 100%); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-primary);
}
.review-user-info h4 { font-size: 0.9rem; font-weight: 700; }
.review-user-info .review-role { font-size: 0.75rem; color: var(--brand-primary); font-weight: 600; }
.review-stars { color: #FFB800; font-size: 0.85rem; margin-bottom: 8px; }
.review-text { font-size: 0.85rem; color: var(--text-sub); line-height: 1.7; }
.review-date { font-size: 0.75rem; color: var(--text-light); margin-top: 10px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: background var(--transition);
  user-select: none;
}
.faq-q:hover { background: rgba(108,63,160,0.05); }
.faq-q.active { color: var(--brand-primary); background: rgba(108,63,160,0.06); }
.faq-arrow { transition: transform var(--transition); font-size: 0.8rem; color: var(--text-light); }
.faq-q.active .faq-arrow { transform: rotate(180deg); color: var(--brand-primary); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}
.faq-a.open { max-height: 300px; padding: 0 22px 18px; }
.faq-a p { font-size: 0.88rem; color: var(--text-sub); line-height: 1.8; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  display: flex;
  gap: 0;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--shadow-md);
}
.stats-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stats-item:last-child { border-right: none; }
.stats-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stats-label { font-size: 0.8rem; color: rgba(255,255,255,0.8); margin-top: 4px; }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}
.filter-label { font-size: 0.88rem; font-weight: 600; color: var(--text-sub); white-space: nowrap; }
.filter-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tag {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1.5px solid var(--border-color);
  color: var(--text-sub);
  background: #fff;
  transition: all var(--transition);
}
.filter-tag:hover, .filter-tag.active {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  border-color: transparent;
}

/* ============================================================
   RANK LIST
   ============================================================ */
.rank-list { display: flex; flex-direction: column; gap: 12px; }
.rank-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}
.rank-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.rank-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border-color);
  color: var(--text-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.rank-1 { background: linear-gradient(135deg, #FFB800, #FF6B35); color: #fff; }
.rank-2 { background: linear-gradient(135deg, #C0C0C0, #A8A8A8); color: #fff; }
.rank-3 { background: linear-gradient(135deg, #CD7F32, #A0522D); color: #fff; }
.rank-thumb { width: 80px; height: 52px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.rank-info h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.rank-info h3 a { color: var(--text-main); }
.rank-info h3 a:hover { color: var(--brand-primary); }
.rank-info p { font-size: 0.78rem; color: var(--text-light); }

/* ============================================================
   TUTORIAL CARDS
   ============================================================ */
.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.tutorial-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}
.tutorial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tutorial-info { padding: 16px; }
.tutorial-info h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.tutorial-info p { font-size: 0.83rem; color: var(--text-sub); margin-bottom: 10px; line-height: 1.6; }
.tutorial-meta { display: flex; gap: 12px; font-size: 0.78rem; color: var(--text-light); flex-wrap: wrap; }

/* ============================================================
   GUIDE STEPS
   ============================================================ */
.guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.guide-step-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.guide-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
}
.guide-step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.guide-step-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--brand-primary);
  background: rgba(108,63,160,0.1);
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
}
.guide-step-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.guide-step-card p { font-size: 0.83rem; color: var(--text-sub); line-height: 1.6; }

/* ============================================================
   TOOLS GRID
   ============================================================ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.tool-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
  position: relative;
}
.tool-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tool-card.featured {
  border-color: var(--brand-primary);
  box-shadow: 0 4px 20px rgba(108,63,160,0.2);
}
.tool-icon { font-size: 2.4rem; margin-bottom: 12px; }
.tool-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 700;
}
.tool-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.tool-card p { font-size: 0.85rem; color: var(--text-sub); line-height: 1.6; margin-bottom: 14px; }
.tool-features { margin-bottom: 16px; }
.tool-features li { font-size: 0.82rem; color: var(--text-sub); padding: 3px 0; }
.tool-stats { font-size: 0.78rem; color: var(--text-light); margin-bottom: 16px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-text h3 { font-size: 1.1rem; font-weight: 700; margin: 20px 0 10px; color: var(--brand-primary); }
.about-text h3:first-child { margin-top: 0; }
.about-text p { font-size: 0.9rem; color: var(--text-sub); line-height: 1.8; margin-bottom: 12px; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.stats-grid-about {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.stats-about-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}
.stats-about-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stats-num-lg {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stats-label-lg { font-size: 0.9rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; display: block; }
.stats-about-item p { font-size: 0.8rem; color: var(--text-sub); }

/* Timeline */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-primary), var(--brand-secondary));
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(108,63,160,0.3);
}
.timeline-year {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand-primary);
  background: rgba(108,63,160,0.1);
  padding: 3px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 8px;
}
.timeline-content h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.timeline-content p { font-size: 0.85rem; color: var(--text-sub); line-height: 1.7; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}
.contact-card-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.contact-icon { font-size: 1.6rem; margin-bottom: 8px; }
.contact-card-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.contact-card-item p { font-size: 0.83rem; color: var(--text-sub); }
.contact-value { font-size: 0.85rem; color: var(--brand-primary); font-weight: 600; margin-top: 4px; }
.qrcode-img { width: 100px; height: 100px; margin-top: 10px; border-radius: var(--radius-sm); }
.work-time-box {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}
.work-time-box p { font-size: 0.88rem; color: var(--text-sub); margin-bottom: 6px; }
.work-time-note { color: var(--brand-primary) !important; font-weight: 600; }

/* 联系表单 */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text-main); }
.form-input, .form-textarea {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  font-size: 0.9rem;
  font-family: var(--font-main);
  color: var(--text-main);
  background: var(--bg-card);
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus, .form-textarea:focus { border-color: var(--brand-primary); }
.form-textarea { resize: vertical; min-height: 120px; }
.contact-success {
  background: rgba(108,63,160,0.08);
  border: 1px solid var(--brand-primary);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--brand-primary);
  font-weight: 600;
  text-align: center;
}

/* ============================================================
   COMMUNITY PAGE
   ============================================================ */
.live-card-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}
.live-card-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.live-info { padding: 14px 16px; }
.live-info h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 6px; }
.live-info p { font-size: 0.82rem; color: var(--text-sub); margin-bottom: 8px; }
.live-meta { display: flex; gap: 12px; font-size: 0.78rem; color: var(--text-light); }
.topic-list { display: flex; flex-direction: column; gap: 14px; }
.topic-item {
  display: flex;
  gap: 14px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}
.topic-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.topic-rank {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.topic-rank.hot { background: linear-gradient(135deg, #E94560, #FF6B35); }
.topic-rank.new { background: linear-gradient(135deg, #27AE60, #2ECC71); }
.topic-content h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 6px; }
.topic-content h3 a { color: var(--text-main); }
.topic-content h3 a:hover { color: var(--brand-primary); }
.topic-content p { font-size: 0.82rem; color: var(--text-sub); margin-bottom: 8px; }
.topic-meta { display: flex; gap: 12px; font-size: 0.78rem; color: var(--text-light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.gallery-item:hover .gallery-overlay { background: rgba(108,63,160,0.55); }
.rules-box {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}
.rules-box p { font-size: 0.9rem; color: var(--text-sub); margin-bottom: 14px; }
.rules-list { display: flex; flex-direction: column; gap: 8px; }
.rules-list li { font-size: 0.88rem; color: var(--text-sub); padding-left: 20px; position: relative; }
.rules-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: 700;
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.q2p6rn {
  background: var(--brand-dark);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
}
.styxj {
  position: absolute;
  top: 12px;
  right: 14px;
  color: rgba(255,255,255,0.8);
  font-size: 1.6rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.styxj:hover { background: rgba(255,77,139,0.4); color: #fff; }
.h6q5jay { aspect-ratio: 16/9; background: #000; }
.5uslobij {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.5uslobij-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1B69 100%);
  opacity: 0.9;
}
.5uslobij-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  gap: 14px;
}
.9400u5g6 {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255,77,139,0.3);
  border-top-color: var(--brand-secondary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.nqgxlq { color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 600; }
.mock-controls {
  background: rgba(0,0,0,0.7);
  padding: 10px 16px;
  position: relative;
  z-index: 2;
}
.x9kk4s { height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; margin-bottom: 8px; overflow: hidden; }
.x9kk4s-bar {
  height: 100%;
  width: 35%;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 2px;
  animation: progress-anim 4s linear infinite;
}
@keyframes progress-anim { from { width: 0%; } to { width: 100%; } }
.vpr2z {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}
.lpvgeatw { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.y5zohad {
  padding: 12px 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.y5zohad a { color: var(--brand-pink-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,0.7);
}
.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .footer-logo { height: 46px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-qr-wrap { display: flex; gap: 16px; margin-top: 20px; }
.footer-qr-item { text-align: center; }
.footer-qr-item img { width: 80px; height: 80px; border-radius: var(--radius-sm); margin-bottom: 6px; }
.footer-qr-item span { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.footer-col h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--brand-pink-light); }
.footer-bottom {
  padding: 18px 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-update { color: rgba(255,255,255,0.4); }
.footer-nav-links { display: flex; gap: 16px; }
.footer-nav-links a { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-nav-links a:hover { color: var(--brand-pink-light); }

/* ============================================================
   HOMEPAGE SPECIFIC SECTIONS
   ============================================================ */
/* 首页动漫区 */
.anime-tabs-wrap {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.anime-tab {
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1.5px solid var(--border-color);
  color: var(--text-sub);
  background: #fff;
  transition: all var(--transition);
}
.anime-tab:hover, .anime-tab.active {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  border-color: transparent;
}

/* AI赋能区 */
.ai-section { background: linear-gradient(135deg, #0F0C29 0%, #302B63 50%, #24243E 100%); }
.ai-section .section-title { color: #fff; }
.ai-section .section-desc { color: rgba(255,255,255,0.7); }
.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.ai-feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: all var(--transition);
}
.ai-feature-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(255,77,139,0.3);
}
.ai-icon { font-size: 2.2rem; margin-bottom: 14px; }
.ai-feature-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.ai-feature-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.ai-feature-card .ai-tag {
  display: inline-block;
  background: rgba(255,77,139,0.2);
  color: var(--brand-pink-light);
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 12px;
  font-weight: 600;
}

/* 加载更多 */
.load-more-wrap { text-align: center; margin-top: 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .egwo1w1e { display: none; }
  .about-content { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-list {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--brand-dark);
    flex-direction: column;
    padding: 12px 0;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .nav-list.open { display: flex; }
  .nav-link { padding: 12px 20px; border-radius: 0; width: 100%; }
  .hero-content { padding: 50px 0; }
  .hero-title { font-size: 1.8rem; }
  .hero-stats { gap: 20px; }
  .video-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .stats-bar { flex-wrap: wrap; }
  .stats-item { flex: 1 1 40%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .experts-grid { grid-template-columns: repeat(2, 1fr); }
  .9hwmz { display: none; }
  .guide-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .video-grid { grid-template-columns: 1fr; }
  .experts-grid { grid-template-columns: 1fr; }
  .guide-steps { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .ai-features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .filter-bar { flex-direction: column; align-items: flex-start; }
  .about-content { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .timeline { padding-left: 28px; }
  .stats-item { flex: 1 1 100%; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-page); }
::-webkit-scrollbar-thumb { background: var(--brand-primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-secondary); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.etoz1 { animation: fadeInUp 0.6s ease both; }
.etoz1-d1 { animation-delay: 0.1s; }
.etoz1-d2 { animation-delay: 0.2s; }
.etoz1-d3 { animation-delay: 0.3s; }

/* ============================================================
   NOTICE BAR
   ============================================================ */
.notice-bar {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  padding: 8px 0;
  font-size: 0.82rem;
  overflow: hidden;
}
.ta7pu {
  display: flex;
  align-items: center;
  gap: 12px;
}
.05uy5n {
  background: rgba(255,255,255,0.2);
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.hothmc2 { overflow: hidden; flex: 1; }
.zrfzhpz {
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(100%); }
  to   { transform: translateX(-100%); }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.siu6hm2 {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  border: none;
}
.siu6hm2.visible { opacity: 1; transform: translateY(0); }
.siu6hm2:hover { transform: translateY(-3px) scale(1.08); }

/* ============================================================
   ENTERTAINMENT SECTION (娱乐专区)
   ============================================================ */
.entertainment-section { background: var(--bg-section); }

.ent-tabs-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.ent-tab {
  padding: 9px 22px;
  border-radius: 24px;
  border: 2px solid rgba(108,63,160,0.3);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 600;
}
.ent-tab:hover, .ent-tab.active {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(108,63,160,0.35);
}
.ent-panel { animation: fadeInUp 0.4s ease both; }
.ent-panel-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ent-icon { font-size: 1.3rem; }
.ent-panel-desc { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }
.ent-sub-h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 28px 0 14px;
  padding-left: 12px;
  border-left: 3px solid var(--brand-secondary);
}

/* TikTok Grid */
.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.tiktok-card { background: var(--bg-card); border-radius: var(--radius-md); overflow: hidden; transition: transform var(--transition); }
.tiktok-card:hover { transform: translateY(-4px); }
.tiktok-thumb { aspect-ratio: 9/16; }
.tiktok-info { padding: 10px 12px; }
.tiktok-info h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; line-height: 1.3; }
.tiktok-info p { font-size: 0.78rem; color: var(--text-muted); }
.tiktok-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  z-index: 2;
}

/* Rank List */
.ent-rank-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ent-rank-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  transition: background var(--transition);
}
.ent-rank-list li:hover { background: rgba(108,63,160,0.12); }
.ent-rank-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(108,63,160,0.2);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ent-rank-num.rank-1 { background: linear-gradient(135deg,#FFD700,#FF8C00); color: #fff; }
.ent-rank-num.rank-2 { background: linear-gradient(135deg,#C0C0C0,#A0A0A0); color: #fff; }
.ent-rank-num.rank-3 { background: linear-gradient(135deg,#CD7F32,#A0522D); color: #fff; }
.ent-rank-title { flex: 1; font-size: 0.9rem; color: var(--text-primary); }
.ent-rank-tag {
  font-size: 0.75rem;
  background: rgba(255,77,139,0.15);
  color: var(--brand-secondary);
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Cosplay Grid */
.cosplay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.cosplay-card { background: var(--bg-card); border-radius: var(--radius-md); overflow: hidden; }
.cosplay-creator-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.cosplay-creator {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.cosplay-creator img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.cosplay-creator h5 { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.cosplay-creator p { font-size: 0.75rem; color: var(--text-muted); }

/* Subculture Grid */
.subculture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.subculture-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.subculture-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.subculture-icon { font-size: 2rem; margin-bottom: 10px; }
.subculture-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.subculture-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.subculture-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.subculture-tags span {
  font-size: 0.72rem;
  background: rgba(108,63,160,0.15);
  color: var(--brand-primary);
  padding: 2px 8px;
  border-radius: 4px;
}
.subculture-link { font-size: 0.82rem; color: var(--brand-secondary); font-weight: 600; text-decoration: none; }
.subculture-link:hover { text-decoration: underline; }

/* Knowledge List */
.knowledge-list { display: flex; flex-direction: column; gap: 12px; }
.knowledge-item {
  display: flex;
  gap: 14px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.knowledge-num {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--brand-primary);
  opacity: 0.4;
  flex-shrink: 0;
  width: 32px;
}
.knowledge-item h5 { font-size: 0.92rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.knowledge-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   COMMUNITY PAGE STYLES
   ============================================================ */
.community-intro { color: var(--text-muted); margin-bottom: 24px; line-height: 1.8; }
.community-sub-h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 28px 0 14px;
  padding-left: 12px;
  border-left: 3px solid var(--brand-secondary);
}

/* Live Card */
.live-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.live-card-item { background: var(--bg-card); border-radius: var(--radius-md); overflow: hidden; }
.live-info { padding: 14px; }
.live-info h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.live-info p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.live-meta { display: flex; gap: 12px; font-size: 0.8rem; color: var(--text-muted); }
.live-badge-sm {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #FF4D4D;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  z-index: 2;
  animation: pulse 1.5s infinite;
}

/* Feature Tips */
.feature-tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-tip {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
}
.feature-tip-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.feature-tip h5 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.feature-tip p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Voice Section */
.voice-section { background: linear-gradient(135deg, rgba(26,26,46,0.8), rgba(44,27,75,0.8)); }
.voice-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.voice-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--transition), border-color var(--transition);
}
.voice-card:hover { transform: translateY(-4px); border-color: var(--brand-primary); }
.voice-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.voice-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.voice-card h4 { font-size: 0.85rem; color: var(--brand-secondary); margin-bottom: 10px; font-weight: 600; }
.voice-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.voice-features-list { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 6px; }
.voice-features-list li { font-size: 0.85rem; color: var(--text-muted); }
.voice-stats { display: flex; gap: 12px; flex-wrap: wrap; font-size: 0.8rem; color: var(--brand-secondary); font-weight: 600; }

/* Emotion Section */
.emotion-section { background: var(--bg-section); }
.emotion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 28px; }
.emotion-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(255,77,139,0.1);
  transition: transform var(--transition), border-color var(--transition);
}
.emotion-card:hover { transform: translateY(-4px); border-color: var(--brand-secondary); }
.emotion-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.emotion-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.emotion-card h4 { font-size: 0.85rem; color: var(--brand-secondary); margin-bottom: 10px; font-weight: 600; }
.emotion-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.emotion-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.emotion-tags span {
  font-size: 0.72rem;
  background: rgba(255,77,139,0.12);
  color: var(--brand-secondary);
  padding: 2px 8px;
  border-radius: 4px;
}
.emotion-expert { display: flex; align-items: center; gap: 8px; }
.emotion-expert img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.emotion-expert span { font-size: 0.8rem; color: var(--text-muted); }

/* Topic List */
.topic-list { display: flex; flex-direction: column; gap: 14px; }
.topic-item {
  display: flex;
  gap: 14px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: background var(--transition);
}
.topic-item:hover { background: rgba(108,63,160,0.1); }
.topic-rank {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(108,63,160,0.2);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.topic-rank.hot { background: linear-gradient(135deg,#FF4D4D,#FF8C00); color: #fff; }
.topic-rank.new { background: linear-gradient(135deg,#00C9FF,#0072FF); color: #fff; }
.topic-content { flex: 1; }
.topic-content h3, .topic-content h5 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.topic-content h3 a, .topic-content h5 a { color: inherit; text-decoration: none; }
.topic-content h3 a:hover, .topic-content h5 a:hover { color: var(--brand-secondary); }
.topic-content p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 6px; line-height: 1.5; }
.topic-meta { display: flex; gap: 14px; font-size: 0.78rem; color: var(--text-muted); }

/* Rules Box */
.rules-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(108,63,160,0.2);
}
.rules-box h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.rules-box p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.rules-list { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.rules-list li { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   BREADCRUMB NAV
   ============================================================ */
.breadcrumb-nav {
  background: var(--bg-card);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb li:not(:last-child)::after { content: " › "; margin-left: 8px; color: var(--text-muted); }
.breadcrumb a { color: var(--brand-secondary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   SUB-SECTION (内页通用)
   ============================================================ */
.sub-section { padding: 48px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sub-section:last-child { border-bottom: none; }
.sub-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

/* ============================================================
   RESPONSIVE - 娱乐专区 & 社区页
   ============================================================ */
@media (max-width: 1024px) {
  .tiktok-grid { grid-template-columns: repeat(2, 1fr); }
  .subculture-grid { grid-template-columns: repeat(2, 1fr); }
  .cosplay-creator-list { grid-template-columns: repeat(2, 1fr); }
  .voice-features-grid { grid-template-columns: 1fr 1fr; }
  .emotion-grid { grid-template-columns: 1fr 1fr; }
  .live-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .tiktok-grid { grid-template-columns: repeat(2, 1fr); }
  .cosplay-grid { grid-template-columns: 1fr 1fr; }
  .subculture-grid { grid-template-columns: 1fr 1fr; }
  .cosplay-creator-list { grid-template-columns: 1fr 1fr; }
  .voice-features-grid { grid-template-columns: 1fr; }
  .emotion-grid { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: 1fr; }
  .feature-tips-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .tiktok-grid { grid-template-columns: 1fr 1fr; }
  .cosplay-grid { grid-template-columns: 1fr; }
  .subculture-grid { grid-template-columns: 1fr; }
  .cosplay-creator-list { grid-template-columns: 1fr; }
  .ent-tabs-wrap { gap: 6px; }
  .ent-tab { padding: 7px 14px; font-size: 0.82rem; }
}
