:root {
  --primary: #f97316;
  --accent: #facc15;
  --bg-dark: #1a1410;
  --text-light: #fff7ed;
  --card-radius: 20px;
  --banner-radius: 24px;
  --shadow-soft: 0 10px 40px rgba(0,0,0,0.4);
  --shadow-glow: 0 8px 30px rgba(249,115,22,0.25);
  --gradient-text: linear-gradient(135deg, #f97316, #facc15);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::-webkit-scrollbar { width: 8px; background: #1a1410; }
::-webkit-scrollbar-thumb { background: #f97316; border-radius: 4px; }

/* Navigation */
.navbar-custom {
  background: rgba(26, 20, 16, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar-brand {
  font-weight: 900;
  font-size: 1.6rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}
.navbar-brand i { margin-right: 8px; -webkit-text-fill-color: var(--primary); }
.nav-link {
  font-weight: 600;
  color: var(--text-light) !important;
  margin: 0 10px;
  padding: 6px 14px !important;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
.nav-link:hover { background: rgba(249, 115, 22, 0.2); color: var(--primary) !important; }
.navbar-toggler { border: 1px solid rgba(255, 247, 237, 0.3); }
.navbar-toggler-icon { filter: invert(1); }

/* Hero Banner */
.hero-section {
  position: relative;
  padding: 60px 0 40px;
  background: radial-gradient(ellipse at 30% 40%, rgba(249,115,22,0.15) 0%, transparent 60%);
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
}
.hero-subtitle { font-size: 1.15rem; opacity: 0.9; max-width: 600px; margin-bottom: 30px; color: rgba(255, 247, 237, 0.85); }
.hero-float { position: absolute; font-size: 3rem; opacity: 0.2; animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}
.hero-stats { display: flex; gap: 40px; margin-top: 30px; flex-wrap: wrap; }
.stat-item h3 { font-size: 2rem; font-weight: 900; color: var(--accent); }
.stat-item p { opacity: 0.8; font-size: 0.9rem; }

/* Section Common */
.section-block { padding: 60px 0; }
.section-header { margin-bottom: 40px; }
.section-title {
  font-size: 2rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  color: var(--text-light);
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-text);
  border-radius: 4px;
}
.section-desc { color: rgba(255, 247, 237, 0.7); margin-top: 10px; }

/* Category Chips */
.category-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0; }
.category-chip {
  padding: 10px 22px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  cursor: pointer;
  color: var(--text-light);
}
.category-chip:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-glow); }

/* Movie Cards Grid */
.movie-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.movie-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #221a14;
  border: 1px solid rgba(255, 247, 237, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: cardIn 0.8s forwards;
}
@keyframes cardIn {
  to { opacity: 1; transform: translateY(0); }
}
.movie-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.3);
}
.movie-poster { position: relative; aspect-ratio: 2/3; overflow: hidden; }
.movie-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.movie-card:hover .movie-poster img { transform: scale(1.1); }
.movie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.movie-card:hover .movie-overlay { opacity: 1; }
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(249, 115, 22, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  opacity: 0;
  transition: all 0.3s;
}
.movie-card:hover .play-btn { opacity: 1; }
.movie-info { padding: 14px; }
.movie-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; color: var(--text-light); }
.movie-meta { font-size: 0.8rem; color: rgba(255, 247, 237, 0.6); display: flex; justify-content: space-between; }
.movie-rating { color: var(--accent); font-weight: 700; }

/* Ranking Section */
.rank-list { display: flex; flex-direction: column; gap: 12px; }
.rank-item {
  display: flex;
  align-items: center;
  background: rgba(255, 247, 237, 0.04);
  border-radius: 14px;
  padding: 12px 18px;
  transition: all 0.3s;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateX(-20px);
  animation: rankIn 0.6s forwards;
}
@keyframes rankIn { to { opacity: 1; transform: translateX(0); } }
.rank-item:hover { background: rgba(249, 115, 22, 0.1); border-color: rgba(249, 115, 22, 0.4); transform: translateX(5px); }
.rank-num { font-size: 1.4rem; font-weight: 900; color: var(--primary); width: 50px; text-align: center; }
.rank-info { flex: 1; margin-left: 15px; }
.rank-title { font-weight: 600; }
.rank-meta { font-size: 0.8rem; color: rgba(255, 247, 237, 0.5); }
.rank-score { color: var(--accent); font-weight: 700; }

