:root {
      --primary: #06b6d4;
      --accent: #ec4899;
      --bg-deep: #0c0a1a;
      --text-light: #e0f2fe;
      --card-bg: #161229;
      --card-border: rgba(6, 182, 212, 0.25);
      --shadow-cyber: 0 18px 30px -10px rgba(6, 182, 212, 0.4), 0 8px 20px -6px rgba(236, 72, 153, 0.3);
    }
    * { font-family: 'Inter', system-ui, -apple-system, sans-serif; }
    body {
      background: var(--bg-deep);
      color: var(--text-light);
      overflow-x: hidden;
    }
    /* 拟物厚重·渐变高光 */
    .hero-section, .section-title {
      text-shadow: 0 4px 14px rgba(0,0,0,0.7), 0 0 20px rgba(6,182,212,0.3);
    }
    .neko-nav {
      background: rgba(12, 10, 26, 0.85);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(6, 182, 212, 0.2);
      transition: background 0.3s, box-shadow 0.2s;
    }
    .neko-nav.scrolled {
      background: rgba(8, 6, 18, 0.95);
      box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    }
    .navbar-brand {
      font-weight: 900;
      letter-spacing: -0.5px;
      color: var(--primary) !important;
      text-shadow: 0 0 12px var(--primary);
      display: flex;
      align-items: center;
    }
    .nav-link {
      color: var(--text-light) !important;
      font-weight: 500;
      margin: 0 8px;
      transition: 0.2s;
    }
    .nav-link:hover { color: var(--accent) !important; text-shadow: 0 0 8px var(--accent); }
    /* 海报卡片拟物厚重 */
    .movie-card {
      background: var(--card-bg);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.9), 0 0 0 1px var(--card-border);
      transition: transform 0.25s, box-shadow 0.3s, border 0.2s;
      cursor: pointer;
      border: 1px solid rgba(236,72,153,0.1);
      will-change: transform;
      perspective: 800px;
    }
    .movie-card:hover {
      transform: scale(1.02);
      box-shadow: 0 28px 40px -10px rgba(236,72,153,0.3), 0 0 0 2px rgba(6,182,212,0.5);
      border: 1px solid rgba(6,182,212,0.6);
    }
    .card-img-wrap {
      position: relative;
      overflow: hidden;
      background: #12101e;
    }
    .card-img-wrap img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
      opacity: 0;
      transition: opacity 0.4s;
    }
    .card-img-wrap img.lazy-loaded { opacity: 1; }
    .ep-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(6px);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 600;
      padding: 2px 10px;
      border-radius: 20px;
      border-left: 2px solid var(--accent);
      box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    }
    .score-badge {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(0,0,0,0.8);
      color: #facc15;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
      border: 1px solid rgba(250,204,21,0.3);
    }
    .card-body {
      padding: 14px;
      background: linear-gradient(145deg, #151129, #100d1e);
    }
    .card-title {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 4px;
      color: #f0f9ff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .card-meta {
      color: #9db8d9;
      font-size: 0.75rem;
      display: flex;
      justify-content: space-between;
    }
    .rating i { color: #fbbf24; margin-right: 2px; }
    .section-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      border-bottom: 2px solid rgba(6,182,212,0.4);
      padding-bottom: 6px;
      margin: 40px 0 20px;
    }
    .section-header h2 {
      font-weight: 800;
      font-size: 2.2rem;
      letter-spacing: -0.5px;
      background: linear-gradient(145deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 4px 20px rgba(6,182,212,0.3);
    }
    .link-more { font-weight: 500; color: var(--accent); text-decoration: none; }
    .compare-table {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(6,182,212,0.2);
      border-radius: 24px;
      padding: 20px;
      backdrop-filter: blur(6px);
    }
    .compare-table td, .compare-table th { padding: 12px 8px; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .list-num {
      background: var(--accent);
      color: #000;
      font-weight: 800;
      border-radius: 6px;
      padding: 2px 8px;
      margin-right: 8px;
    }
    .btn-neko {
      background: var(--primary);
      color: #000;
      font-weight: 700;
      border: none;
      box-shadow: 0 6px 0 #0a7e94;
      transition: all 0.1s;
      border-radius: 40px;
      padding: 8px 20px;
    }
    .btn-neko:hover { background: var(--accent); box-shadow: 0 6px 0 #a13b6b; transform: translateY(-1px); }
    .flip-card {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0,0,0,0.8);
      backdrop-filter: blur(4px);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }
    .flip-inner {
      max-width: 500px;
      width: 90%;
      background: #1a152e;
      border: 2px solid var(--primary);
      border-radius: 28px;
      padding: 30px;
      position: relative;
      box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    }
    .flip-inner .close-flip {
      position: absolute;
      top: 10px; right: 16px;
      font-size: 2rem;
      cursor: pointer;
      color: var(--accent);
    }
    .footer-links a {
      color: var(--text-light);
      text-decoration: none;
      margin: 0 10px;
      font-weight: 400;
    }
    .footer-links a:hover { color: var(--accent); }
    .cat-hash { background: rgba(6,182,212,0.2); border-radius: 30px; padding: 10px 18px; margin: 6px; transition: 0.2s; }
    .cat-hash:hover { background: rgba(236,72,153,0.3); transform: scale(1.05); }
    /* 打字机动画 */
    .typewriter {
      display: inline-block;
      overflow: hidden;
      white-space: nowrap;
      border-right: 3px solid var(--accent);
      animation: typing 3.5s steps(40, end) infinite alternate;
    }
    @keyframes typing {
      0% { width: 0; }
      60% { width: 100%; }
      100% { width: 100%; }
    }
    /* 懒加载渐显 */
    .lazy-fade { opacity: 0; transition: opacity 0.5s; }
    .lazy-fade.show { opacity: 1; }

/* --- 子页面追加 --- */
.about-hero {
            background: linear-gradient(135deg, var(--bg-deep) 0%, rgba(6, 182, 212, 0.15) 100%);
            padding: 80px 0 50px;
            border-bottom: 1px solid var(--card-border);
        }
.about-section {
            padding: 50px 0;
        }
.about-section + .about-section {
            border-top: 1px solid rgba(6, 182, 212, 0.1);
        }
.about-title-icon {
            color: var(--accent);
            margin-right: 10px;
        }
.about-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 28px;
            height: 100%;
            transition: transform .3s ease, box-shadow .3s ease;
        }
.about-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-cyber);
        }
