:root {
  --primary: #f97316;
  --accent: #facc15;
  --bg: #1a1410;
  --text: #fff7ed;
  --border: rgba(249, 115, 22, 0.25);
  --card-bg: rgba(255, 247, 237, 0.04);
  --muted: rgba(255, 247, 237, 0.6);
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Sans SC', 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
h1,h2,h3,h4,.brand-font {
  font-family: 'Noto Serif SC', serif;
}
a { text-decoration:none; color: inherit; transition: all 0.3s ease; }

/* 导航栏 */
.navbar {
  background: rgba(26, 20, 16, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  transition: all 0.4s ease;
  z-index: 1000;
}
.navbar.scrolled {
  background: rgba(26, 20, 16, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.navbar-brand {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary) !important;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.navbar-brand i { color: var(--accent); margin-right: 8px; }
.navbar-nav .nav-link {
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  position: relative;
  border-bottom: 2px solid transparent;
}
.navbar-nav .nav-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.navbar-toggler {
  border-color: var(--border);
  color: var(--text);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 247, 237, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero 轮播区 */
.hero-section {
  padding: 1.5rem 0 0.5rem;
  position: relative;
  overflow: hidden;
}
.hero-carousel .carousel-item {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.carousel-item img {
  height: 420px;
  object-fit: cover;
  width: 100%;
  opacity: 0.75;
}
.carousel-caption {
  background: linear-gradient(to top, rgba(26,20,16,0.95), transparent);
  padding: 2rem 1.5rem 1.5rem;
  text-align: left;
  bottom: 0;
  left: 0;
  right: 0;
}
.carousel-caption h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
}
.carousel-caption p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 80%;
}
.carousel-indicators button {
  background-color: var(--primary);
}
.carousel-control-prev, .carousel-control-next {
  width: 5%;
}

/* 区块标题 */
.section-title {
  font-family: 'Noto Serif SC', serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--text);
  border-left: 4px solid var(--primary);
  padding-left: 12px;
  margin: 1.5rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.05em;
}
.section-title .more-link {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  font-family: 'Noto Sans SC', sans-serif;
  border: 1px solid var(--border);
  padding: 0.15rem 0.8rem;
  border-radius: 20px;
  transition: all 0.3s;
}
.section-title .more-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* 海报墙 */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  padding: 0;
}
.movie-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.movie-card:hover {
  transform: scale(1.04);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.2);
  z-index: 10;
}
.movie-card .poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: #2a1f18;
}
.movie-card .poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.movie-card:hover .poster img {
  transform: scale(1.08);
}
.quality-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  letter-spacing: 0.5px;
  z-index: 2;
}
.quality-badge.k4 { background: var(--accent); color: #1a1410; }
.movie-info {
  padding: 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.movie-title {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.movie-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--muted);
}
.movie-rating {
  color: var(--accent);
  font-weight: 700;
}
.movie-type {
  border: 1px solid var(--border);
  padding: 0 4px;
  font-size: 0.6rem;
  color: var(--muted);
}

/* 榜单 */
.rank-list {
  border: 1px solid var(--border);
  padding: 0;
}
.rank-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(249, 115, 22, 0.08);
  transition: background 0.3s;
  cursor: pointer;
}
.rank-item:last-child { border-bottom: none; }
.rank-item:hover { background: rgba(249, 115, 22, 0.08); }
.rank-num {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
  width: 40px;
  text-align: center;
}
.rank-num.top3 { color: var(--accent); font-size: 1.5rem; }
.rank-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rank-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.rank-meta {
  font-size: 0.7rem;
  color: var(--muted);
}
.rank-score {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

/* 精选片单 */
.pick-section {
  border: 1px solid var(--border);
  padding: 1.2rem;
  background: rgba(249, 115, 22, 0.03);
}
.pick-item {
  padding: 0.8rem 0;
  border-bottom: 1px dashed var(--border);
}
.pick-item:last-child { border-bottom: none; }
.pick-item h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
  font-family: 'Noto Serif SC', serif;
}
.pick-item p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* 观影指南步骤 */
.steps-section {
  border: 1px solid var(--border);
  padding: 1.5rem;
  background: rgba(250, 204, 21, 0.04);
}
.step-item {
  text-align: center;
  padding: 0.8rem;
}
.step-num {
  width: 42px;
  height: 42px;
  margin: 0 auto 0.6rem;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif SC', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--primary);
  background: rgba(249, 115, 22, 0.08);
}
.step-item h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.step-item p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* 友链 */
.friendly-links {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.friendly-links .links-title {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  color: var(--primary);
  margin-right: 10px;
  font-size: 0.95rem;
  white-space: nowrap;
}
.friendly-links a {
  color: var(--muted);
  font-size: 0.8rem;
  border: 1px solid var(--border);
  padding: 2px 12px;
  border-radius: 20px;
  transition: all 0.3s;
}
.friendly-links a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* 页脚 */
footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
  background: rgba(26, 20, 16, 0.8);
}
footer .footer-links a {
  color: var(--muted);
  margin: 0 12px;
  font-size: 0.85rem;
}
footer .footer-links a:hover {
  color: var(--primary);
}
footer .copyright {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.6rem;
}

