:root {
    --primary: #dc2626;
    --accent: #fb923c;
    --bg-dark: #141013;
    --bg-card: #1f1a1e;
    --bg-hover: #2a2328;
    --text-light: #fef2f2;
    --text-muted: #b8a5a5;
    --border-light: #3a3035;
    --radius: 8px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-hover: 0 8px 24px rgba(220,38,38,0.15);
    --font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  }

  * { box-sizing: border-box; }

  body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.75;
    overflow-x: hidden;
  }

  a { color: var(--text-light); text-decoration: none; transition: color 0.2s; }
  a:hover { color: var(--accent); }

  /* 滚动进度条 */
  .scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 9999;
    transition: width 0.1s linear;
  }

  /* 导航 */
  .navbar {
    background-color: rgba(20, 16, 19, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: 0.8rem 0;
  }
  .navbar-brand {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-light) !important;
    letter-spacing: -0.5px;
  }
  .navbar-brand i { color: var(--primary); margin-right: 6px; }
  .navbar-nav .nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    margin: 0 0.35rem;
    padding: 0.5rem 0.75rem !important;
    border-radius: var(--radius);
    transition: all 0.2s;
  }
  .navbar-nav .nav-link:hover {
    color: var(--text-light) !important;
    background: var(--bg-hover);
  }

  .navbar-toggler {
    border: 1px solid var(--border-light);
    color: var(--text-light);
  }

  /* Hero */
  .hero-section {
    position: relative;
    padding: 6rem 0 4rem;
    text-align: center;
    overflow: hidden;
  }
  .hero-title {
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.2;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent), #fde68a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
  }
  .hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 2rem;
  }
  .hero-cta {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .btn-hero {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    border: none;
    transition: all 0.2s;
  }
  .btn-hero:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(251,146,60,0.3);
  }
  .hero-float {
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
  }
  .hero-float.f1 { top: 15%; left: 8%; font-size: 4rem; animation: float 6s infinite ease-in-out; }
  .hero-float.f2 { bottom: 20%; right: 12%; font-size: 3.2rem; animation: float 8s infinite ease-in-out reverse; }
  .hero-float.f3 { top: 40%; right: 6%; font-size: 2.4rem; animation: float 5s infinite ease-in-out; }
  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
  }

  /* 区块通用 */
  .section-block {
    padding: 3rem 0;
  }
  .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.8rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.8rem;
  }
  .section-title {
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .section-title i {
    color: var(--primary);
  }
  .section-more {
    color: var(--text-muted);
    font-size: 0.85rem;
  }

  /* 侧边栏布局 */
  .content-wrap {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
  }
  .sidebar {
    flex: 0 0 180px;
    position: sticky;
    top: 80px;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1rem;
    border: 1px solid var(--border-light);
  }
  .sidebar-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
  }
  .sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .sidebar-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
  }
  .sidebar-list a:hover,
  .sidebar-list a.active {
    background: var(--primary);
    color: #fff;
  }
  .main-content {
    flex: 1;
    min-width: 0;
  }

  /* 影片卡片 */
  .movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.2rem;
  }
  .movie-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    transform-style: preserve-3d;
    perspective: 800px;
  }
  .movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
  }
  .movie-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
    transform-style: preserve-3d;
  }
  .movie-card.flipped .movie-card-inner {
    transform: rotateY(180deg);
  }
  .movie-card-face {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .movie-card-front {
    display: flex;
    flex-direction: column;
  }
  .movie-card-back {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    transform: rotateY(180deg);
    background: var(--bg-hover);
    padding: 1rem;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    overflow-y: auto;
  }
  .movie-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #2a2328;
  }
  .movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }
  .movie-card:hover .movie-poster img {
    transform: scale(1.05);
  }
  .episode-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    z-index: 2;
  }
  .rating-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.75);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: var(--font-mono);
    backdrop-filter: blur(4px);
  }
  .movie-info {
    padding: 0.6rem 0.6rem 0.8rem;
  }
  .movie-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .movie-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    gap: 0.4rem;
    align-items: center;
  }

  /* 排行榜 */
  .rank-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .rank-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0.8rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: all 0.2s;
  }
  .rank-item:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
  }
  .rank-num {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    width: 36px;
    text-align: center;
  }
  .rank-info { flex: 1; min-width: 0; }
  .rank-title {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .rank-stats {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    gap: 0.8rem;
  }

  /* 手风琴 */
  .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-bottom: 0.6rem;
    overflow: hidden;
  }
  .accordion-button {
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    padding: 0.9rem 1rem;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .accordion-button:hover { background: var(--bg-hover); }
  .accordion-button i { color: var(--accent); transition: transform 0.2s; }
  .accordion-item.open .accordion-button i { transform: rotate(180deg); }
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1rem;
  }
  .accordion-item.open .accordion-content {
    max-height: 300px;
    padding-bottom: 1rem;
  }

  /* 标签 */
  .mood-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }
  .mood-tag {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
  }
  .mood-tag:hover, .mood-tag.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
  }
  .mood-result {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.2rem;
    border: 1px solid var(--border-light);
    min-height: 100px;
  }

  /* 即将上线 */
  .coming-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  .coming-date {
    font-family: var(--font-mono);
    color: var(--accent);
    font-weight: 700;
    white-space: nowrap;
  }

  /* 页脚 */
  .footer {
    background: #0f0c0e;
    border-top: 1px solid var(--border-light);
    padding: 3rem 0 2rem;
    margin-top: 3rem;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  .footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  .footer-links a:hover { color: var(--accent); }
  .footer-copy {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
  }

  /* 友情链接 */
  .friend-links {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    margin: 2rem 0;
  }
  .friend-links h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
  }

  /* 数字滚动 */
  .stat-number {
    font-family: var(--font-mono);
    color: var(--accent);
  }

  @media (max-width: 768px) {
    .content-wrap {
      flex-direction: column;
    }
    .sidebar {
      position: static;
      flex: auto;
      width: 100%;
    }
    .sidebar-list {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 0.3rem;
    }
    .hero-section {
      padding: 4rem 0 2rem;
    }
  }