/* Accordion */
.accordion-item { background: #221a14 !important; border: 1px solid rgba(249,115,22,0.2) !important; border-radius: 14px !important; margin-bottom: 12px; overflow: hidden; }
.accordion-button { background: #1e1712 !important; color: var(--text-light) !important; font-weight: 600; }
.accordion-button:not(.collapsed) { color: var(--primary) !important; background: #241c15 !important; }
.accordion-button::after { filter: invert(0.8); }

/* Topic Section */
.topic-card {
  background: linear-gradient(145deg, #221a14, #1e1712);
  border-radius: var(--banner-radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.2);
  margin-bottom: 30px;
}
.topic-badge {
  display: inline-block;
  background: var(--gradient-text);
  color: #1a1410;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

/* Side Detail Drawer */
.side-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 460px;
  height: 100vh;
  background: #221a14;
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.6);
  overflow-y: auto;
  border-left: 2px solid rgba(249, 115, 22, 0.3);
}
.side-drawer.open { right: 0; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.drawer-backdrop.active { opacity: 1; visibility: visible; }
.drawer-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.2);
  border: none;
  color: var(--text-light);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}
.drawer-close:hover { background: var(--primary); transform: rotate(90deg); }
.drawer-content { padding: 30px; }
.drawer-poster { width: 100%; border-radius: 16px; margin-bottom: 20px; }
.drawer-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; color: var(--text-light); }
.drawer-field { margin-bottom: 12px; }
.drawer-label { font-weight: 700; color: var(--primary); font-size: 0.9rem; margin-bottom: 4px; }
.drawer-value { color: rgba(255, 247, 237, 0.9); font-size: 0.95rem; }
.drawer-plot { margin-top: 15px; color: rgba(255, 247, 237, 0.8); font-size: 0.95rem; line-height: 1.8; }

/* Friends Links */
.friends-section { padding: 50px 0 30px; border-top: 1px solid rgba(249,115,22,0.15); }
.friends-links { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 20px; }
.friends-links a { color: rgba(255, 247, 237, 0.6); font-size: 0.9rem; transition: all 0.3s; }
.friends-links a:hover { color: var(--primary); }

/* Footer */
.footer-custom {
  background: #15100c;
  padding: 40px 0 30px;
  border-top: 1px solid rgba(249, 115, 22, 0.2);
}
.footer-brand { font-size: 1.4rem; font-weight: 900; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-text { color: rgba(255, 247, 237, 0.5); font-size: 0.9rem; }
.footer-links a { color: rgba(255, 247, 237, 0.6); margin: 0 15px; font-size: 0.9rem; transition: all 0.3s; }
.footer-links a:hover { color: var(--primary); }

/* Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .movie-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
  .side-drawer { width: 100%; right: -100%; }
  .section-block { padding: 40px 0; }
  .rank-item { padding: 10px 12px; }
  .rank-num { width: 35px; font-size: 1.1rem; }
}

/* Stagger delays */
.movie-card:nth-child(2) { animation-delay: 0.1s; }
.movie-card:nth-child(3) { animation-delay: 0.2s; }
.movie-card:nth-child(4) { animation-delay: 0.3s; }
.movie-card:nth-child(5) { animation-delay: 0.4s; }
.movie-card:nth-child(6) { animation-delay: 0.5s; }
.movie-card:nth-child(7) { animation-delay: 0.6s; }
.movie-card:nth-child(8) { animation-delay: 0.7s; }
.movie-card:nth-child(9) { animation-delay: 0.8s; }
.movie-card:nth-child(10) { animation-delay: 0.9s; }
.movie-card:nth-child(11) { animation-delay: 1s; }
.movie-card:nth-child(12) { animation-delay: 1.1s; }

.rank-item:nth-child(2) { animation-delay: 0.15s; }
.rank-item:nth-child(3) { animation-delay: 0.3s; }
.rank-item:nth-child(4) { animation-delay: 0.45s; }
.rank-item:nth-child(5) { animation-delay: 0.6s; }
.rank-item:nth-child(6) { animation-delay: 0.75s; }
.rank-item:nth-child(7) { animation-delay: 0.9s; }
.rank-item:nth-child(8) { animation-delay: 1.05s; }
.rank-item:nth-child(9) { animation-delay: 1.2s; }
.rank-item:nth-child(10) { animation-delay: 1.35s; }

/* Stat Counter */
.stat-number { display: inline-block; }

/* --- 子页面追加 --- */
/* 覆盖 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, .btn-light, .btn-outline-* {
      background: transparent;
      color: var(--text-light);
      border-color: rgba(249, 115, 22, 0.2);
    }
/* 自定义卡片样式，不使用 bootstrap .card，用 .about-card */
    .about-card {
      background: rgba(26, 20, 16, 0.7);
      backdrop-filter: blur(8px);
      border-radius: var(--card-radius);
      padding: 1.8rem 1.5rem;
      box-shadow: var(--shadow-soft);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      border: 1px solid rgba(249, 115, 22, 0.15);
      height: 100%;
    }
.about-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-glow);
    }
