:root {
  --primary: #dc2626;
  --accent: #fb923c;
  --bg-dark: #141013;
  --text-light: #fef2f2;
  --card-radius: 16px;
  --pill-radius: 999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 6px 20px rgba(220, 38, 38, 0.15);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.6);
  --font-title: 'Noto Serif SC', 'Songti SC', 'SimSun', serif;
  --font-body: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, .brand-font {
  font-family: var(--font-title);
  font-weight: 700;
}

a { color: inherit; text-decoration: none; transition: all 0.3s ease; }

/* ====== NAVBAR ====== */
.navbar-custom {
  background: rgba(20, 16, 19, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220, 38, 38, 0.2);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-light) !important;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand .brand-icon {
  color: var(--accent);
  font-size: 1.4rem;
}
.navbar-brand span { color: var(--primary); }
.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 6px;
  padding: 8px 16px !important;
  border-radius: var(--pill-radius);
  transition: all 0.3s ease;
}
.nav-link:hover {
  background: rgba(220, 38, 38, 0.15);
  color: var(--accent) !important;
}
.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--text-light);
}
.navbar-toggler:focus { box-shadow: none; }

/* ====== HERO ====== */
.hero-section {
  position: relative;
  padding: 100px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(220, 38, 38, 0.15), transparent 60%);
  overflow: hidden;
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--text-light) 0%, var(--accent) 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  animation: fadeUp 1s ease both;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(254, 242, 242, 0.8);
  max-width: 700px;
  margin: 0 auto 30px;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-search {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  animation: fadeUp 1s ease 0.4s both;
}
.hero-search input {
  flex: 1;
  padding: 14px 24px;
  border-radius: var(--pill-radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--text-light);
  font-size: 1rem;
  outline: none;
}
.hero-search input::placeholder { color: rgba(254,242,242,0.5); }
.hero-search input:focus { border-color: var(--primary); background: rgba(255,255,255,0.12); }
.btn-hero {
  background: var(--primary);
  color: var(--text-light);
  border: none;
  padding: 14px 32px;
  border-radius: var(--pill-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-hero:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(251, 146, 60, 0.4); }
.hero-float {
  position: absolute;
  font-size: 2rem;
  opacity: 0.2;
  animation: floatAnim 6s ease-in-out infinite;
}
.float-1 { top: 20%; left: 10%; animation-delay: 0s; }
.float-2 { top: 60%; right: 15%; animation-delay: 2s; }
.float-3 { bottom: 20%; left: 20%; animation-delay: 4s; }

/* ====== SECTIONS ====== */
.section-block {
  padding: 60px 0;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title .icon-wrap {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
}
.section-more {
  font-size: 0.95rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.section-more:hover { color: var(--primary); transform: translateX(4px); }

/* ====== MOVIE CARDS ====== */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}
.movie-card {
  background: rgba(255,255,255,0.04);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeUp 0.8s ease both;
}
.movie-card:hover {
  transform: scale(1.05) translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.movie-card .poster-wrap {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
}
.movie-card .poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.movie-card:hover .poster-wrap img { transform: scale(1.1); }
.movie-card .rating-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: var(--pill-radius);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.movie-card .card-body {
  padding: 12px;
}
.movie-card .movie-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.movie-card .movie-meta {
  font-size: 0.8rem;
  color: rgba(254,242,242,0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.movie-card .movie-type {
  background: rgba(220, 38, 38, 0.2);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: var(--pill-radius);
  font-size: 0.7rem;
}

/* ====== HORIZONTAL SCROLL ====== */
.hscroll-wrapper {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 10px 4px 20px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}
.hscroll-wrapper::-webkit-scrollbar { height: 6px; }
.hscroll-wrapper::-webkit-scrollbar-track { background: transparent; }
.hscroll-wrapper::-webkit-scrollbar-thumb { background: var(--primary); border-radius: var(--pill-radius); }
.hscroll-wrapper .movie-card {
  flex: 0 0 180px;
  min-width: 180px;
}

/* ====== CATEGORY PILLS ====== */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.pill-btn {
  padding: 8px 20px;
  border-radius: var(--pill-radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--text-light);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pill-btn:hover, .pill-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

/* ====== RANKING LIST ====== */
.ranking-list {
  background: rgba(255,255,255,0.03);
  border-radius: var(--card-radius);
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.06);
}
.rank-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 4px;
}
.rank-item:hover {
  background: rgba(220, 38, 38, 0.1);
  transform: translateX(6px);
}
.rank-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.rank-1 { background: linear-gradient(135deg, #FFD700, #FFA500); color: #1a1a1a; box-shadow: 0 4px 15px rgba(255,215,0,0.4); }
.rank-2 { background: linear-gradient(135deg, #C0C0C0, #A8A8A8); color: #1a1a1a; box-shadow: 0 4px 12px rgba(192,192,192,0.3); }
.rank-3 { background: linear-gradient(135deg, #CD7F32, #B87333); color: #1a1a1a; box-shadow: 0 4px 12px rgba(205,127,50,0.3); }
.rank-n { background: rgba(255,255,255,0.1); color: var(--text-light); }
.rank-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rank-name { font-weight: 600; }
.rank-rating { color: var(--accent); font-weight: 700; }
.rank-arrow { color: rgba(254,242,242,0.3); }

/* ====== STEPS ====== */
.steps-section {
  padding: 50px 0;
  background: rgba(220, 38, 38, 0.03);
}
.step-card {
  background: rgba(255,255,255,0.04);
  border-radius: var(--card-radius);
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
  height: 100%;
}
.step-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--shadow-md); }
.step-num {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.step-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.step-desc { color: rgba(254,242,242,0.7); font-size: 0.9rem; line-height: 1.6; }

/* ====== RECOMMEND & TIPS ====== */
.recommend-box {
  background: linear-gradient(135deg, rgba(220,38,38,0.15), rgba(251,146,60,0.1));
  border-radius: var(--card-radius);
  padding: 30px;
  border: 1px solid rgba(220,38,38,0.3);
  text-align: center;
}
.recommend-box .icon-large {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.btn-recommend {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 36px;
  border-radius: var(--pill-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
}
.btn-recommend:hover {
  background: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(251,146,60,0.4);
}
.tips-list {
  background: rgba(255,255,255,0.03);
  border-radius: var(--card-radius);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
}
.tips-list .tip-item {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.tips-list .tip-item:last-child { border-bottom: none; }
.tips-list .tip-icon {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.tips-list .tip-text { font-size: 0.95rem; color: rgba(254,242,242,0.85); }

/* ====== FOOTER ====== */
.footer {
  background: rgba(0,0,0,0.4);
  padding: 40px 0 20px;
  border-top: 1px solid rgba(220,38,38,0.2);
}
.footer-brand {
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-desc { color: rgba(254,242,242,0.6); font-size: 0.9rem; max-width: 400px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.footer-links a { color: rgba(254,242,242,0.7); font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 30px;
  color: rgba(254,242,242,0.5);
  font-size: 0.85rem;
}

/* ====== FRIENDLY LINKS ====== */
.friendly-links {
  padding: 30px 0;
  background: rgba(255,255,255,0.02);
}
.friendly-links .fl-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}
.friendly-links .fl-content {
  font-size: 0.9rem;
  color: rgba(254,242,242,0.6);
  line-height: 2;
}

/* ====== DRAWER MODAL ====== */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}
.drawer-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  border-radius: 20px 20px 0 0;
  border: 1px solid rgba(220,38,38,0.3);
  border-bottom: none;
  z-index: 2001;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 85vh;
  overflow-y: auto;
  padding: 30px;
}
.drawer-panel.active {
  transform: translateY(0);
}
.drawer-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--text-light);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.drawer-close:hover { background: var(--primary); transform: rotate(90deg); }
.drawer-content { display: flex; gap: 20px; flex-wrap: wrap; }
.drawer-poster {
  width: 160px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.drawer-poster img { width: 100%; display: block; }
.drawer-info { flex: 1; min-width: 250px; }
.drawer-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.drawer-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.meta-tag {
  background: rgba(220,38,38,0.15);
  padding: 4px 12px;
  border-radius: var(--pill-radius);
  font-size: 0.85rem;
  color: var(--accent);
}
.drawer-rating { color: var(--accent); font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }
.drawer-plot { color: rgba(254,242,242,0.8); line-height: 1.8; margin-bottom: 12px; }
.drawer-actors { color: rgba(254,242,242,0.6); font-size: 0.9rem; }

/* ====== SCROLL ANIM ====== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== KEYFRAMES ====== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatAnim {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}
@keyframes countUp {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.4rem; }
  .movie-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 14px; }
  .hscroll-wrapper .movie-card { flex-basis: 150px; min-width: 150px; }
  .drawer-panel { padding: 20px; }
  .drawer-content { flex-direction: column; }
  .drawer-poster { width: 120px; }
}

@media (max-width: 480px) {
  .hero-section { padding: 70px 0 50px; }
  .hero-title { font-size: 1.8rem; }
  .hero-search { flex-direction: column; }
  .btn-hero { width: 100%; }
  .movie-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hscroll-wrapper .movie-card { flex-basis: 130px; min-width: 130px; }
  .section-block { padding: 40px 0; }
  .step-card { padding: 20px; }
}

/* --- 子页面追加 --- */
.about-hero {
      background: linear-gradient(135deg, rgba(20,16,19,0.9), rgba(220,38,38,0.3)), var(--bg-dark);
      padding: 100px 0 60px;
      text-align: center;
      border-bottom: 1px solid rgba(220,38,38,0.2);
    }
.about-hero .hero-title {
      font-size: 2.8rem;
      margin-bottom: 1.2rem;
      color: var(--text-light);
      font-family: var(--font-title);
    }
.about-hero .hero-subtitle {
      font-size: 1.2rem;
      color: rgba(254,242,242,0.8);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.8;
    }
.about-section {
      padding: 70px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
.about-section:nth-child(even) {
      background: rgba(255,255,255,0.02);
    }
.about-section .section-header {
      margin-bottom: 30px;
    }
.about-section .section-title {
      font-size: 2rem;
      font-family: var(--font-title);
      color: var(--text-light);
      position: relative;
      padding-bottom: 15px;
    }
.about-section .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background: var(--primary);
      border-radius: 2px;
    }
.about-content {
      color: rgba(254,242,242,0.85);
      line-height: 1.9;
      font-size: 1.05rem;
    }
.about-content p {
      margin-bottom: 1.2rem;
    }
.about-content strong {
      color: var(--accent);
    }
.feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 30px;
    }
.feature-item {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--card-radius);
      padding: 28px;
      transition: all 0.3s ease;
    }
.feature-item:hover {
      transform: translateY(-5px);
      border-color: var(--primary);
      box-shadow: var(--shadow-md);
    }
.feature-item i {
      font-size: 2.2rem;
      color: var(--primary);
      margin-bottom: 15px;
      display: block;
    }
.feature-item h3 {
      font-size: 1.2rem;
      color: var(--text-light);
      margin-bottom: 12px;
      font-family: var(--font-title);
    }
.feature-item p {
      font-size: 0.95rem;
      color: rgba(254,242,242,0.7);
      line-height: 1.7;
    }
.stats-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }
.stat-box {
      text-align: center;
      padding: 25px 15px;
      background: rgba(220,38,38,0.05);
      border: 1px solid rgba(220,38,38,0.2);
      border-radius: var(--card-radius);
    }
.stat-box .stat-num {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--primary);
      font-family: var(--font-title);
    }
.stat-box .stat-label {
      color: rgba(254,242,242,0.7);
      margin-top: 5px;
      font-size: 0.9rem;
    }
.update-list {
      list-style: none;
      padding: 0;
    }
.update-list li {
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      gap: 12px;
    }
.update-list li:last-child {
      border-bottom: none;
    }
.update-list li i {
      color: var(--primary);
      font-size: 0.9rem;
    }
.update-list li span {
      color: rgba(254,242,242,0.85);
    }
.update-list li time {
      color: rgba(254,242,242,0.5);
      font-size: 0.85rem;
      margin-left: auto;
    }
.about-hero { padding: 70px 0 40px; }
.about-hero .hero-title { font-size: 2rem; }
.about-section { padding: 50px 0; }
.about-section .section-title { font-size: 1.6rem; }

/* --- 子页面追加 --- */
/* 本页专属少量样式 */
    .disclaimer-hero {
      background: linear-gradient(135deg, rgba(20,16,19,0.92) 0%, rgba(220,38,38,0.25) 100%);
      padding: 80px 0 50px;
      border-bottom: 1px solid rgba(220,38,38,0.15);
    }
.disclaimer-section {
      padding: 40px 0;
    }
.disclaimer-block {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(220,38,38,0.12);
      border-radius: var(--card-radius);
      padding: 30px;
      margin-bottom: 30px;
      backdrop-filter: blur(8px);
      transition: border-color 0.3s ease;
    }
.disclaimer-block:hover {
      border-color: rgba(220,38,38,0.35);
    }
.disclaimer-block h2 {
      font-family: var(--font-title);
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--text-light);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
.disclaimer-block h2 i {
      color: var(--accent);
      font-size: 1.3rem;
      width: 32px;
      text-align: center;
      background: rgba(220,38,38,0.12);
      padding: 8px;
      border-radius: 10px;
    }
.disclaimer-block p, .disclaimer-block li {
      color: rgba(254,242,242,0.82);
      font-size: 0.95rem;
      line-height: 1.8;
    }
.disclaimer-block ul {
      padding-left: 20px;
    }
.disclaimer-block ul li {
      margin-bottom: 8px;
    }
.highlight-box {
      background: rgba(220,38,38,0.08);
      border-left: 3px solid var(--primary);
      padding: 16px 20px;
      border-radius: 0 12px 12px 0;
      margin: 20px 0;
    }
.highlight-box p {
      margin: 0;
      font-weight: 500;
      color: var(--text-light);
    }
.back-home {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--primary);
      color: #fff;
      padding: 10px 24px;
      border-radius: var(--pill-radius);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      margin-top: 20px;
    }
.back-home:hover {
      background: #b91c1c;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
.disclaimer-meta {
      color: rgba(254,242,242,0.5);
      font-size: 0.85rem;
      border-top: 1px solid rgba(220,38,38,0.15);
      padding-top: 20px;
      margin-top: 30px;
    }

/* --- 子页面追加 --- */
background: linear-gradient(135deg, rgba(20, 16, 19, 0.9), rgba(220, 38, 38, 0.3)), url(' {随机图片}
.today-hero .hero-title {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--text-light);
      margin-bottom: 12px;
      text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    }
.today-hero .hero-subtitle {
      font-size: 1.1rem;
      color: rgba(254, 242, 242, 0.8);
      max-width: 700px;
      margin: 0 auto;
    }
.update-info-card {
      background: rgba(20, 16, 19, 0.7);
      border: 1px solid rgba(220, 38, 38, 0.2);
      border-radius: var(--card-radius);
      padding: 24px;
      margin-bottom: 20px;
      transition: transform 0.3s, box-shadow 0.3s;
    }
.update-info-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
.update-info-card h3 {
      color: var(--accent);
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 12px;
      font-family: var(--font-title);
    }
.update-info-card p, .update-info-card li {
      color: rgba(254, 242, 242, 0.85);
      font-size: 0.95rem;
      line-height: 1.7;
    }
.update-info-card ul {
      padding-left: 20px;
    }
.update-info-card li {
      margin-bottom: 8px;
    }
.update-info-card .icon-wrap {
      font-size: 2rem;
      margin-bottom: 12px;
      display: block;
      color: var(--primary);
    }
.today-badge {
      display: inline-block;
      background: var(--primary);
      color: #fff;
      padding: 4px 12px;
      border-radius: var(--pill-radius);
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 16px;
    }
.update-list-item {
      display: flex;
      align-items: flex-start;
      padding: 16px 0;
      border-bottom: 1px solid rgba(254, 242, 242, 0.08);
    }
.update-list-item:last-child {
      border-bottom: none;
    }
.update-list-item .date-badge {
      background: rgba(220, 38, 38, 0.2);
      color: var(--accent);
      border-radius: 8px;
      padding: 6px 12px;
      font-size: 0.8rem;
      font-weight: 600;
      min-width: 80px;
      text-align: center;
      margin-right: 16px;
      flex-shrink: 0;
    }
.update-list-item .item-content h4 {
      color: var(--text-light);
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 4px;
    }
.update-list-item .item-content p {
      color: rgba(254, 242, 242, 0.65);
      font-size: 0.85rem;
      line-height: 1.5;
    }
.update-list-item .item-content .tag {
      display: inline-block;
      background: rgba(251, 146, 60, 0.15);
      color: var(--accent);
      padding: 2px 10px;
      border-radius: var(--pill-radius);
      font-size: 0.75rem;
      margin-right: 6px;
      margin-top: 6px;
    }
.schedule-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0 8px;
    }
.schedule-table th {
      color: var(--accent);
      font-size: 0.9rem;
      font-weight: 600;
      padding: 8px 12px;
      background: rgba(220, 38, 38, 0.1);
      border-radius: 8px;
    }
.schedule-table td {
      color: rgba(254, 242, 242, 0.8);
      font-size: 0.9rem;
      padding: 8px 12px;
      background: rgba(20, 16, 19, 0.5);
      border-radius: 8px;
    }
.schedule-table .highlight {
      color: var(--accent);
      font-weight: 600;
    }
.today-hero {
        padding: 50px 0 40px;
      }
.today-hero .hero-title {
        font-size: 1.8rem;
      }
.update-list-item {
        flex-direction: column;
      }
.update-list-item .date-badge {
        margin-bottom: 8px;
        margin-right: 0;
      }

/* --- 子页面追加 --- */
/* 确保所有Bootstrap组件都继承站点配色 */
        .card, .card-body, .card-title, .card-text, .card-header, .card-footer,
        .form-control, .form-select, .form-label, .input-group-text,
        .table, .list-group-item, .accordion-item, .accordion-button, .accordion-body,
        .modal-content, .modal-header, .modal-body, .dropdown-menu, .dropdown-item,
        .nav-link, .navbar, .navbar-brand {
            background: transparent;
            color: var(--text-light);
            border-color: var(--border-color, rgba(255,255,255,0.1));
        }
.navbar {
            background: var(--bg-dark) !important;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
.navbar-brand, .nav-link {
            color: var(--text-light) !important;
        }
.nav-link.active {
            color: var(--primary) !important;
            font-weight: 600;
        }
.navbar-toggler i {
            color: var(--text-light);
        }
.btn-hero, .btn-outline-hero {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
.btn-hero:hover, .btn-outline-hero:hover {
            background: var(--accent);
            border-color: var(--accent);
        }
.badge-rank {
            background: var(--primary);
            color: #fff;
            font-weight: 700;
        }
.text-accent {
            color: var(--accent);
        }
.list-group-item {
            background: rgba(20,16,19,0.5);
            color: var(--text-light);
            border: 1px solid rgba(255,255,255,0.05);
        }

/* --- 子页面追加 --- */
/* 页面专属样式 */
    .ranking-hero {
      padding: 60px 0 30px;
      text-align: center;
      position: relative;
    }
.ranking-hero h1 {
      font-family: var(--font-title);
      color: var(--text-light);
      font-size: 2.4rem;
      font-weight: 800;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }
.ranking-hero h1 span {
      color: var(--primary);
    }
.ranking-hero p {
      color: rgba(254, 242, 242, 0.7);
      font-size: 1.05rem;
      max-width: 640px;
      margin: 0 auto;
    }
.ranking-tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin: 40px 0 30px;
    }
.ranking-tabs .pill-btn {
      padding: 8px 20px;
      border-radius: var(--pill-radius);
      background: rgba(255,255,255,0.06);
      color: var(--text-light);
      font-weight: 500;
      font-size: 0.95rem;
      border: 1px solid rgba(255,255,255,0.1);
      transition: all 0.3s ease;
      cursor: pointer;
      text-decoration: none;
    }
.ranking-tabs .pill-btn:hover,
    .ranking-tabs .pill-btn.active {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
      box-shadow: var(--shadow-md);
    }
.ranking-section {
      margin-bottom: 50px;
    }
.ranking-section .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
    }
.ranking-section .section-title {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--text-light);
      font-family: var(--font-title);
      display: flex;
      align-items: center;
      gap: 12px;
    }
.ranking-section .section-title i {
      color: var(--primary);
      font-size: 1.4rem;
    }
.rank-item:nth-child(1) .rank-badge {
      background: linear-gradient(135deg, #f59e0b, #dc2626);
      color: #fff;
    }
.rank-item:nth-child(2) .rank-badge {
      background: linear-gradient(135deg, #94a3b8, #64748b);
      color: #fff;
    }
.rank-item:nth-child(3) .rank-badge {
      background: linear-gradient(135deg, #b45309, #92400e);
      color: #fff;
    }
.rank-info h3 {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text-light);
      margin-bottom: 4px;
    }
.rank-info p {
      font-size: 0.88rem;
      color: rgba(254, 242, 242, 0.6);
      margin: 0;
      line-height: 1.4;
    }
.rank-score {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--accent);
      white-space: nowrap;
      padding: 4px 12px;
      background: rgba(251,146,60,0.1);
      border-radius: var(--pill-radius);
      font-family: var(--font-title);
    }
.rank-type {
      font-size: 0.8rem;
      color: rgba(254,242,242,0.5);
      padding: 4px 10px;
      background: rgba(255,255,255,0.05);
      border-radius: var(--pill-radius);
      white-space: nowrap;
    }
.category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px;
      margin-bottom: 40px;
    }
.category-card {
      background: linear-gradient(135deg, rgba(220,38,38,0.06), rgba(255,255,255,0.03));
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--card-radius);
      padding: 20px;
      transition: all 0.3s ease;
    }
.category-card:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-md);
    }
.category-card h4 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-light);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
.category-card h4 i {
      color: var(--primary);
    }
.category-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
.category-card li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.92rem;
      color: rgba(254,242,242,0.8);
      padding: 6px 0;
      border-bottom: 1px dashed rgba(255,255,255,0.08);
    }
.category-card li:last-child {
      border-bottom: none;
    }
.category-card li .rank {
      color: var(--accent);
      font-weight: 600;
      margin-right: 8px;
    }
.category-card li .score {
      color: rgba(254,242,242,0.5);
      font-size: 0.85rem;
    }
.ranking-hero h1 { font-size: 1.8rem; }
.rank-info h3 { font-size: 0.95rem; }
.rank-info p { font-size: 0.8rem; }
.rank-score { font-size: 0.95rem; padding: 3px 8px; }
.category-grid { grid-template-columns: 1fr; }

/* --- 子页面追加 --- */
.privacy-hero {
            background: linear-gradient(135deg, rgba(220,38,38,0.15) 0%, rgba(251,146,60,0.05) 100%);
            padding: 60px 0 40px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
.privacy-title {
            font-family: var(--font-title);
            color: var(--text-light);
            font-weight: 700;
            margin-bottom: 12px;
        }
.privacy-subtitle {
            color: rgba(254,242,242,0.6);
            font-size: 1.05rem;
            font-weight: 400;
        }
.privacy-section {
            padding: 40px 0;
        }
.privacy-section-alt {
            background: rgba(255,255,255,0.02);
            border-top: 1px solid rgba(255,255,255,0.03);
            border-bottom: 1px solid rgba(255,255,255,0.03);
        }
.privacy-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--card-radius);
            padding: 28px;
            height: 100%;
            transition: all 0.3s ease;
        }
