:root {
      --neko-primary: #e50914;
      --neko-accent: #f5c518;
      --neko-bg: #0b0b0f;
      --neko-text: #f5f5f7;
      --neko-card-bg: #15151c;
      --neko-border: #2c2c3a;
      --neko-radius: 8px;
      --neko-shadow: 0 6px 20px rgba(0,0,0,0.5);
    }
    * { box-sizing: border-box; }
    body {
      background-color: var(--neko-bg);
      color: var(--neko-text);
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      line-height: 1.6;
    }
    h1,h2,h3,h4,h5,.navbar-brand { font-weight: 800; letter-spacing: -0.02em; }
    .navbar {
      background: rgba(11, 11, 15, 0.8);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--neko-border);
    }
    .navbar-brand {
      font-weight: 900;
      font-size: 1.8rem;
      color: var(--neko-text);
      display: flex;
      align-items: center;
    }
    .navbar-brand i { color: var(--neko-primary); margin-right: 6px; }
    .navbar-dark .navbar-nav .nav-link {
      color: rgba(255,255,255,0.7);
      font-weight: 500;
      margin: 0 10px;
    }
    .navbar-dark .navbar-nav .nav-link:hover { color: var(--neko-accent); }

    .hero-section {
      background: linear-gradient(135deg, #0b0b0f 0%, #1a1a2e 100%);
      padding: 5rem 0 3rem;
      margin-top: 56px;
      position: relative;
      overflow: hidden;
    }
    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-bottom: 2rem;
    }
    .tag {
      background: rgba(229, 9, 20, 0.2);
      border: 1px solid var(--neko-primary);
      color: var(--neko-text);
      padding: 8px 22px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 0.9rem;
      transition: 0.3s;
    }
    .tag:hover { background: var(--neko-primary); color: white; }
    .hero-title {
      font-size: 3.5rem;
      font-weight: 900;
      color: white;
      text-shadow: 0 4px 20px rgba(0,0,0,0.4);
      margin-bottom: 1rem;
    }
    .hero-sub { font-size: 1.3rem; color: #c0c0d0; font-weight: 300; }

    .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      margin: 2.5rem 0 1.5rem;
      position: relative;
      display: inline-block;
    }
    .section-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 60%;
      height: 4px;
      background: var(--neko-primary);
      border-radius: 4px;
    }
    .movie-card {
      background: var(--neko-card-bg);
      border-radius: var(--neko-radius);
      overflow: hidden;
      border: 1px solid var(--neko-border);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      cursor: pointer;
      height: 100%;
      display: flex;
      flex-direction: column;
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
    .movie-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.7);
      border-color: var(--neko-accent);
    }
    .card-img-wrapper {
      position: relative;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #1a1a22;
    }
    .card-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .movie-card:hover .card-img-wrapper img { transform: scale(1.08); }
    .badge-quality {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(0,0,0,0.8);
      color: var(--neko-accent);
      font-weight: 600;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 0.7rem;
      border: 1px solid var(--neko-accent);
    }
    .card-body {
      padding: 12px 10px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .movie-title {
      font-weight: 700;
      font-size: 0.95rem;
      color: white;
      margin-bottom: 2px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .movie-meta {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: #aaa;
    }
    .rating { font-family: 'Courier New', monospace; font-weight: 700; color: var(--neko-accent); font-size: 1rem; }
    .year { font-family: monospace; }

    /* 榜单 */
    .rank-list {
      list-style: none;
      padding: 0;
    }
    .rank-item {
      display: flex;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid #222;
    }
    .rank-num {
      width: 40px;
      height: 40px;
      background: var(--neko-primary);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 1.2rem;
      margin-right: 15px;
    }
    .rank-info { flex: 1; }
    .rank-title { font-weight: 600; }
    .rank-meta { font-size: 0.8rem; color: #aaa; }

    /* 分类标签页 */
    .tab-pane { padding: 1rem 0; }

    /* 弹窗 */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0,0,0,0.85);
      backdrop-filter: blur(10px);
      z-index: 2000;
      align-items: center;
      justify-content: center;
    }
    .modal-content {
      max-width: 800px;
      width: 90%;
      background: rgba(20,20,30,0.9);
      border: 1px solid #444;
      border-radius: 16px;
      padding: 30px;
      position: relative;
      color: white;
      display: flex;
      gap: 25px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    }
    .modal-backdrop-img {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.2;
      border-radius: 16px;
      z-index: -1;
    }
    .modal-poster { width: 180px; height: 270px; object-fit: cover; border-radius: 8px; border: 1px solid #333; }
    .modal-close {
      position: absolute;
      top: 10px; right: 15px;
      font-size: 2rem;
      cursor: pointer;
      color: white;
      background: none;
      border: none;
      z-index: 10;
    }
    .modal-close:hover { color: var(--neko-accent); }
    .modal-title { font-weight: 800; font-size: 2rem; }
    .modal-info span { background: #333; padding: 2px 12px; border-radius: 20px; margin-right: 8px; font-size: 0.9rem; }
    .modal-plot { margin: 20px 0; font-size: 0.95rem; color: #d0d0d8; }
    .modal-rating { color: var(--neko-accent); font-size: 2.5rem; font-weight: 800; font-family: monospace; }

    /* 时间线 */
    .timeline { position: relative; padding-left: 30px; }
    .timeline-item { position: relative; margin-bottom: 30px; }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -25px;
      top: 8px;
      width: 12px; height: 12px;
      background: var(--neko-primary);
      border-radius: 50%;
    }
    .timeline-item::after {
      content: '';
      position: absolute;
      left: -20px;
      top: 24px;
      width: 2px; height: 100%;
      background: #333;
    }
    .timeline-item:last-child::after { display: none; }

    .footer { border-top: 1px solid var(--neko-border); margin-top: 4rem; padding: 2rem 0; color: #aaa; }
    .friend-links { background: #111116; padding: 30px 0; margin-top: 40px; }
    .data-font { font-family: 'Courier New', monospace; }

    @media (max-width: 768px) {
      .hero-title { font-size: 2.2rem; }
      .modal-content { flex-direction: column; padding: 20px; }
      .modal-poster { width: 120px; height: 180px; }
    }

/* --- 子页面追加 --- */
/* 关于页专属轻量样式 —— 只补充首页CSS没覆盖的部分 */
        .about-hero {
            padding: 80px 0 40px;
            background: linear-gradient(180deg, rgba(229, 9, 20, 0.08) 0%, var(--neko-bg) 100%);
        }
.about-hero h1 {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--neko-text);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
.about-hero h1 span {
            color: var(--neko-primary);
        }
.about-hero .lead {
            color: rgba(245, 245, 247, 0.75);
            font-size: 1.1rem;
            max-width: 720px;
            margin: 0 auto;
        }
.about-section {
            padding: 48px 0;
            border-bottom: 1px solid var(--neko-border);
        }
.about-section:last-child {
            border-bottom: none;
        }
.about-section .section-title {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--neko-text);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.about-section .section-title i {
            color: var(--neko-primary);
        }
.about-card {
            background: var(--neko-card-bg);
            border: 1px solid var(--neko-border);
            border-radius: var(--neko-radius);
            padding: 28px;
            height: 100%;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
.about-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--neko-shadow);
        }
.about-card .icon-wrap {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(229, 9, 20, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
.about-card .icon-wrap i {
            color: var(--neko-primary);
            font-size: 1.2rem;
        }
.about-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--neko-text);
            margin-bottom: 10px;
        }
.about-card p {
            color: rgba(245, 245, 247, 0.7);
            font-size: 0.92rem;
            line-height: 1.7;
            margin: 0;
        }
.about-text {
            color: rgba(245, 245, 247, 0.8);
            font-size: 1rem;
            line-height: 1.9;
        }
.about-text strong {
            color: var(--neko-text);
        }
.about-list {
            list-style: none;
            padding: 0;
            margin: 16px 0 0;
        }
.about-list li {
            padding: 8px 0;
            color: rgba(245, 245, 247, 0.8);
            font-size: 0.95rem;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
.about-list li i {
            color: var(--neko-accent);
            font-size: 0.8rem;
            margin-top: 6px;
        }
.stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
.stat-item {
            flex: 1;
            min-width: 140px;
            background: rgba(229, 9, 20, 0.08);
            border: 1px solid rgba(229, 9, 20, 0.2);
            border-radius: var(--neko-radius);
            padding: 20px;
            text-align: center;
        }
.stat-item .num {
            font-size: 2rem;
            font-weight: 900;
            color: var(--neko-primary);
            line-height: 1.2;
        }
.stat-item .label {
            color: rgba(245, 245, 247, 0.6);
            font-size: 0.85rem;
            margin-top: 4px;
        }
.about-hero h1 {
                font-size: 1.8rem;
            }
.about-section .section-title {
                font-size: 1.3rem;
            }
.about-card {
                padding: 20px;
            }
.stats-row {
                gap: 12px;
            }