/* --- 子页面追加 --- */
/* 确保 Bootstrap 组件与深色主题融合 */
    .card, .card-body, .list-group-item, .accordion-item, .accordion-button, .accordion-body,
    .form-control, .form-select, .modal-content, .dropdown-menu {
      background-color: var(--bg-card) !important;
      color: var(--text-light) !important;
      border-color: var(--border-light) !important;
    }
.card-title, .card-text, .accordion-button, .list-group-item {
      color: var(--text-light) !important;
    }
.accordion-button:not(.collapsed) {
      background-color: var(--bg-hover) !important;
    }
/* 排行榜特有 */
    .rank-badge {
      font-family: var(--font-mono);
      font-weight: 700;
      font-size: 1.2rem;
      min-width: 2.5rem;
      text-align: center;
    }
.rank-table-row {
      transition: background .2s;
      border-radius: var(--radius);
    }
.rank-table-row:hover {
      background: var(--bg-hover);
    }
.rank-crown {
      color: var(--accent);
      font-size: 1.3rem;
      margin-right: 6px;
    }
.rank-genre-tag {
      background: rgba(220, 38, 38, 0.15);
      color: var(--accent);
      border-radius: 20px;
      padding: 2px 12px;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: .3px;
      border: 1px solid rgba(220,38,38,0.3);
    }
.rank-badge { font-size: 1rem; min-width: 2rem; }

/* --- 子页面追加 --- */
/* 本页专属微调 - 不影响全局 */
        .about-hero {
            background: radial-gradient(circle at 20% 30%, var(--bg-hover), var(--bg-dark) 80%);
            border-bottom: 1px solid var(--border-light);
        }
.about-section {
            padding: 4rem 0;
        }
.about-section + .about-section {
            border-top: 1px solid var(--border-light);
        }
.about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
.about-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
            }