.privacy-card:hover {
            border-color: rgba(220,38,38,0.3);
            background: rgba(220,38,38,0.03);
        }
.privacy-card h3 {
            color: var(--accent);
            font-family: var(--font-title);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.privacy-card h3 i {
            font-size: 1.1rem;
            color: var(--primary);
        }
.privacy-card p, .privacy-card li {
            color: rgba(254,242,242,0.75);
            font-size: 0.95rem;
            line-height: 1.7;
        }
.privacy-card ul {
            padding-left: 20px;
            margin-bottom: 0;
        }
.privacy-card ul li {
            margin-bottom: 6px;
        }
.privacy-note {
            background: rgba(220,38,38,0.08);
            border-left: 3px solid var(--primary);
            padding: 16px 20px;
            border-radius: 0 var(--card-radius) var(--card-radius) 0;
            margin: 20px 0;
        }
.privacy-note p {
            color: rgba(254,242,242,0.85);
            font-size: 0.95rem;
            margin: 0;
        }
.privacy-updated {
            color: rgba(254,242,242,0.5);
            font-size: 0.85rem;
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
.privacy-hero {
                padding: 40px 0 30px;
            }
.privacy-card {
                padding: 20px;
            }
.privacy-card h3 {
                font-size: 1.1rem;
            }