/* 侧滑详情弹窗 */
.side-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: #241a13;
  border-left: 1px solid var(--border);
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}
.side-drawer.open { right: 0; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer-header {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: #241a13;
  z-index: 5;
}
.drawer-header .close-btn {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}
.drawer-header .close-btn:hover {
  background: rgba(249, 115, 22, 0.15);
  color: var(--primary);
}
.drawer-poster {
  width: 100%;
  aspect-ratio: 2/3;
  background: #2a1f18;
  border-bottom: 1px solid var(--border);
}
.drawer-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.drawer-content { padding: 1.2rem; }
.drawer-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.drawer-field {
  display: flex;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.drawer-field .label {
  color: var(--muted);
  width: 60px;
  flex-shrink: 0;
  font-weight: 500;
}
.drawer-field .value {
  flex: 1;
}
.drawer-plot {
  margin-top: 0.8rem;
  border-top: 1px solid var(--border);
  padding-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* 回到顶部 */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s;
  z-index: 900;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover {
  background: var(--accent);
  color: #1a1410;
}

/* 响应式 */
@media (max-width: 768px) {
  .carousel-item img { height: 260px; }
  .movie-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px; }
  .movie-title { font-size: 0.75rem; }
  .section-title { font-size: 1.1rem; }
  .side-drawer { width: 100%; }
}

/* 滚动条 */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1a1410; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* --- 子页面追加 --- */
/* 关于我们页面专属样式 */
        .about-hero {
            background: linear-gradient(135deg, rgba(26, 20, 16, 0.95), rgba(249, 115, 22, 0.15)), var(--bg);
            border-bottom: 1px solid var(--border);
            padding: 80px 0 60px;
            text-align: center;
        }
.about-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
        }
.about-hero h1 span {
            color: var(--primary);
        }
.about-hero p {
            color: var(--muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }
.about-section {
            padding: 60px 0;
            border-bottom: 1px solid var(--border);
        }
.about-section:last-child {
            border-bottom: none;
        }
.about-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 12px;
        }
.about-section h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 48px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }
.about-section h2 i {
            color: var(--primary);
            margin-right: 10px;
        }
.about-section p {
            color: var(--muted);
            font-size: 1rem;
            line-height: 1.9;
            margin-bottom: 16px;
        }
.about-section .lead {
            font-size: 1.1rem;
            color: var(--text);
            font-weight: 500;
        }
.feature-list {
            list-style: none;
            padding: 0;
            margin: 20px 0 0;
        }
.feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            color: var(--text);
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.95rem;
            line-height: 1.7;
        }
.feature-list li:last-child {
            border-bottom: none;
        }
.feature-list li i {
            color: var(--primary);
            font-size: 1.1rem;
            margin-top: 3px;
            flex-shrink: 0;
        }
.feature-list li strong {
            color: var(--accent);
            font-weight: 600;
        }
.about-stats {
            display: flex;
            gap: 32px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
.stat-item {
            text-align: center;
            padding: 20px 24px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            min-width: 140px;
        }
.stat-item .stat-num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
        }
.stat-item .stat-label {
            color: var(--muted);
            font-size: 0.85rem;
            margin-top: 4px;
        }