.about-card i {
      color: var(--primary);
      font-size: 2rem;
      margin-bottom: 1rem;
    }
.about-card h3 {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text-light);
      letter-spacing: -0.01em;
      margin-bottom: 0.75rem;
      border-bottom: 2px solid rgba(250, 204, 21, 0.3);
      padding-bottom: 0.4rem;
      display: inline-block;
    }
.about-card p {
      color: rgba(255, 247, 237, 0.85);
      line-height: 1.65;
      font-size: 0.98rem;
    }
.about-highlight {
      background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(250, 204, 21, 0.1));
      border-left: 4px solid var(--primary);
      padding: 1.2rem 1.5rem;
      border-radius: 0 var(--card-radius) var(--card-radius) 0;
      margin: 2rem 0;
    }
.about-highlight p {
      margin-bottom: 0;
      font-style: italic;
    }
.about-section-title {
      font-size: 1.9rem;
      font-weight: 800;
      background: var(--gradient-text);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.02em;
    }
/* 导航高亮当前页 */
    .navbar-nav .nav-link.active {
      color: var(--primary) !important;
      font-weight: 600;
    }
/* 确保导航栏与首页一致 */
    .navbar-custom {
      background: rgba(26, 20, 16, 0.9) !important;
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(249, 115, 22, 0.15);
    }
footer a {
      color: rgba(255, 247, 237, 0.7);
      text-decoration: none;
    }
footer a:hover {
      color: var(--primary);
    }

/* --- 子页面追加 --- */
.page-hero {
            background: linear-gradient(135deg, rgba(26, 20, 16, 0.95), rgba(249, 115, 22, 0.15));
            padding: 80px 0 50px;
            border-radius: 0 0 var(--banner-radius) var(--banner-radius);
            position: relative;
            overflow: hidden;
        }
.page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.15), transparent);
            border-radius: 50%;
        }
.filter-bar {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
.filter-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 10px;
        }
.filter-group:last-child {
            margin-bottom: 0;
        }
.filter-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            margin-right: 5px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
.filter-chip {
            padding: 5px 16px;
            border-radius: 20px;
            font-size: 13px;
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
        }
.filter-chip:hover, .filter-chip.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            box-shadow: var(--shadow-glow);
        }
.sort-select {
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 8px 16px;
            font-size: 14px;
            outline: none;
            cursor: pointer;
        }
.sort-select option {
            background: var(--bg-dark);
            color: var(--text-light);
        }
.load-more-btn {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: #fff;
            border: none;
            padding: 14px 50px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-glow);
        }
.load-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(249, 115, 22, 0.4);
        }
.featured-badge {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            padding: 3px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 700;
            color: #fff;
        }
.section-intro {
            background: rgba(255, 255, 255, 0.05);
            border-left: 3px solid var(--primary);
            padding: 15px 20px;
            border-radius: 0 12px 12px 0;
            margin-bottom: 30px;
            font-size: 15px;
            line-height: 1.8;
        }
.page-hero {
                padding: 60px 0 40px;
            }
.filter-chip {
                font-size: 12px;
                padding: 4px 12px;
            }

/* --- 子页面追加 --- */
background: linear-gradient(135deg, rgba(26,20,16,0.9), rgba(249,115,22,0.2)), url(' {随机图片}
.page-hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }
.page-hero p {
            color: var(--text-light);
            font-size: 1.1rem;
            opacity: 0.85;
            max-width: 600px;
        }
.tv-section {
            padding: 60px 0;
        }
.tv-section:nth-child(even) {
            background: rgba(249,115,22,0.03);
        }
.tv-section .section-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 15px;
        }
.tv-section .section-desc {
            color: rgba(255,247,237,0.7);
            margin-bottom: 30px;
        }
.tv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
.tv-card {
            background: rgba(26,20,16,0.8);
            border: 1px solid rgba(249,115,22,0.15);
            border-radius: var(--card-radius);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
.tv-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-glow);
        }
.tv-card .poster-wrap {
            position: relative;
            padding-top: 140%;
            overflow: hidden;
        }
.tv-card .poster-wrap img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
.tv-card .tv-info {
            padding: 15px;
        }
.tv-card .tv-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.tv-card .tv-meta {
            font-size: 0.85rem;
            color: rgba(255,247,237,0.6);
        }
.tv-card .tv-rating {
            color: var(--accent);
            font-size: 0.9rem;
            margin-top: 8px;
        }
