:root {
    --primary: #2563eb;
    --accent: #06b6d4;
    --bg: #f4f8ff;
    --text: #0f1e3d;
    --radius: 8px;
    --shadow: 0 2px 12px rgba(15, 30, 61, 0.06);
    --shadow-hover: 0 8px 24px rgba(37, 99, 235, 0.14);
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
  }
  h1, h2, h3, h4, h5, .serif-title {
    font-family: 'Noto Serif SC', 'Source Han Serif SC', 'SimSun', serif;
    font-weight: 800;
  }
  .navbar {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15,30,61,0.06);
    padding: 12px 0;
  }
  .navbar-brand {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
  }
  .navbar-brand:hover { color: var(--accent); }
  .nav-link {
    font-weight: 500;
    color: var(--text);
    padding: 8px 14px !important;
    border-radius: var(--radius);
    transition: all .2s;
  }
  .nav-link:hover {
    color: var(--primary);
    background: rgba(37,99,235,0.06);
  }
  .navbar-toggler { border: none; }
  .navbar-toggler:focus { box-shadow: none; }

  /* Hero */
  .hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37,99,235,0.10), rgba(6,182,212,0.08)), 
                radial-gradient(circle at 80% 20%, rgba(6,182,212,0.2), transparent 50%);
    overflow: hidden;
    padding: 80px 0 60px;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('{随机图片}');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.18;
    z-index: 0;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(120deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
  }
  .hero p {
    font-size: 1.15rem;
    color: rgba(15,30,61,0.7);
    margin-bottom: 32px;
  }
  .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    margin-bottom: 40px;
  }
  .tag-cloud span {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(37,99,235,0.18);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    animation: floatTag 5s ease-in-out infinite alternate;
    backdrop-filter: blur(4px);
  }
  @keyframes floatTag {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
  }

  /* Section */
  .section {
    padding: 70px 0;
  }
  .section-alt {
    background: #ffffff;
    border-top: 1px solid rgba(15,30,61,0.04);
    border-bottom: 1px solid rgba(15,30,61,0.04);
  }
  .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
  }
  .section-title {
    font-size: 1.9rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
  }
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 42px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
  }
  .view-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .2s;
  }
  .view-more:hover { color: var(--accent); gap: 10px; }

  /* Movie Cards */
  .movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 24px;
  }
  .movie-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;
    position: relative;
    border: 1px solid rgba(15,30,61,0.04);
  }
  .movie-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
  }
  .movie-poster {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: linear-gradient(160deg, #e0eaff, #f4f8ff);
  }
  .movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
  }
  .movie-card:hover .movie-poster img {
    transform: scale(1.04);
  }
  .movie-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(15,30,61,0.75);
    color: #fff;
    font-size: 0.65rem;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    z-index: 2;
  }
  .movie-rating {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.55);
    color: #ffb347;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
    z-index: 2;
  }
  .movie-info {
    padding: 12px;
  }
  .movie-title {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
  }
  .movie-meta {
    font-size: 0.75rem;
    color: rgba(15,30,61,0.55);
    display: flex;
    justify-content: space-between;
  }
  .heat-badge {
    background: rgba(37,99,235,0.08);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
  }

  /* Rank Section */
  .rank-list {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .rank-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(15,30,61,0.05);
    transition: background .2s;
    cursor: pointer;
  }
  .rank-item:last-child { border-bottom: none; }
  .rank-item:hover { background: rgba(37,99,235,0.03); }
  .rank-number {
    font-size: 1.4rem;
    font-weight: 900;
    width: 40px;
    text-align: center;
    color: rgba(15,30,61,0.2);
    font-family: 'Noto Serif SC', serif;
  }
  .rank-number.top1 { color: #f59e0b; }
  .rank-number.top2 { color: #94a3b8; }
  .rank-number.top3 { color: #d97706; }
  .rank-poster {
    width: 60px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
  }
  .rank-info { flex: 1; }
  .rank-title { font-weight: 600; font-size: 1rem; margin-bottom: 4px; }
  .rank-desc {
    font-size: 0.82rem;
    color: rgba(15,30,61,0.55);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Accordion */
  .accordion-item {
    border: 1px solid rgba(15,30,61,0.08);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    background: #fff;
  }
  .accordion-header {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background .2s;
  }
  .accordion-header:hover { background: rgba(37,99,235,0.03); }
  .accordion-header i {
    color: var(--primary);
    transition: transform .3s;
  }
  .accordion-header.active i { transform: rotate(45deg); }
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    padding: 0 24px;
    color: rgba(15,30,61,0.75);
    font-size: 0.92rem;
    line-height: 1.8;
  }
  .accordion-content.show {
    max-height: 300px;
    padding: 0 24px 20px;
  }

  /* Feature list */
  .feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }
  .feature-item {
    background: #fff;
    padding: 30px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .3s, box-shadow .3s;
  }
  .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }
  .feature-item i {
    font-size: 2.2rem;
    background: linear-gradient(120deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    display: block;
  }
  .feature-item h5 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 700; }
  .feature-item p {
    font-size: 0.86rem;
    color: rgba(15,30,61,0.6);
    margin: 0;
  }

  /* Side drawer */
  .drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,30,61,0.4);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 999;
    backdrop-filter: blur(4px);
  }
  .drawer-overlay.open { opacity: 1; visibility: visible; }
  .drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    box-shadow: -20px 0 60px rgba(0,0,0,0.12);
    transition: right .4s cubic-bezier(.22,.61,.36,1);
    overflow-y: auto;
    border-radius: 16px 0 0 16px;
  }
  .drawer.open { right: 0; }
  .drawer-content { padding: 32px 28px; }
  .drawer-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(37,99,235,0.08);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    z-index: 10;
  }
  .drawer-close:hover { background: var(--primary); color: #fff; transform: rotate(90deg); }
  .drawer-poster {
    width: 100%;
    aspect-ratio: 2/3;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
  }
  .drawer-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: 'Noto Serif SC', serif;
  }
  .drawer-meta {
    font-size: 0.9rem;
    color: rgba(15,30,61,0.6);
    margin-bottom: 16px;
  }
  .drawer-meta strong { color: var(--text); }
  .drawer-plot {
    background: var(--bg);
    padding: 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    line-height: 1.8;
    border-left: 3px solid var(--primary);
    color: rgba(15,30,61,0.85);
  }
  .drawer-plot-title {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
  }

  /* Back to top */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37,99,235,0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .4s ease;
    z-index: 998;
    border: none;
    font-size: 1.2rem;
  }
  .back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .back-to-top:hover { background: var(--accent); transform: translateY(-4px); }

  /* Footer */
  .footer {
    background: #0f1e3d;
    color: rgba(255,255,255,0.7);
    padding: 50px 0 20px;
  }
  .footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color .2s;
  }
  .footer a:hover { color: #fff; }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    justify-content: center;
    margin-bottom: 30px;
  }
  .footer-copy {
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
  }
  .friend-links {
    margin: 40px 0 20px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .friend-links h5 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* Animation */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 768px) {
    .movie-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
    .section { padding: 48px 0; }
    .rank-item { padding: 14px 16px; }
    .drawer { width: 90%; right: -100%; }
  }