.about-quote {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-left: 4px solid var(--primary);
            padding: 24px 28px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
.about-quote p {
            margin-bottom: 8px;
            font-style: italic;
            font-size: 1.05rem;
        }
.about-quote .quote-author {
            color: var(--primary);
            font-weight: 600;
            font-style: normal;
            font-size: 0.9rem;
        }
.about-hero {
                padding: 50px 0 40px;
            }
.about-hero h1 {
                font-size: 2rem;
            }
.about-section {
                padding: 40px 0;
            }
.about-section h2 {
                font-size: 1.5rem;
            }
.about-stats {
                gap: 16px;
            }
.stat-item {
                padding: 16px 18px;
                min-width: 110px;
            }
.stat-item .stat-num {
                font-size: 1.6rem;
            }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
        .disclaimer-section {
            padding: 80px 0 60px;
            min-height: 70vh;
        }
.disclaimer-hero {
            padding: 80px 0 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
.disclaimer-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }
.disclaimer-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
.disclaimer-hero p {
            color: var(--muted);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
.disclaimer-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 35px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
.disclaimer-card:hover {
            border-color: var(--primary);
            box-shadow: 0 0 30px rgba(249, 115, 22, 0.1);
            transform: translateY(-2px);
        }
.disclaimer-card h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 12px;
        }
.disclaimer-card h2 i {
            color: var(--primary);
            font-size: 1.3rem;
        }
.disclaimer-card p, .disclaimer-card li {
            color: var(--muted);
            line-height: 1.8;
            font-size: 0.95rem;
        }
.disclaimer-card ul, .disclaimer-card ol {
            padding-left: 20px;
        }
.disclaimer-card li {
            margin-bottom: 8px;
        }
.disclaimer-card strong {
            color: var(--text);
            font-weight: 600;
        }
.disclaimer-alert {
            background: rgba(249, 115, 22, 0.08);
            border-left: 4px solid var(--primary);
            padding: 20px 25px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }
.disclaimer-alert p {
            color: var(--text);
            font-weight: 500;
        }
.disclaimer-alert i {
            color: var(--primary);
            margin-right: 10px;
        }
.last-updated {
            display: inline-block;
            background: rgba(249, 115, 22, 0.1);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-top: 20px;
        }
.disclaimer-hero h1 {
                font-size: 2.2rem;
            }
.disclaimer-card {
                padding: 25px;
            }

/* --- 子页面追加 --- */
.privacy-section { padding: 80px 0 60px; }
.privacy-header { background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(250, 204, 21, 0.08) 100%); border: 1px solid var(--border); border-radius: 20px; padding: 50px 40px; margin-bottom: 50px; text-align: center; }
.privacy-header h1 { color: var(--text); font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; }
.privacy-header h1 span { color: var(--primary); }
.privacy-header p { color: var(--muted); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }
.privacy-content { max-width: 900px; margin: 0 auto; }
.privacy-block { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 35px 40px; margin-bottom: 30px; }
.privacy-block h2 { color: var(--primary); font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.privacy-block h2 i { font-size: 1.2rem; }
.privacy-block h3 { color: var(--text); font-size: 1.15rem; font-weight: 600; margin: 20px 0 12px; }
.privacy-block p { color: var(--muted); line-height: 1.8; margin-bottom: 15px; font-size: 0.95rem; }
.privacy-block ul { padding-left: 20px; margin-bottom: 15px; }
.privacy-block ul li { color: var(--muted); line-height: 1.8; margin-bottom: 8px; font-size: 0.95rem; position: relative; padding-left: 15px; }
.privacy-block ul li::before { content: '•'; position: absolute; left: 0; color: var(--primary); font-weight: bold; }
.privacy-block .highlight-box { background: rgba(249, 115, 22, 0.08); border-left: 4px solid var(--primary); padding: 20px 25px; border-radius: 8px; margin: 20px 0; }
.privacy-block .highlight-box p { margin-bottom: 5px; color: var(--text); }
.privacy-header { padding: 30px 20px; }
.privacy-header h1 { font-size: 1.8rem; }
.privacy-block { padding: 25px 20px; }

/* --- 子页面追加 --- */
/* 页面专属样式 - 排行榜 */
    .rank-header {
      padding: 60px 0 30px;
      text-align: center;
    }
.rank-header h1 {
      color: var(--primary);
      font-weight: 800;
      font-size: 2.5rem;
      margin-bottom: 10px;
    }
.rank-header p {
      color: var(--muted);
      font-size: 1.1rem;
    }
.rank-tabs {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }
.rank-tab {
      padding: 10px 28px;
      border-radius: 50px;
      border: 1px solid var(--border);
      color: var(--muted);
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      background: transparent;
    }
.rank-tab:hover, .rank-tab.active {
      background: var(--primary);
      color: #1a1410;
      border-color: var(--primary);
    }
.rank-section {
      margin-bottom: 50px;
    }
.section-title i {
      color: var(--accent);
    }
.rank-meta span {
      display: flex;
      align-items: center;
      gap: 5px;
    }
.rank-meta i {
      color: var(--primary);
      font-size: 0.8rem;
    }
.rank-tag {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 4px;
      font-size: 0.8rem;
      background: rgba(249, 115, 22, 0.15);
      color: var(--primary);
      border: 1px solid var(--border);
      margin-right: 5px;
    }
.rank-note {
      font-size: 0.85rem;
      color: var(--muted);
      margin-top: 15px;
      padding: 12px 20px;
      background: rgba(255, 247, 237, 0.03);
      border-radius: 8px;
      border-left: 3px solid var(--primary);
    }
.rank-note i {
      color: var(--accent);
      margin-right: 8px;
    }
.rank-header h1 { font-size: 2rem; }