.tv-card .badge-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--primary);
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
.category-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }
.category-filter .filter-btn {
            padding: 8px 20px;
            border-radius: 25px;
            border: 1px solid rgba(249,115,22,0.3);
            background: transparent;
            color: var(--text-light);
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
.category-filter .filter-btn:hover,
        .category-filter .filter-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
.featured-tv {
            background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(250,204,21,0.05));
            border: 1px solid rgba(249,115,22,0.2);
            border-radius: var(--banner-radius);
            padding: 40px;
            margin-bottom: 40px;
        }
.featured-tv .featured-badge {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
.featured-tv h3 {
            color: var(--text-light);
            font-weight: 700;
            margin-bottom: 15px;
        }
.featured-tv p {
            color: rgba(255,247,237,0.8);
            line-height: 1.8;
        }
.trending-list {
            list-style: none;
            padding: 0;
        }
.trending-list li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(249,115,22,0.1);
            display: flex;
            align-items: center;
            gap: 15px;
        }
.trending-list li:last-child {
            border-bottom: none;
        }
.trending-list .rank-num {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--primary);
            min-width: 40px;
            text-align: center;
        }
.trending-list .rank-info {
            flex: 1;
        }
.trending-list .rank-info .rank-title {
            color: var(--text-light);
            font-weight: 600;
            margin-bottom: 3px;
        }
.trending-list .rank-info .rank-meta {
            font-size: 0.85rem;
            color: rgba(255,247,237,0.6);
        }
.trending-list .rank-score {
            color: var(--accent);
            font-weight: 700;
        }
.page-hero h1 {
                font-size: 2rem;
            }
.tv-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 15px;
            }
.featured-tv {
                padding: 25px;
            }

/* --- 子页面追加 --- */
/* 本页专属样式补充 */
        .disclaimer-section {
            padding: 50px 0;
        }
.disclaimer-card {
            background: rgba(26, 20, 16, 0.6);
            border: 1px solid rgba(249, 115, 22, 0.15);
            border-radius: var(--card-radius);
            padding: 32px;
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
.disclaimer-card:hover {
            border-color: rgba(249, 115, 22, 0.4);
            box-shadow: var(--shadow-glow);
        }
.disclaimer-card h3 {
            color: var(--primary);
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.disclaimer-card h3 i {
            color: var(--accent);
        }
.disclaimer-card p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 12px;
            font-size: 0.95rem;
        }
.disclaimer-card ul {
            padding-left: 20px;
            color: var(--text-light);
            line-height: 2;
        }
.disclaimer-card li {
            margin-bottom: 6px;
        }
.update-tag {
            display: inline-block;
            background: linear-gradient(135deg, #f97316, #facc15);
            color: #1a1410;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
.notice-box {
            background: rgba(249, 115, 22, 0.08);
            border-left: 4px solid var(--primary);
            border-radius: 12px;
            padding: 20px 24px;
            margin: 30px 0;
            color: var(--text-light);
        }
.notice-box strong {
            color: var(--accent);
        }
.disclaimer-card {
                padding: 24px;
            }
.disclaimer-card h3 {
                font-size: 1.15rem;
            }

/* --- 子页面追加 --- */
.privacy-section { padding: 4rem 0; }
.privacy-hero { background: var(--bg-dark); padding: 4rem 0 3rem; }
.privacy-hero .hero-title { font-size: 2.6rem; font-weight: 800; }
.privacy-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--card-radius); padding: 2rem 2.5rem; margin-bottom: 2rem; transition: box-shadow 0.3s ease; }
.privacy-card:hover { box-shadow: var(--shadow-soft); }
.privacy-card h2 { font-size: 1.6rem; font-weight: 700; color: var(--primary); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.75rem; }
.privacy-card h2 i { font-size: 1.3rem; }
.privacy-card h3 { font-size: 1.2rem; font-weight: 600; color: var(--text-light); margin: 1.2rem 0 0.8rem; }
.privacy-card p, .privacy-card li { color: rgba(255,247,237,0.85); line-height: 1.8; }
.privacy-card ul, .privacy-card ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.privacy-card ul li, .privacy-card ol li { margin-bottom: 0.5rem; }
.privacy-card a { color: var(--accent); text-decoration: underline; }
.privacy-card a:hover { color: var(--primary); }
.privacy-meta { background: rgba(249,115,22,0.1); border-left: 3px solid var(--primary); padding: 1rem 1.5rem; border-radius: 0 12px 12px 0; margin-bottom: 2rem; }
.privacy-meta p { margin: 0; color: rgba(255,247,237,0.8); }
.privacy-meta strong { color: var(--accent); }
.last-updated { font-size: 0.9rem; color: rgba(255,247,237,0.5); text-align: right; margin-top: 1rem; font-style: italic; }
.privacy-hero .hero-title { font-size: 2rem; }
.privacy-card { padding: 1.5rem; }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.accordion-header { background:transparent !important; }