/* --- 子页面追加 --- */
/* 排行榜页专用轻量修饰，确保与整体风格完全融合 */
    .rank-hero {
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.05));
      border-radius: calc(var(--radius) * 2);
      padding: 2.5rem 2rem;
      margin-bottom: 2.5rem;
    }
.rank-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1.2rem;
      border-bottom: 2px solid rgba(37, 99, 235, 0.15);
      padding-bottom: 0.75rem;
      margin-bottom: 2rem;
    }
.rank-tabs a {
      font-weight: 600;
      color: var(--text);
      opacity: 0.7;
      text-decoration: none;
      padding: 0.25rem 0.4rem;
      border-radius: 6px;
      transition: all .2s;
    }
.rank-tabs a:hover {
      opacity: 1;
      color: var(--primary);
      background: rgba(37, 99, 235, 0.05);
    }
.rank-tabs a.active-tab {
      opacity: 1;
      color: var(--primary);
      border-bottom: 3px solid var(--primary);
    }
.rank-meta {
      font-size: 0.85rem;
      opacity: 0.75;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1rem;
    }
.rank-update-note {
      font-size: 0.85rem;
      color: var(--text);
      opacity: 0.6;
      border-top: 1px dashed rgba(37,99,235,0.2);
      margin-top: 1.8rem;
      padding-top: 1rem;
      text-align: right;
    }