.stat-chip {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 50px;
            padding: 0.4rem 1.2rem;
            display: inline-block;
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
.stat-chip strong {
            color: var(--text-light);
            font-weight: 700;
        }
.feature-icon {
            width: 48px;
            height: 48px;
            background: rgba(220, 38, 38, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }
.highlight-text {
            color: var(--accent);
            font-weight: 600;
        }
blockquote {
            border-left: 3px solid var(--primary);
            background: var(--bg-card);
            padding: 1.2rem 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            color: var(--text-light);
            font-style: italic;
            margin: 2rem 0;
        }
.team-tag {
            font-family: var(--font-mono);
            font-size: 0.85rem;
            color: var(--text-muted);
        }

/* --- 子页面追加 --- */
.guide-section { padding: 60px 0; }
.guide-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 30px; margin-bottom: 30px; transition: all .3s ease; }
.guide-card:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.guide-card h3 { color: var(--text-light); font-weight: 700; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.guide-card h3 i { color: var(--primary); }
.guide-card p { color: var(--text-muted); line-height: 1.8; }
.guide-card ul, .guide-card ol { color: var(--text-muted); line-height: 2; padding-left: 20px; }
.guide-card li { margin-bottom: 8px; }
.guide-card strong { color: var(--text-light); }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: var(--primary); color: var(--text-light); border-radius: 50%; font-weight: 700; margin-right: 10px; font-size: 14px; flex-shrink: 0; }
.quality-badge { display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; margin-right: 8px; }
.quality-4k { background: #dc2626; color: #fff; }
.quality-1080 { background: #fb923c; color: #fff; }
.quality-720 { background: #fbbf24; color: #141013; }
.quality-480 { background: #60a5fa; color: #fff; }
.tip-box { background: rgba(220,38,38,.08); border-left: 4px solid var(--primary); padding: 15px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin: 20px 0; }
.tip-box p { color: var(--text-light); margin: 0; }
.shortcut-key { display: inline-block; background: var(--bg-hover); border: 1px solid var(--border-light); padding: 2px 10px; border-radius: 4px; font-family: var(--font-mono); font-size: 13px; color: var(--text-light); }
.guide-sidebar { position: sticky; top: 90px; }
.guide-sidebar .sidebar-title { color: var(--text-light); font-weight: 700; margin-bottom: 15px; }
.guide-sidebar .sidebar-list li { margin-bottom: 5px; }
.guide-sidebar .sidebar-list a { color: var(--text-muted); text-decoration: none; transition: color .3s; padding: 8px 12px; display: block; border-radius: var(--radius); }
.guide-sidebar .sidebar-list a:hover { color: var(--primary); background: var(--bg-hover); }
.guide-section { padding: 30px 0; }
.guide-card { padding: 20px; }
.guide-sidebar { position: static; margin-bottom: 30px; }

/* --- 子页面追加 --- */
/* 极少量本页特有微调，保持与站点风格统一 */
    .faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 1rem; transition: box-shadow .2s, border-color .2s; }
.faq-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-q { font-weight: 600; color: var(--text-light); font-size: 1.1rem; display: flex; align-items: baseline; gap: .6rem; }
.faq-q i { color: var(--accent); font-size: 1rem; width: 1.2rem; }
.faq-a { margin-top: .6rem; color: var(--text-muted); line-height: 1.7; }
.faq-a a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.faq-a a:hover { color: var(--primary); }
.tag-badge { display: inline-block; background: rgba(220,38,38,.12); color: var(--accent); border-radius: 20px; padding: .15rem .8rem; font-size: .8rem; font-weight: 500; margin-left: .5rem; letter-spacing: .2px; }
.sidebar .sidebar-list li a { font-size: .95rem; }
.main-content h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.8rem; color: var(--text-light); border-left: 4px solid var(--primary); padding-left: 1rem; }

/* --- 子页面追加 --- */
background: linear-gradient(135deg, rgba(20,16,19,.92) 0%, rgba(31,26,30,.85) 100%), url(' {随机图片}
.privacy-hero .hero-title {
            color: var(--text-light);
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }
.privacy-hero .hero-subtitle {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 640px;
            line-height: 1.7;
        }
.privacy-section {
            padding: 40px 0;
            border-bottom: 1px solid var(--border-light);
        }
.privacy-section:last-child {
            border-bottom: none;
        }
.privacy-section h2 {
            color: var(--text-light);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.privacy-section h2 i {
            color: var(--primary);
            font-size: 1.2rem;
        }
.privacy-section h3 {
            color: var(--accent);
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 12px;
        }
.privacy-section p {
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 16px;
            font-size: 0.95rem;
        }
.privacy-section ul {
            color: var(--text-muted);
            padding-left: 20px;
            margin-bottom: 16px;
        }
.privacy-section li {
            margin-bottom: 8px;
            line-height: 1.7;
            font-size: 0.95rem;
        }
.privacy-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 28px;
            margin-bottom: 24px;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }
.privacy-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
.privacy-card .card-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 16px;
            display: block;
        }
.privacy-card h3 {
            color: var(--text-light);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
.privacy-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
.privacy-badge {
            display: inline-block;
            background: rgba(220,38,38,0.15);
            color: var(--accent);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }
.privacy-note {
            background: rgba(220,38,38,0.05);
            border-left: 3px solid var(--primary);
            padding: 16px 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 24px 0;
        }
.privacy-note p {
            margin-bottom: 0;
            font-size: 0.9rem;
        }
.last-updated {
            color: var(--text-muted);
            font-size: 0.85rem;
            font-family: var(--font-mono);
            margin-top: 8px;
            display: block;
        }
.table-of-contents {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 20px 24px;
            margin-bottom: 32px;
        }
.table-of-contents .toc-title {
            color: var(--text-light);
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 12px;
        }
.table-of-contents ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.table-of-contents li {
            margin-bottom: 6px;
        }
.table-of-contents a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }
.table-of-contents a:hover {
            color: var(--primary);
        }
.privacy-hero {
                padding: 60px 0 40px;
            }
.privacy-hero .hero-title {
                font-size: 1.8rem;
            }
.privacy-section h2 {
                font-size: 1.2rem;
            }
.privacy-card {
                padding: 20px;
            }

/* --- 子页面追加 --- */
/* 本页专属样式 - 补充热播页特色效果 */
        .hot-badge {
            background: var(--primary);
            color: #fff;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
.hot-section {
            margin-bottom: 2.5rem;
        }
.hot-section-title {
            font-size: 1.35rem;
            font-weight: 800;
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-light);
            border-left: 4px solid var(--primary);
            padding-left: 12px;
        }
.hot-section-title i {
            color: var(--accent);
        }
.hot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 16px;
        }
.hot-item {
            background: var(--bg-card);
            border-radius: var(--radius);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--border-light);
        }
.hot-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
.hot-item-img {
            width: 100%;
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, rgba(220,38,38,0.2), rgba(251,146,60,0.15));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--accent);
        }
