/* =========================================================
   樱花网站官网在线观看电视剧 - 共享样式表
   主题：日系柔美樱花风
   ========================================================= */

/* ---------- 设计变量 ---------- */
:root {
  --pink-soft: #ff9eb5;
  --pink-deep: #e63946;
  --pink-light: #ffd1dc;
  --pink-pale: #ffe8ee;
  --bg-cream: #fff5f7;
  --bg-white: #ffffff;
  --ink: #3a2230;
  --ink-soft: #6b4a5a;
  --ink-mute: #9a7d8a;
  --gold: #f4a261;
  --gold-deep: #e76f51;
  --shadow-pink: 0 8px 24px rgba(255, 158, 181, 0.28);
  --shadow-pink-lg: 0 16px 40px rgba(230, 57, 70, 0.22);
  --shadow-card: 0 6px 18px rgba(255, 158, 181, 0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --grad-pink: linear-gradient(135deg, #ff9eb5 0%, #e63946 100%);
  --grad-pink-soft: linear-gradient(135deg, #ffd1dc 0%, #ff9eb5 100%);
  --grad-nav: linear-gradient(90deg, #e63946 0%, #ff7a9c 50%, #ff9eb5 100%);
  --grad-hero: linear-gradient(120deg, #e63946 0%, #ff7a9c 45%, #ffd1dc 100%);
  --maxw: 1240px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- 樱花飘落动画 ---------- */
.sakura-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  overflow: hidden;
}
.petal {
  position: absolute;
  top: -40px;
  width: 22px;
  height: 22px;
  opacity: 0;
  animation: petalFall linear infinite;
  will-change: transform, opacity;
}
@keyframes petalFall {
  0%   { transform: translate3d(0, -10vh, 0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.9; }
  50%  { transform: translate3d(40px, 55vh, 0) rotate(180deg); }
  90%  { opacity: 0.7; }
  100% { transform: translate3d(-30px, 110vh, 0) rotate(360deg); opacity: 0; }
}

/* ---------- 顶部导航 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--grad-nav);
  box-shadow: 0 2px 16px rgba(230, 57, 70, 0.18);
}
.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.brand .logo-svg { width: 34px; height: 34px; flex-shrink: 0; }
.brand-text { line-height: 1.2; }
.brand-text small { display: block; font-size: 10px; font-weight: 400; opacity: 0.85; letter-spacing: 1px; }
.nav-menu {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav-menu a {
  color: rgba(255, 255, 255, 0.92);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.25s, transform 0.25s;
  white-space: nowrap;
}
.nav-menu a:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-1px); }
.nav-menu a.active { background: rgba(255, 255, 255, 0.95); color: var(--pink-deep); font-weight: 600; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.btn-search {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.btn-search:hover { background: rgba(255, 255, 255, 0.35); }
.btn-vip {
  background: linear-gradient(135deg, #ffe08a 0%, #f4a261 100%);
  color: #5a2a1a;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(244, 162, 97, 0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-vip:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(244, 162, 97, 0.55); }

/* ---------- 通用容器 ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 48px 0; }
.section-tight { padding: 32px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title::before {
  content: "";
  width: 6px; height: 26px;
  border-radius: 4px;
  background: var(--grad-pink);
}
.section-title .sub { font-size: 13px; font-weight: 400; color: var(--ink-mute); }
.section-more {
  color: var(--pink-deep);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.25s;
}
.section-more:hover { gap: 8px; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 26px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-primary { background: var(--grad-pink); color: #fff; box-shadow: var(--shadow-pink); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-pink-lg); }
.btn-ghost { background: rgba(255, 255, 255, 0.25); color: #fff; border: 1.5px solid rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.4); transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--pink-deep); border: 1.5px solid var(--pink-soft); }
.btn-outline:hover { background: var(--pink-pale); transform: translateY(-2px); }

/* ---------- Hero 大 Banner ---------- */
.hero {
  position: relative;
  background: var(--grad-hero);
  overflow: hidden;
  padding: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.25), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.18), transparent 45%);
}
.hero-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 24px 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-text { color: #fff; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.22);
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(120, 20, 40, 0.25);
}
.hero-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 14px;
  opacity: 0.95;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 5px; }
.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 26px;
  opacity: 0.95;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(120, 20, 40, 0.35);
  overflow: hidden;
  background: linear-gradient(160deg, #ffb3c6 0%, #e63946 60%, #7a1a2a 100%);
}
.hero-poster::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 50%);
}
.hero-poster .poster-label {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(255,255,255,0.92);
  color: var(--pink-deep);
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}
.hero-poster .poster-title {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  color: #fff;
  z-index: 2;
}
.hero-poster .poster-title h3 { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.hero-poster .poster-title p { font-size: 13px; opacity: 0.9; }
.hero-poster .play-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
}
.hero-strip {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-strip-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  color: #fff;
}
.hero-strip-item { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.hero-strip-item strong { font-size: 22px; font-weight: 800; }
.hero-strip-item small { display: block; opacity: 0.85; font-size: 12px; }

/* ---------- 分类入口 ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  color: #fff;
  overflow: hidden;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-card);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pink-lg); }
.category-card.c1 { background: linear-gradient(135deg, #ff9eb5, #e63946); }
.category-card.c2 { background: linear-gradient(135deg, #ffb86b, #e76f51); }
.category-card.c3 { background: linear-gradient(135deg, #c08bff, #8e44ad); }
.category-card.c4 { background: linear-gradient(135deg, #7ed4ff, #2a9df4); }
.category-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.category-card p { font-size: 13px; opacity: 0.9; }
.category-card .cat-icon { position: absolute; right: 16px; bottom: 12px; opacity: 0.5; }

/* ---------- 横向滚动卡片 (本周热播) ---------- */
.scroll-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--pink-soft) transparent;
}
.scroll-row::-webkit-scrollbar { height: 8px; }
.scroll-row::-webkit-scrollbar-thumb { background: var(--pink-soft); border-radius: 4px; }
.scroll-row::-webkit-scrollbar-track { background: var(--pink-pale); border-radius: 4px; }