/* 覆盖bootstrap组件类（以防万一，但尽量少用） */
    .list-group-item, .card { background: transparent; }

/* --- 子页面追加 --- */
/* 关于页专属样式,补充站点CSS未覆盖的部分 */
        .about-hero {
            background: linear-gradient(135deg, var(--bg) 0%, #e8f0fe 100%);
            padding: 80px 0 60px;
            border-bottom: 1px solid rgba(37, 99, 235, 0.08);
        }
.about-hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--text);
            line-height: 1.3;
            margin-bottom: 20px;
        }
.about-hero .lead {
            font-size: 1.15rem;
            color: rgba(15, 30, 61, 0.7);
            max-width: 720px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }
.about-badge {
            display: inline-block;
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 600;
            padding: 6px 18px;
            border-radius: 50px;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }
.about-section-card {
            background: #ffffff;
            border-radius: var(--radius);
            padding: 36px 32px;
            box-shadow: var(--shadow);
            transition: box-shadow 0.3s ease;
            margin-bottom: 30px;
        }
.about-section-card:hover {
            box-shadow: var(--shadow-hover);
        }
.about-section-card h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 18px;
            position: relative;
            padding-left: 18px;
        }
.about-section-card h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            width: 4px;
            height: 24px;
            background: var(--primary);
            border-radius: 4px;
        }
.about-section-card h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
            margin-top: 24px;
            margin-bottom: 12px;
        }
.about-section-card p {
            color: rgba(15, 30, 61, 0.75);
            line-height: 1.85;
            font-size: 0.98rem;
            margin-bottom: 16px;
        }
.about-list {
            padding-left: 0;
            list-style: none;
            margin: 0 0 10px 0;
        }
.about-list li {
            padding: 8px 0 8px 28px;
            position: relative;
            color: rgba(15, 30, 61, 0.8);
            line-height: 1.7;
            font-size: 0.97rem;
        }
.about-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 8px;
            color: var(--primary);
            font-size: 0.9rem;
        }
.about-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary);
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.9rem;
            margin-right: 10px;
            flex-shrink: 0;
        }
.about-icon {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 14px;
            display: inline-block;
        }
.about-quote {
            background: rgba(37, 99, 235, 0.04);
            border-left: 4px solid var(--primary);
            padding: 18px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 20px 0;
            font-style: italic;
            color: rgba(15, 30, 61, 0.75);
            line-height: 1.7;
        }
.about-footer-banner {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: var(--radius);
            padding: 40px 32px;
            text-align: center;
            color: #fff;
            margin: 40px 0 60px;
        }
.about-footer-banner h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
.about-footer-banner p {
            opacity: 0.9;
            font-size: 1rem;
            margin-bottom: 20px;
        }
.about-btn {
            display: inline-block;
            background: #fff;
            color: var(--primary);
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
.about-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            color: var(--primary);
        }
.about-hero {
                padding: 50px 0 40px;
            }
.about-hero h1 {
                font-size: 1.8rem;
            }
.about-section-card {
                padding: 24px 18px;
            }

/* --- 子页面追加 --- */
.hot-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            padding: 60px 0;
            color: #fff;
            text-align: center;
        }
.hot-hero h1 {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: #fff;
        }
.hot-hero p {
            font-size: 1.1rem;
            opacity: .92;
            max-width: 640px;
            margin: 0 auto;
        }
.hot-tabs {
            background: var(--bg);
            padding: 24px 0 8px;
            border-bottom: 1px solid rgba(37, 99, 235, .1);
        }
.hot-tabs .tab-btn {
            display: inline-block;
            padding: 8px 22px;
            margin: 0 6px 12px;
            border-radius: 30px;
            font-weight: 600;
            font-size: .92rem;
            color: var(--text);
            background: #fff;
            border: 1px solid rgba(37, 99, 235, .15);
            transition: all .3s;
            text-decoration: none;
        }
.hot-tabs .tab-btn:hover,
        .hot-tabs .tab-btn.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            box-shadow: 0 4px 14px rgba(37, 99, 235, .25);
        }