.hot-item-body {
            padding: 12px 14px;
        }
.hot-item-title {
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 4px;
            color: var(--text-light);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.hot-item-meta {
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }
.hot-item-meta .type-tag {
            background: rgba(220,38,38,0.15);
            color: var(--accent);
            padding: 1px 8px;
            border-radius: 4px;
            font-weight: 500;
            font-size: 0.72rem;
        }
.update-strip {
            background: rgba(220,38,38,0.08);
            border: 1px solid rgba(220,38,38,0.2);
            border-radius: var(--radius);
            padding: 12px 18px;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            color: var(--text-light);
            flex-wrap: wrap;
        }
.update-strip i {
            color: var(--primary);
            font-size: 1.1rem;
        }
.update-strip .update-time {
            background: var(--primary);
            color: #fff;
            font-size: 0.75rem;
            padding: 2px 10px;
            border-radius: 20px;
            font-weight: 600;
            white-space: nowrap;
        }
.update-strip .update-desc {
            color: var(--text-muted);
        }
.hot-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 12px;
            }
.hot-section-title {
                font-size: 1.1rem;
            }

/* --- 子页面追加 --- */
.movies-hero {
            background: linear-gradient(135deg, rgba(220,38,38,0.15) 0%, rgba(20,16,19,0.9) 60%);
            padding: 60px 0 40px;
            border-bottom: 1px solid var(--border-light);
        }
.movies-hero .hero-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 12px;
        }
.movies-hero .hero-subtitle {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 720px;
            line-height: 1.7;
        }
.filter-bar {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 18px 20px;
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }
.filter-bar .filter-label {
            color: var(--text-light);
            font-weight: 600;
            font-size: 0.9rem;
            margin-right: 4px;
        }
.filter-bar .filter-btn {
            background: transparent;
            border: 1px solid var(--border-light);
            color: var(--text-muted);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }
.filter-bar .filter-btn:hover,
        .filter-bar .filter-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
.movie-card .movie-poster {
            position: relative;
            padding-top: 140%;
            overflow: hidden;
        }
.movie-card .movie-poster img {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
.movie-card .movie-badge {
            position: absolute;
            top: 12px; left: 12px;
            background: var(--primary);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 4px;
            z-index: 2;
        }
.movie-card .movie-rating {
            position: absolute;
            bottom: 12px; right: 12px;
            background: rgba(0,0,0,0.7);
            color: #ffc107;
            font-weight: 700;
            font-size: 0.85rem;
            padding: 4px 8px;
            border-radius: 4px;
            z-index: 2;
        }
.movie-card .movie-info {
            padding: 14px;
        }
.movie-card .movie-title {
            color: var(--text-light);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.movie-card .movie-meta {
            color: var(--text-muted);
            font-size: 0.8rem;
            display: flex;
            justify-content: space-between;
        }
.section-more:hover {
            color: var(--primary);
        }
.pagination-wrap {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 40px 0 20px;
        }
.pagination-wrap .page-btn {
            width: 40px; height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            color: var(--text-muted);
            border-radius: 6px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s;
        }
.pagination-wrap .page-btn:hover,
        .pagination-wrap .page-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
.movies-hero .hero-title {
                font-size: 1.6rem;
            }
.filter-bar {
                padding: 14px;
                gap: 8px;
            }

/* --- 子页面追加 --- */
/* 本页专属样式，合并进站点CSS */
        .tv-hero {
            background: linear-gradient(135deg, rgba(220,38,38,0.15) 0%, rgba(251,146,60,0.08) 50%, rgba(20,16,19,0.95) 100%);
            padding: 80px 0 60px;
            border-bottom: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }
.tv-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at 30% 40%, rgba(220,38,38,0.1) 0%, transparent 60%);
            pointer-events: none;
        }