.about-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 16px;
        }
.about-card h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 12px;
        }
.about-card p {
            color: rgba(224, 242, 254, 0.8);
            font-size: .92rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
.timeline-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.timeline-list li {
            position: relative;
            padding-left: 32px;
            margin-bottom: 18px;
            color: rgba(224, 242, 254, 0.85);
            font-size: .95rem;
            line-height: 1.6;
        }
.timeline-list li::before {
            content: "\f0e7";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--accent);
            font-size: 14px;
        }
.highlight-text {
            color: var(--primary);
            font-weight: 600;
        }
.about-note {
            background: rgba(236, 72, 153, 0.08);
            border-left: 4px solid var(--accent);
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
            font-size: .95rem;
            color: rgba(224, 242, 254, 0.85);
        }
.about-note i {
            color: var(--accent);
            margin-right: 8px;
        }

/* --- 子页面追加 --- */
/* 页面专属微调 */
        .disclaimer-hero { padding: 120px 0 60px; position: relative; overflow: hidden; }
.disclaimer-hero::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 30% 50%, rgba(6,182,212,.15), transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(236,72,153,.1), transparent 50%); }
.disclaimer-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 2rem; margin-bottom: 1.5rem; transition: transform .3s, box-shadow .3s; }
.disclaimer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-cyber); }
.disclaimer-card h3 { color: var(--primary); font-weight: 700; font-size: 1.35rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }
.disclaimer-card h3 i { color: var(--accent); }
.disclaimer-card p, .disclaimer-card li { color: rgba(224,242,254,.85); line-height: 1.9; font-size: .95rem; }
.disclaimer-card ul { padding-left: 1.2rem; }
.disclaimer-card li { margin-bottom: .4rem; }
.last-updated { color: rgba(224,242,254,.5); font-size: .85rem; text-align: right; margin-top: 2rem; border-top: 1px solid rgba(6,182,212,.2); padding-top: 1rem; }
.important-box { background: rgba(6,182,212,.08); border-left: 4px solid var(--primary); padding: 1.2rem 1.5rem; border-radius: 0 12px 12px 0; margin: 1.5rem 0; }
.important-box p { margin: 0; color: var(--text-light) !important; }
.important-box strong { color: var(--primary); }
.disclaimer-hero { padding: 100px 0 40px; }
.disclaimer-card { padding: 1.5rem; }

/* --- 子页面追加 --- */
/* 确保Bootstrap组件与暗色主题融合（覆盖白底） */
    .card, .card-body, .card-title, .card-text, .list-group-item {
      background: var(--card-bg);
      color: var(--text-light);
      border-color: var(--card-border);
    }
.accordion-item, .accordion-button {
      background: var(--card-bg);
      color: var(--text-light);
      border-color: var(--card-border);
    }
.accordion-button:not(.collapsed) {
      background: rgba(6, 182, 212, 0.15);
      color: var(--primary);
    }
/* 榜单专用数字徽标 */
    .rank-badge {
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--primary);
      text-shadow: 0 0 12px rgba(6, 182, 212, 0.5);
      min-width: 3.2rem;
    }
.rank-table {
      background: rgba(12, 10, 26, 0.7);
      border-radius: 16px;
      backdrop-filter: blur(4px);
      box-shadow: var(--shadow-cyber);
    }
.rank-table .row {
      border-bottom: 1px solid rgba(6, 182, 212, 0.15);
      padding: 0.9rem 0;
      margin: 0 1rem;
      align-items: center;
    }
.rank-table .row:last-child {
      border-bottom: none;
    }
.hash-tag {
      color: var(--accent);
      font-weight: 500;
      letter-spacing: 0.3px;
    }
.trend-up {
      color: #34d399;
    }
.trend-down {
      color: #f87171;
    }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.card-header { background:rgba(255,255,255,.04) !important; color:#e0f2fe !important; border-color:rgba(255,255,255,.12) !important; }
.table { color:#e0f2fe !important; border-color:rgba(255,255,255,.12) !important; --bs-table-bg:transparent !important; --bs-table-color:#e0f2fe !important; }