.hot-rank-card {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 20px 24px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 18px;
            transition: all .3s;
            border: 1px solid transparent;
        }
.hot-rank-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: rgba(37, 99, 235, .2);
            transform: translateY(-3px);
        }
.hot-rank-num {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary);
            min-width: 46px;
            text-align: center;
            font-style: italic;
            letter-spacing: -2px;
        }
.hot-rank-info {
            flex: 1;
        }
.hot-rank-title {
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 4px;
            color: var(--text);
        }
.hot-rank-meta {
            font-size: .85rem;
            color: #64748b;
        }
.hot-rank-tag {
            background: rgba(6, 182, 212, .1);
            color: #0e7490;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: .78rem;
            font-weight: 600;
            white-space: nowrap;
        }
.hot-daily-pick {
            background: var(--bg);
            border-radius: var(--radius);
            padding: 28px;
            margin: 36px 0;
            border-left: 4px solid var(--accent);
        }
.hot-daily-pick h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text);
        }
.hot-daily-pick p {
            color: #475569;
            line-height: 1.8;
        }
.hot-section-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin: 40px 0 20px;
            color: var(--text);
            position: relative;
            padding-left: 18px;
        }
.hot-section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            bottom: 4px;
            width: 5px;
            border-radius: 4px;
            background: linear-gradient(180deg, var(--primary), var(--accent));
        }
.hot-section-sub {
            color: #64748b;
            font-size: .95rem;
            margin-top: -14px;
            margin-bottom: 26px;
        }

/* --- 子页面追加 --- */
.movie-page-hero {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.08) 100%);
            padding: 3rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(37, 99, 235, 0.1);
        }
.movie-category-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin: 1.5rem 0;
        }
.movie-category-tabs .cat-tab {
            padding: 0.4rem 1.2rem;
            border-radius: 20px;
            background: #fff;
            border: 1px solid rgba(37, 99, 235, 0.2);
            color: var(--text);
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.25s ease;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
        }
.movie-category-tabs .cat-tab:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
        }
.movie-category-tabs .cat-tab.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
.movie-sort-bar {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem 1.2rem;
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
.movie-sort-bar .sort-label {
            font-weight: 600;
            color: var(--text);
            font-size: 0.9rem;
            white-space: nowrap;
        }
.movie-sort-bar .sort-link {
            color: #5a6b8c;
            text-decoration: none;
            font-size: 0.875rem;
            padding: 0.25rem 0.6rem;
            border-radius: 4px;
            transition: all 0.2s;
        }
.movie-sort-bar .sort-link:hover {
            color: var(--primary);
            background: rgba(37, 99, 235, 0.08);
        }
.movie-sort-bar .sort-link.active {
            color: var(--primary);
            font-weight: 600;
            background: rgba(37, 99, 235, 0.1);
        }
.movie-tip-card {
            background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
            border-left: 4px solid var(--primary);
            border-radius: 0 var(--radius) var(--radius) 0;
            padding: 1.5rem;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
.movie-tip-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.75rem;
        }
.movie-tip-card p {
            font-size: 0.925rem;
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 0;
        }
.movie-feature-list {
            margin: 2.5rem 0;
        }
.movie-feature-item {
            background: #fff;
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(37, 99, 235, 0.08);
        }
.movie-feature-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
.movie-feature-item .feature-icon {
            font-size: 1.75rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
.movie-feature-item h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.5rem;
        }
.movie-feature-item p {
            font-size: 0.875rem;
            color: #5a6b8c;
            line-height: 1.7;
            margin-bottom: 0;
        }
.movie-trending-tags {
            margin: 2rem 0;
        }
.movie-trending-tags .tag-item {
            display: inline-block;
            padding: 0.3rem 1rem;
            background: #fff;
            border: 1px solid rgba(37, 99, 235, 0.15);
            border-radius: 20px;
            color: var(--text);
            font-size: 0.825rem;
            margin: 0.25rem;
            text-decoration: none;
            transition: all 0.2s;
        }
.movie-trending-tags .tag-item:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
.movie-pagination {
            margin: 2.5rem 0;
            display: flex;
            justify-content: center;
            gap: 0.5rem;
        }
.movie-pagination .page-link-custom {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: #fff;
            border: 1px solid rgba(37, 99, 235, 0.15);
            color: var(--text);
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
        }
.movie-pagination .page-link-custom:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
.movie-pagination .page-link-custom.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
.movie-pagination .page-link-custom.disabled {
            opacity: 0.4;
            pointer-events: none;
        }
.movie-page-hero {
                padding: 2rem 0;
            }
.movie-sort-bar {
                padding: 0.6rem 1rem;
                gap: 0.5rem;
            }
.movie-category-tabs {
                gap: 0.5rem;
            }

/* --- 子页面追加 --- */
/* 本页专属样式 - 更多剧集页面 */
        .tv-hero {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.12) 100%);
            padding: 60px 0 40px;
            border-bottom: 1px solid rgba(37, 99, 235, 0.08);
        }