/* ---------- 剧集卡片 ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.video-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
}
.video-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-pink-lg); }
.video-card:hover .poster-mask { opacity: 1; }
.video-card:hover .play-mini { transform: scale(1); opacity: 1; }

.poster {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.poster .badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--pink-deep);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  z-index: 2;
}
.poster .badge.vip { background: linear-gradient(135deg, #f4a261, #e76f51); }
.poster .badge.free { background: #2a9df4; }
.poster .badge.hot { background: var(--pink-deep); }
.poster .score {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(0,0,0,0.55);
  color: #ffd700;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  z-index: 2;
}
.poster .ep-update {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 12px;
  padding: 18px 10px 8px;
  z-index: 2;
}
.poster-mask {
  position: absolute;
  inset: 0;
  background: rgba(230, 57, 70, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.play-mini {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.card-body { padding: 12px 14px 14px; }
.card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-meta {
  font-size: 12px;
  color: var(--ink-mute);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.card-meta .dot { color: var(--pink-soft); }

/* 海报渐变变体 - 模拟不同剧海报 */
.p-g1 { background: linear-gradient(155deg, #ffb3c6 0%, #e63946 60%, #6a1626 100%); }
.p-g2 { background: linear-gradient(155deg, #ffd1a8 0%, #e76f51 55%, #5a2018 100%); }
.p-g3 { background: linear-gradient(155deg, #c8b6ff 0%, #8e44ad 60%, #3a1452 100%); }
.p-g4 { background: linear-gradient(155deg, #a8e6ff 0%, #2a9df4 60%, #103a6a 100%); }
.p-g5 { background: linear-gradient(155deg, #b8f2c9 0%, #2a9d8f 60%, #0d3a35 100%); }
.p-g6 { background: linear-gradient(155deg, #ffe5a8 0%, #f4a261 55%, #6a3a18 100%); }
.p-g7 { background: linear-gradient(155deg, #ffc9de 0%, #d63384 60%, #4a0e2c 100%); }
.p-g8 { background: linear-gradient(155deg, #d4e8ff 0%, #5a7fdf 60%, #1a2a5a 100%); }
.p-g9 { background: linear-gradient(155deg, #ffcdc2 0%, #e63946 50%, #2a0a14 100%); }
.p-g10 { background: linear-gradient(155deg, #e8c5ff 0%, #a259c9 60%, #2a0a45 100%); }
.p-g11 { background: linear-gradient(155deg, #fff0c2 0%, #e9c46a 55%, #6a4a18 100%); }
.p-g12 { background: linear-gradient(155deg, #c2ffe9 0%, #2a9d8f 60%, #0a3530 100%); }
.p-g13 { background: linear-gradient(155deg, #ffc2dc 0%, #c9184a 60%, #3a0814 100%); }
.p-g14 { background: linear-gradient(155deg, #c2d8ff 0%, #3a6ad4 60%, #0a1a4a 100%); }
.p-g15 { background: linear-gradient(155deg, #ffd6c2 0%, #e76f51 50%, #3a1010 100%); }
.poster::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.28), transparent 55%);
}

/* ---------- 榜单列表 ---------- */
.rank-list { display: grid; gap: 14px; }
.rank-item {
  display: grid;
  grid-template-columns: 50px 80px 1fr auto;
  gap: 18px;
  align-items: center;
  background: var(--bg-white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}
.rank-item:hover { transform: translateX(6px); box-shadow: var(--shadow-pink); }
.rank-num {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  font-style: italic;
  color: var(--ink-mute);
}
.rank-item.top1 .rank-num { color: var(--pink-deep); }
.rank-item.top2 .rank-num { color: var(--gold); }
.rank-item.top3 .rank-num { color: #c08bff; }
.rank-poster {
  width: 80px; height: 106px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.rank-poster::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.3), transparent 55%);
}
.rank-info h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.rank-info p { font-size: 13px; color: var(--ink-mute); }
.rank-info .tags { margin-top: 6px; display: flex; gap: 6px; flex-wrap: wrap; }
.rank-info .tags span {
  font-size: 11px;
  background: var(--pink-pale);
  color: var(--pink-deep);
  padding: 2px 8px;
  border-radius: 8px;
}
.rank-right { text-align: right; }
.rank-right .heat { font-size: 13px; color: var(--pink-deep); font-weight: 600; }
.rank-right .trend { font-size: 12px; margin-top: 4px; display: inline-flex; align-items: center; gap: 3px; }
.rank-right .up { color: #e63946; }
.rank-right .down { color: #2a9d8f; }
.rank-right .flat { color: var(--ink-mute); }

/* ---------- 榜单切换 Tabs ---------- */
.tab-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tab-bar button {
  padding: 10px 24px;
  border-radius: 22px;
  background: var(--bg-white);
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid var(--pink-pale);
  transition: all 0.25s;
}
.tab-bar button:hover { border-color: var(--pink-soft); color: var(--pink-deep); }
.tab-bar button.active { background: var(--grad-pink); color: #fff; border-color: transparent; box-shadow: var(--shadow-pink); }

/* ---------- 筛选栏 ---------- */
.filter-bar {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  margin-bottom: 28px;
}
.filter-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--pink-pale);
}
.filter-row:last-child { border-bottom: none; }
.filter-label {
  flex-shrink: 0;
  width: 70px;
  font-size: 14px;
  color: var(--ink-mute);
  font-weight: 500;
  padding-top: 4px;
}
.filter-options { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-options a {
  padding: 5px 14px;
  border-radius: 16px;
  font-size: 13px;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.filter-options a:hover { color: var(--pink-deep); background: var(--pink-pale); }
.filter-options a.active { background: var(--grad-pink); color: #fff; font-weight: 500; }

/* ---------- 分页 ---------- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pagination a {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--bg-white);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-card);
  transition: all 0.2s;
}
.pagination a:hover { background: var(--pink-pale); color: var(--pink-deep); }
.pagination a.active { background: var(--grad-pink); color: #fff; }
.pagination a.disabled { opacity: 0.4; pointer-events: none; }

/* ---------- VIP 横幅 ---------- */
.vip-banner {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  background: linear-gradient(120deg, #2a0a1c 0%, #6a1a3a 50%, #e63946 100%);
  color: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: center;
  box-shadow: 0 16px 40px rgba(106, 26, 58, 0.4);
}
.vip-banner::before {
  content: "";
  position: absolute;
  right: -50px; top: -50px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.4), transparent 70%);
}
.vip-banner h2 { font-size: 30px; font-weight: 800; margin-bottom: 12px; }
.vip-banner h2 .gold-text { color: #ffd700; }
.vip-banner p { font-size: 15px; opacity: 0.92; margin-bottom: 22px; max-width: 520px; }
.vip-perks { display: flex; gap: 22px; flex-wrap: wrap; margin-bottom: 24px; }
.vip-perk { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.vip-price { text-align: center; }
.vip-price .num { font-size: 48px; font-weight: 800; color: #ffd700; line-height: 1; }
.vip-price .num small { font-size: 18px; }
.vip-price .unit { font-size: 13px; opacity: 0.85; margin: 6px 0 18px; }

/* ---------- 新番时间表 ---------- */
.schedule-table {
  width: 100%;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border-collapse: collapse;
}
.schedule-table th, .schedule-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--pink-pale);
  vertical-align: top;
}
.schedule-table thead th {
  background: var(--grad-pink-soft);
  color: var(--pink-deep);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
.schedule-table thead th.today { background: var(--grad-pink); color: #fff; }
.schedule-table td { font-size: 13px; }
.schedule-table .day-cell { text-align: center; font-weight: 700; color: var(--pink-deep); }
.schedule-table .anime-cell { padding: 10px 12px; }
.schedule-table .anime-item {
  display: block;
  padding: 6px 10px;
  margin-bottom: 6px;
  background: var(--pink-pale);
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--ink);
  transition: background 0.2s;
}
.schedule-table .anime-item:hover { background: var(--pink-light); }
.schedule-table .anime-item .time { color: var(--pink-deep); font-weight: 600; margin-right: 6px; }
.schedule-table tbody tr:hover { background: var(--bg-cream); }

/* ---------- 分区标题 ---------- */
.subsection {
  margin-bottom: 36px;
}
.subsection-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.subsection-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.subsection-title .tag-deco {
  display: inline-block;
  width: 28px; height: 4px;
  border-radius: 2px;
  background: var(--grad-pink);
}

/* ---------- 关于页 ---------- */
.about-hero {
  background: var(--grad-hero);
  color: #fff;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero h1 { font-size: 38px; font-weight: 800; margin-bottom: 14px; text-shadow: 0 2px 12px rgba(120,20,40,0.3); }
.about-hero p { font-size: 17px; opacity: 0.95; max-width: 640px; margin: 0 auto; }
.about-block {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  margin-bottom: 28px;
}
.about-block h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-block h2 .num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-pink);
  color: #fff;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
}
.about-block p { color: var(--ink-soft); line-height: 1.85; margin-bottom: 12px; }
.about-block ul.checklist li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--ink-soft);
}
.about-block ul.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 12px;
  width: 16px; height: 16px;
  background: var(--grad-pink);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z' fill='white'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z' fill='white'/></svg>") center/contain no-repeat;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-card {
  background: var(--pink-pale);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: transform 0.25s;
}
.contact-card:hover { transform: translateY(-4px); background: var(--pink-light); }
.contact-card .ic { width: 44px; height: 44px; margin: 0 auto 12px; color: var(--pink-deep); }
.contact-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.contact-card p { font-size: 13px; color: var(--ink-soft); }

/* APP 下载 */
.app-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.app-info h2 { font-size: 28px; font-weight: 800; margin-bottom: 14px; }
.app-info p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 20px; }
.app-features { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 24px; }
.app-feature { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink); }
.app-qr {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.qr-mock {
  width: 180px; height: 180px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background:
    linear-gradient(45deg, var(--ink) 25%, transparent 25%) 0 0/18px 18px,
    linear-gradient(-45deg, var(--ink) 25%, transparent 25%) 0 0/18px 18px,
    linear-gradient(45deg, transparent 75%, var(--ink) 75%) 0 0/18px 18px,
    linear-gradient(-45deg, transparent 75%, var(--ink) 75%) 0 0/18px 18px,
    var(--bg-white);
  position: relative;
  border: 8px solid var(--bg-white);
  box-shadow: inset 0 0 0 1px var(--pink-pale);
}
.qr-mock::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  background: var(--bg-white);
  border-radius: 10px;
  display: flex;
}
.app-qr p { font-size: 13px; color: var(--ink-mute); }
.app-qr .stores { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.app-qr .stores span {
  font-size: 12px;
  padding: 6px 12px;
  background: var(--pink-pale);
  border-radius: 10px;
  color: var(--pink-deep);
  font-weight: 500;
}

/* 综艺更新日历 */
.update-calendar {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.cal-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.cal-day {
  background: var(--pink-pale);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  transition: background 0.2s;
}
.cal-day.today { background: var(--grad-pink); color: #fff; }
.cal-day .weekday { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.cal-day .date { font-size: 20px; font-weight: 800; }
.cal-day .count { font-size: 11px; margin-top: 6px; opacity: 0.85; }

/* ---------- 面包屑 ---------- */
.breadcrumb {
  padding: 20px 0 0;
}
.breadcrumb ol { display: flex; gap: 8px; font-size: 13px; color: var(--ink-mute); }
.breadcrumb li::after { content: "/"; margin-left: 8px; color: var(--pink-soft); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb li:last-child { color: var(--pink-deep); font-weight: 500; }

/* ---------- 页脚 ---------- */
.site-footer {
  background: linear-gradient(180deg, #3a1622 0%, #2a0e18 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 0 24px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand { color: #fff; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.8; opacity: 0.7; }
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.footer-col ul li a:hover { opacity: 1; color: var(--pink-soft); }
.footer-friend {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  margin-bottom: 20px;
}
.footer-friend h5 { color: rgba(255,255,255,0.85); font-size: 13px; margin-bottom: 12px; }
.footer-friend .links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-friend .links a { font-size: 12px; opacity: 0.6; transition: opacity 0.2s; }
.footer-friend .links a:hover { opacity: 1; color: var(--pink-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  opacity: 0.55;
  line-height: 1.9;
}
.footer-bottom .icp { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ---------- 通用工具 ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.announce-bar {
  background: var(--pink-pale);
  color: var(--pink-deep);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.announce-bar strong { color: var(--pink-deep); }

/* ---------- 响应式 ---------- */
@media (max-width: 1100px) {
  .video-grid { grid-template-columns: repeat(4, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 38px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-poster { max-width: 320px; margin: 0 auto; }
  .hero-title { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vip-banner { grid-template-columns: 1fr; padding: 32px; text-align: center; }
  .vip-perks { justify-content: center; }
  .app-block { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .rank-item { grid-template-columns: 40px 64px 1fr; }
  .rank-item .rank-right { grid-column: 1 / -1; text-align: left; padding-left: 58px; }
  .nav-wrap { gap: 12px; }
  .brand-text { display: none; }
  .multi-rank { grid-template-columns: 1fr 1fr !important; gap: 18px; }
  .podium { grid-template-columns: 1fr 1.2fr 1fr !important; gap: 12px; }
  .podium .video-card { margin-top: 20px !important; }
  .podium .video-card:nth-child(2) { margin-top: 0 !important; }
}
@media (max-width: 720px) {
  .nav-menu { display: none; }
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .category-grid { grid-template-columns: 1fr; }
  .section { padding: 32px 0; }
  .section-title { font-size: 20px; }
  .hero-title { font-size: 26px; }
  .hero-inner { padding: 36px 18px 44px; }
  .about-hero h1 { font-size: 26px; }
  .about-hero { padding: 48px 0; }
  .about-block { padding: 24px; }
  .schedule-table { font-size: 12px; }
  .schedule-table th, .schedule-table td { padding: 8px 6px; }
  .cal-week { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .nav-wrap { padding: 0 16px; height: 58px; }
  .container { padding: 0 16px; }
  .vip-banner h2 { font-size: 22px; }
  .rank-num { font-size: 22px; }
  .podium { grid-template-columns: 1fr !important; gap: 16px; }
  .podium .video-card { margin-top: 0 !important; }
  .multi-rank { grid-template-columns: 1fr !important; }
  .category-grid[style*="repeat(6,1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
}