.tv-hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 16px;
            position: relative;
        }
.tv-hero h1 span {
            color: var(--accent);
        }
.tv-hero p {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 640px;
            line-height: 1.7;
            margin-bottom: 0;
        }
.tv-filter {
            padding: 32px 0 8px;
        }
.filter-btn:hover, .filter-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            box-shadow: 0 4px 14px rgba(220,38,38,0.3);
        }
.tv-section {
            padding: 40px 0;
        }
.tv-section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 24px;
            position: relative;
            padding-left: 18px;
        }
.tv-section-title::before {
            content: '';
            position: absolute;
            left: 0; top: 4px; bottom: 4px;
            width: 4px;
            background: linear-gradient(180deg, var(--primary), var(--accent));
            border-radius: 2px;
        }
.tv-section-title i {
            color: var(--accent);
            margin-right: 10px;
            font-size: 1.2rem;
        }
.tv-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            margin-bottom: 24px;
        }
.tv-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(220,38,38,0.4);
        }
.tv-card-img {
            position: relative;
            overflow: hidden;
            height: 200px;
            background: var(--bg-dark);
        }
.tv-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
.tv-card:hover .tv-card-img img {
            transform: scale(1.05);
        }
.tv-card-img .rating {
            position: absolute;
            top: 10px; right: 10px;
            background: rgba(220,38,38,0.92);
            color: #fff;
            font-size: 0.78rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 12px;
            z-index: 2;
        }
.tv-card-img .badge {
            position: absolute;
            bottom: 10px; left: 10px;
            background: rgba(20,16,19,0.85);
            color: var(--text-light);
            font-size: 0.72rem;
            font-weight: 500;
            padding: 3px 10px;
            border-radius: 4px;
            z-index: 2;
            border: 1px solid rgba(255,255,255,0.15);
        }
.tv-card-body {
            padding: 16px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
.tv-card-title {
            font-size: 1.02rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 8px;
            line-height: 1.4;
        }
.tv-card-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-bottom: 10px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
.tv-card-meta i {
            color: var(--accent);
            margin-right: 4px;
        }
.tv-card-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 12px;
            flex-grow: 1;
        }
.tv-card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 14px;
        }
.tv-card-tags span {
            background: rgba(220,38,38,0.12);
            color: #fca5a5;
            font-size: 0.72rem;
            padding: 2px 8px;
            border-radius: 4px;
            border: 1px solid rgba(220,38,38,0.2);
        }
.tv-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--border-light);
            padding-top: 12px;
        }
.tv-card-footer .status {
            font-size: 0.78rem;
            color: var(--text-muted);
        }
.tv-card-footer .status i {
            color: var(--accent);
            margin-right: 4px;
        }
.btn-tv-play {
            background: var(--primary);
            color: #fff;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
        }
.btn-tv-play:hover {
            background: #b91c1c;
            box-shadow: 0 4px 12px rgba(220,38,38,0.4);
            color: #fff;
        }
.btn-tv-play i {
            margin-right: 4px;
            font-size: 0.75rem;
        }
.tv-notes {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 28px;
            margin: 48px 0 60px;
            position: relative;
            overflow: hidden;
        }
.tv-notes::before {
            content: '';
            position: absolute;
            top: 0; left: 0; bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--primary), var(--accent));
        }
.tv-notes h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 16px;
        }
.tv-notes h3 i {
            color: var(--accent);
            margin-right: 10px;
        }
.tv-notes p {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 0.92rem;
            margin-bottom: 12px;
        }
.tv-notes ul {
            padding-left: 0;
            list-style: none;
            margin-bottom: 0;
        }
.tv-notes ul li {
            color: var(--text-muted);
            font-size: 0.9rem;
            padding: 6px 0;
            padding-left: 24px;
            position: relative;
        }
.tv-notes ul li::before {
            content: '▸';
            position: absolute;
            left: 8px;
            color: var(--accent);
        }
.tv-hero h1 {
                font-size: 1.8rem;
            }
.tv-card-img {
                height: 180px;
            }