.tv-hero h1 {
            color: var(--text);
            font-weight: 800;
            font-size: 2.4rem;
            margin-bottom: 12px;
        }
.tv-hero p {
            color: #4a5b7a;
            font-size: 1.1rem;
            max-width: 700px;
            line-height: 1.7;
        }
.tv-category-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 28px 0 20px;
        }
.tv-category-tab {
            padding: 8px 22px;
            border-radius: 30px;
            background: #fff;
            border: 1.5px solid rgba(37, 99, 235, 0.15);
            color: var(--text);
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
.tv-category-tab:hover, .tv-category-tab.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
        }
.tv-list-section {
            padding: 50px 0;
        }
.tv-section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 28px;
            border-bottom: 2px solid rgba(37, 99, 235, 0.1);
            padding-bottom: 14px;
        }
.tv-section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 10px;
        }
.tv-section-title i {
            color: var(--primary);
            font-size: 1.3rem;
        }
.tv-section-more {
            color: var(--primary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s;
        }
.tv-section-more:hover {
            color: var(--accent);
        }
.tv-card {
            background: #fff;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
.tv-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
.tv-card-poster {
            position: relative;
            aspect-ratio: 3/4;
            background: linear-gradient(135deg, #e8eef8 0%, #d4e0f0 100%);
            overflow: hidden;
        }
.tv-card-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
.tv-card:hover .tv-card-poster img {
            transform: scale(1.05);
        }
.tv-card-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(37, 99, 235, 0.9);
            color: #fff;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            backdrop-filter: blur(4px);
        }
.tv-card-rating {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(15, 30, 61, 0.8);
            color: #ffd700;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            gap: 4px;
        }
.tv-card-body {
            padding: 14px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
.tv-card-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            margin: 0;
            line-height: 1.4;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.tv-card-meta {
            font-size: 0.8rem;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 8px;
        }
.tv-card-desc {
            font-size: 0.85rem;
            color: #64748b;
            line-height: 1.5;
            flex: 1;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
.tv-card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: auto;
        }
.tv-tag {
            background: rgba(37, 99, 235, 0.08);
            color: var(--primary);
            padding: 2px 10px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 500;
        }
.tv-feature-section {
            background: linear-gradient(135deg, var(--bg) 0%, #eef2f9 100%);
            padding: 60px 0;
            margin-top: 20px;
        }
.tv-feature-card {
            text-align: center;
            padding: 30px 20px;
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
        }
.tv-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
.tv-feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 16px;
        }
.tv-feature-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
        }
.tv-feature-desc {
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.6;
        }
.tv-update-info {
            background: var(--primary);
            color: #fff;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
.tv-update-info i {
            font-size: 0.9rem;
        }
.tv-hero h1 {
                font-size: 1.8rem;
            }
.tv-category-tab {
                padding: 6px 14px;
                font-size: 0.8rem;
            }
.tv-card-title {
                font-size: 0.9rem;
            }
.tv-card-desc {
                font-size: 0.8rem;
            }

/* --- 子页面追加 --- */
.variety-hero {
            background: linear-gradient(135deg, #eef4ff 0%, #e0f2fe 50%, #f0f9ff 100%);
            padding: 60px 0;
            border-bottom: 1px solid rgba(37, 99, 235, 0.08);
        }
.variety-hero .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 16px;
        }
.variety-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
            line-height: 1.2;
        }
.variety-hero h1 .highlight {
            color: var(--primary);
            position: relative;
        }
.variety-hero p {
            color: #475569;
            font-size: 1.05rem;
            max-width: 720px;
            line-height: 1.7;
            margin-bottom: 24px;
        }
.variety-hero .hero-stats {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            margin-top: 24px;
        }
.variety-hero .stat-item {
            display: flex;
            flex-direction: column;
        }
.variety-hero .stat-item .stat-number {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary);
        }
.variety-hero .stat-item .stat-label {
            font-size: 0.85rem;
            color: #64748b;
            font-weight: 500;
        }
.program-categories {
            padding: 50px 0;
        }
.category-chip {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 50px;
            background: rgba(37, 99, 235, 0.08);
            color: var(--text);
            font-size: 0.9rem;
            font-weight: 600;
            margin: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid rgba(37, 99, 235, 0.15);
        }
.category-chip:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
.program-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(15, 30, 61, 0.06);
        }
.program-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
.program-thumb {
            position: relative;
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, #dbeafe 0%, #c7d2fe 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
.program-thumb i {
            font-size: 3rem;
            color: rgba(37, 99, 235, 0.3);
        }
.program-thumb .program-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--primary);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 50px;
        }
.program-thumb .program-heat {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 50px;
            backdrop-filter: blur(4px);
        }
.program-body {
            padding: 20px;
        }
.program-body h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
            line-height: 1.4;
        }
.program-body p {
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 12px;
        }
.program-meta {
            display: flex;
            gap: 16px;
            font-size: 0.8rem;
            color: #94a3b8;
            margin-top: 12px;
        }
.program-meta span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
.schedule-section {
            background: var(--bg);
            padding: 50px 0;
            border-top: 1px solid rgba(37, 99, 235, 0.08);
            border-bottom: 1px solid rgba(37, 99, 235, 0.08);
        }
.schedule-card {
            background: white;
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(15, 30, 61, 0.06);
            transition: all 0.3s ease;
        }
.schedule-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
.schedule-card .day-label {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
.schedule-card .show-item {
            padding: 10px 0;
            border-bottom: 1px solid rgba(15, 30, 61, 0.06);
        }
.schedule-card .show-item:last-child {
            border-bottom: none;
        }
.schedule-card .show-item .show-time {
            font-size: 0.8rem;
            color: #94a3b8;
            font-weight: 600;
        }
.schedule-card .show-item .show-name {
            font-size: 0.95rem;
            color: var(--text);
            font-weight: 600;
            margin-top: 2px;
        }
.schedule-card .show-item .show-type {
            font-size: 0.75rem;
            color: var(--accent);
            font-weight: 600;
            margin-top: 2px;
        }
.feature-section {
            padding: 50px 0;
        }
.feature-item .feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
        }
.feature-item h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }
.variety-hero h1 {
                font-size: 1.8rem;
            }
.variety-hero .hero-stats {
                gap: 20px;
            }
.variety-hero .stat-item .stat-number {
                font-size: 1.2rem;
            }

/* --- 子页面追加 --- */
.anime-hero {
            background: linear-gradient(135deg, #f4f8ff 0%, #e8f0fe 50%, #dbeafe 100%);
            border-radius: var(--radius);
            padding: 3rem 2rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }
.anime-hero::after {
            content: '🎌';
            position: absolute;
            right: 3rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 8rem;
            opacity: 0.12;
        }
.anime-hero h1 {
            font-weight: 800;
            color: var(--text);
            font-size: 2.4rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
.anime-hero p {
            color: #4a5a7a;
            font-size: 1.05rem;
            max-width: 680px;
            position: relative;
            z-index: 1;
        }
.anime-section-title {
            font-weight: 700;
            color: var(--text);
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            padding-left: 1rem;
            border-left: 4px solid var(--primary);
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
.anime-card {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #e8eef7;
            overflow: hidden;
        }
.anime-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
.anime-card-poster {
            position: relative;
            padding-top: 56%;
            background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
            overflow: hidden;
        }
.anime-card-poster img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
.anime-card-badge {
            position: absolute;
            top: 0.8rem;
            left: 0.8rem;
            background: var(--primary);
            color: #fff;
            padding: 0.25rem 0.7rem;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 600;
        }
.anime-card-body {
            padding: 1.2rem;
        }
.anime-card-title {
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.5rem;
            font-size: 1.05rem;
        }
.anime-card-meta {
            color: #64748b;
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
.anime-card-desc {
            color: #475569;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0.8rem;
        }
.anime-card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
.anime-tag {
            background: #f0f4ff;
            color: var(--primary);
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            font-size: 0.78rem;
            font-weight: 500;
        }
.rank-highlight {
            background: linear-gradient(135deg, #fff7ed, #fef3c7);
            border: 1px solid #fcd34d;
        }
.list-group-item {
            background: transparent;
            color: var(--text);
            border-color: #e2e8f0;
        }
.list-group-item:hover {
            background: #f8fafc;
        }
.list-group-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            font-size: 0.85rem;
            font-weight: 700;
            margin-right: 0.8rem;
            flex-shrink: 0;
        }
.list-group-number.top3 {
            background: linear-gradient(135deg, #f59e0b, #f97316);
        }
.accordion-button {
            background: #f8fafc;
            color: var(--text);
            font-weight: 600;
            padding: 1rem 1.25rem;
            border: none;
        }
.accordion-button:not(.collapsed) {
            background: #f0f4ff;
            color: var(--primary);
        }
.accordion-body {
            background: #fff;
            color: #475569;
            line-height: 1.7;
            padding: 1.25rem;
        }
.accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.1);
        }

/* --- 子页面追加 --- */
/* 本页专属样式 */
    .doc-hero {
      background: linear-gradient(135deg, #0f1e3d 0%, #1e3a5f 50%, #2563eb 100%);
      padding: 60px 0;
      color: #fff;
      border-radius: 0 0 30px 30px;
      margin-bottom: 40px;
    }
.doc-hero h1 {
      font-weight: 800;
      font-size: 2.5rem;
      margin-bottom: 16px;
    }
.doc-hero p {
      font-size: 1.1rem;
      opacity: .9;
      max-width: 700px;
    }
.doc-category-tag {
      display: inline-block;
      background: rgba(255,255,255,.15);
      color: #fff;
      padding: 6px 16px;
      border-radius: 30px;
      font-size: .9rem;
      margin-right: 10px;
      margin-bottom: 10px;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255,255,255,.2);
    }
.doc-section-title {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--text);
      margin: 40px 0 20px;
      position: relative;
      padding-left: 16px;
    }
.doc-section-title::before {
      content: '';
      position: absolute;
      left: 0;
      top: 4px;
      width: 4px;
      height: 24px;
      background: var(--primary);
      border-radius: 4px;
    }
.doc-card {
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: transform .3s, box-shadow .3s;
      overflow: hidden;
      margin-bottom: 20px;
      height: 100%;
    }
.doc-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }
.doc-card-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      background: #e8eef7;
    }
.doc-card-body {
      padding: 20px;
    }
.doc-card-body h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
    }
.doc-card-body p {
      font-size: .9rem;
      color: #4a5568;
      line-height: 1.7;
      margin-bottom: 14px;
    }
.doc-card-meta {
      font-size: .85rem;
      color: #718096;
      display: flex;
      align-items: center;
      gap: 12px;
    }
.doc-card-meta i {
      color: var(--primary);
      margin-right: 4px;
    }
.doc-featured {
      background: linear-gradient(135deg, #f4f8ff 0%, #e8eef7 100%);
      border: 1px solid #dbe4f0;
      border-radius: var(--radius);
      padding: 30px;
      margin-bottom: 40px;
    }
.doc-featured h2 {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 16px;
    }
.doc-featured p {
      color: #4a5568;
      line-height: 1.8;
      margin-bottom: 12px;
    }
.doc-featured ul {
      padding-left: 20px;
      color: #4a5568;
    }
.doc-featured li {
      margin-bottom: 8px;
    }
.doc-highlight {
      background: #fff;
      border-left: 4px solid var(--primary);
      padding: 12px 16px;
      border-radius: 0 8px 8px 0;
      margin: 16px 0;
      font-size: .95rem;
      color: var(--text);
    }