:root {
      --primary: #10b981;
      --accent: #fbbf24;
      --bg: #0a1410;
      --text: #ecfdf5;
      --border: 2px solid var(--primary);
      --shadow: 6px 6px 0 var(--primary);
      --radius: 0px; /* 全直角 */
    }
    * { border-radius: var(--radius); }
    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Inter', '思源黑体', system-ui, -apple-system, sans-serif;
      line-height: 1.7;
    }
    h1, h2, h3, h4, .brand-font {
      font-family: '思源宋体', 'Songti SC', 'Times New Roman', serif;
      font-weight: 600;
      letter-spacing: 0.02em;
    }
    /* 打字机标题 */
    .typewriter h1 {
      display: inline-block;
      overflow: hidden;
      white-space: nowrap;
      border-right: 3px solid var(--accent);
      animation: typing 3.5s steps(30, end), blink 0.8s step-end infinite;
    }
    @keyframes typing { from { width: 0; } to { width: 100%; } }
    @keyframes blink { 50% { border-color: transparent; } }
    /* 卡片错落渐显 */
    .grid-item {
      opacity: 0;
      transform: translateY(30px);
      animation: riseIn 0.5s forwards;
    }
    @keyframes riseIn { to { opacity: 1; transform: translateY(0); } }
    /* hero视差 */
    .hero-parallax {
      background: linear-gradient(135deg, #0a1410, #102a1e);
      background-attachment: fixed;
      background-size: cover;
    }
    /* 硬朗卡片 */
    .movie-card {
      background: #11251b;
      border: 2px solid var(--primary);
      box-shadow: 4px 4px 0 var(--primary);
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
      position: relative;
    }
    .movie-card:hover {
      transform: scale(1.02) translateY(-6px);
      box-shadow: 8px 8px 0 var(--primary);
      border-color: var(--accent);
      z-index: 5;
    }
    .movie-card img {
      border-bottom: 2px solid var(--primary);
      width: 100%;
      height: auto;
      display: block;
    }
    .badge-quality {
      position: absolute;
      top: 8px;
      right: 8px;
      background: var(--bg);
      color: var(--accent);
      border: 1px solid var(--accent);
      padding: 2px 6px;
      font-size: 0.7rem;
      font-weight: bold;
      z-index: 3;
    }
    /* 区块标题 */
    .section-title {
      border-left: 8px solid var(--accent);
      padding-left: 15px;
      margin: 40px 0 25px;
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: 1px;
    }
    /* 直角按钮 */
    .btn-custom {
      background: var(--primary);
      color: var(--bg);
      border: 2px solid var(--text);
      box-shadow: 3px 3px 0 var(--accent);
      font-weight: 600;
    }
    .btn-custom:hover { background: var(--accent); color: var(--bg); }
    /* 分类入口直角块 */
    .category-tile {
      background: #0e1f18;
      border: 2px solid var(--primary);
      padding: 12px 0;
      text-align: center;
      font-weight: 600;
      transition: 0.1s;
      box-shadow: 3px 3px 0 #1a3a2b;
      color: var(--text);
    }
    .category-tile:hover { background: var(--primary); color: var(--bg); box-shadow: 5px 5px 0 var(--accent); }
    /* 手风琴自定义 */
    .accordion-button { background: #11251b; color: var(--text); border: 2px solid var(--primary); }
    .accordion-button:not(.collapsed) { background: var(--primary); color: var(--bg); }
    .accordion-item { background: transparent; border: 2px solid var(--primary); margin-bottom: 8px; }
    /* 排行榜硬朗 */
    .rank-list li { background: #10251c; border: 1px solid var(--primary); padding: 10px; margin-bottom: 8px; list-style: none; display: flex; justify-content: space-between; }
    /* FAQ */
    .faq-item { border: 2px solid var(--primary); padding: 15px; margin-bottom: 10px; }
    /* 友情链接占位 */
    .friend-links a { margin-right: 15px; color: var(--accent); }
    footer { border-top: 3px solid var(--primary); }
    /* 弹窗全屏沉浸 */
    .custom-modal {
      display: none;
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(10,20,16,0.9);
      backdrop-filter: blur(8px);
      z-index: 9999;
      justify-content: center;
      align-items: center;
    }
    .modal-content-box {
      max-width: 700px;
      background: #11251b;
      border: 3px solid var(--primary);
      padding: 25px;
      box-shadow: 12px 12px 0 var(--accent);
    }

/* --- 子页面追加 --- */
/* 排行榜专属样式 */
        .rank-section {
            padding: 80px 0;
        }
.rank-section:nth-child(even) {
            background: rgba(255, 255, 255, 0.02);
        }
.rank-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
            border-bottom: var(--border);
            padding-bottom: 20px;
        }
.rank-header h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
.rank-header .update-time {
            color: var(--accent);
            font-size: 0.9rem;
            font-weight: 500;
        }
.rank-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.rank-item {
            display: flex;
            align-items: center;
            padding: 16px 20px;
            margin-bottom: 12px;
            background: rgba(255, 255, 255, 0.05);
            border-left: 4px solid transparent;
            transition: all 0.3s ease;
            border-radius: 0;
        }
.rank-item:hover {
            border-left-color: var(--primary);
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(8px);
        }
.rank-number {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--accent);
            width: 70px;
            text-align: center;
            font-style: italic;
            text-shadow: 3px 3px 0 rgba(251, 191, 36, 0.2);
        }
.rank-number.top-1 {
            font-size: 2.4rem;
            color: var(--primary);
            text-shadow: 3px 3px 0 rgba(16, 185, 129, 0.3);
        }
.rank-number.top-2 {
            font-size: 2.1rem;
        }
.rank-number.top-3 {
            font-size: 1.9rem;
        }
.rank-info {
            flex: 1;
            padding: 0 20px;
        }
.rank-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
        }
.rank-meta {
            font-size: 0.85rem;
            color: rgba(236, 253, 245, 0.7);
        }
.rank-meta i {
            color: var(--accent);
            margin-right: 4px;
        }
.rank-score {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--accent);
            margin-right: 20px;
            min-width: 70px;
            text-align: right;
        }
.rank-trend {
            font-size: 0.8rem;
            padding: 4px 12px;
            border-radius: 0;
            font-weight: 600;
            letter-spacing: 0.5px;
            border: 1px solid var(--primary);
            color: var(--primary);
            background: transparent;
        }
.rank-trend.up {
            color: #10b981;
            border-color: #10b981;
        }
.rank-trend.down {
            color: #ef4444;
            border-color: #ef4444;
        }
.rank-trend.same {
            color: var(--accent);
            border-color: var(--accent);
        }
.rank-category-tabs {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
.rank-category-tabs a {
            padding: 10px 24px;
            border: 2px solid var(--primary);
            color: var(--text);
            font-weight: 600;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: transparent;
        }
.rank-category-tabs a:hover,
        .rank-category-tabs a.active {
            background: var(--primary);
            color: var(--bg);
            box-shadow: var(--shadow);
        }
.rank-note {
            margin-top: 40px;
            padding: 24px;
            background: rgba(255, 255, 255, 0.03);
            border-left: 4px solid var(--accent);
        }
.rank-note p {
            color: rgba(236, 253, 245, 0.8);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 0;
        }
.rank-note i {
            color: var(--accent);
            margin-right: 8px;
        }
.rank-section {
                padding: 60px 0;
            }
.rank-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
.rank-header h2 {
                font-size: 1.6rem;
            }
.rank-item {
                flex-wrap: wrap;
                padding: 14px 16px;
            }
.rank-number {
                width: 50px;
                font-size: 1.4rem;
            }
.rank-info {
                padding: 0 10px;
            }
.rank-score {
                font-size: 1.1rem;
                min-width: 50px;
                margin-right: 10px;
            }
.rank-trend {
                display: none;
            }
.rank-category-tabs {
                gap: 8px;
            }
.rank-category-tabs a {
                padding: 8px 16px;
                font-size: 0.85rem;
            }

/* --- 子页面追加 --- */
/* 本页专属微调，不影响站点全局 */
        .about-hero {
            padding: 4rem 0 2rem;
            border-bottom: var(--border);
        }
.about-section {
            padding: 3.5rem 0;
            border-bottom: 1px solid rgba(16,185,129,0.2);
        }
.about-section:last-of-type {
            border-bottom: none;
        }
.stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
.stat-item {
            background: rgba(16,185,129,0.08);
            padding: 1.5rem 1rem;
            text-align: center;
            border-left: 3px solid var(--primary);
        }
.stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1.2;
        }
.stat-label {
            color: var(--text);
            opacity: 0.8;
            margin-top: 0.3rem;
            font-size: 0.95rem;
        }
.principle-list {
            list-style: none;
            padding-left: 0;
        }
.principle-list li {
            padding-left: 2rem;
            position: relative;
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }
.principle-list li::before {
            content: "◆";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
        }
.about-quote {
            background: rgba(251,191,36,0.1);
            border-left: 4px solid var(--accent);
            padding: 1.5rem 2rem;
            margin: 2.5rem 0;
            font-style: italic;
            font-size: 1.15rem;
        }
.badge-about {
            display: inline-block;
            background: var(--primary);
            color: #0a1410;
            font-weight: 700;
            padding: 0.2rem 1rem;
            margin-right: 0.8rem;
            margin-bottom: 0.5rem;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

/* --- 子页面追加 --- */
/* 页面专属样式 */
        .privacy-hero {
            padding: 120px 0 60px;
            position: relative;
            background: var(--bg);
        }
.privacy-hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 15px;
            text-shadow: 2px 2px 0 rgba(16, 185, 129, 0.3);
        }
.privacy-hero .subtitle {
            color: var(--primary);
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 1px;
        }
.privacy-section {
            padding: 40px 0;
            border-bottom: 1px solid rgba(16, 185, 129, 0.2);
        }
.privacy-section:last-child {
            border-bottom: none;
        }
.privacy-section h2 {
            color: var(--primary);
            font-weight: 800;
            font-size: 1.6rem;
            margin-bottom: 20px;
            padding-left: 15px;
            border-left: 4px solid var(--primary);
        }
.privacy-section h3 {
            color: var(--text);
            font-weight: 600;
            font-size: 1.2rem;
            margin: 20px 0 12px;
        }
.privacy-section p {
            color: rgba(236, 253, 245, 0.8);
            line-height: 1.9;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
.privacy-section ul {
            color: rgba(236, 253, 245, 0.8);
            padding-left: 20px;
            margin-bottom: 15px;
        }
.privacy-section ul li {
            margin-bottom: 8px;
            line-height: 1.8;
            font-size: 0.95rem;
        }
.privacy-card {
            background: rgba(16, 185, 129, 0.05);
            border: 1px solid rgba(16, 185, 129, 0.3);
            padding: 25px;
            margin: 20px 0;
            border-radius: 0;
            box-shadow: 4px 4px 0 rgba(16, 185, 129, 0.1);
        }
.privacy-card h4 {
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
.privacy-card p {
            color: rgba(236, 253, 245, 0.85);
            margin-bottom: 10px;
        }
.privacy-card .icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
.btn-privacy {
            background: var(--primary);
            color: #0a1410;
            border: none;
            padding: 10px 25px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 3px 3px 0 rgba(16, 185, 129, 0.3);
        }
.btn-privacy:hover {
            transform: translate(2px, 2px);
            box-shadow: 1px 1px 0 rgba(16, 185, 129, 0.3);
            color: #0a1410;
            background: var(--accent);
        }
.contact-email {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px dashed var(--primary);
        }
.contact-email:hover {
            color: var(--accent);
            border-bottom-color: var(--accent);
        }
.last-updated {
            color: rgba(236, 253, 245, 0.5);
            font-size: 0.85rem;
            font-style: italic;
            margin-top: 30px;
            text-align: right;
        }
.privacy-hero h1 {
                font-size: 2rem;
            }
.privacy-hero {
                padding: 100px 0 40px;
            }
.privacy-section h2 {
                font-size: 1.3rem;
            }
/* Bootstrap 组件覆盖 */
        .card, .card-body {
            background: var(--bg);
            color: var(--text);
            border-color: var(--primary);
        }
.form-control {
            background: rgba(10, 20, 16, 0.8);
            color: var(--text);
            border-color: var(--primary);
        }
.form-control:focus {
            background: rgba(10, 20, 16, 0.9);
            color: var(--text);
            border-color: var(--accent);
        }
.form-control::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }
.nav-link {
            color: var(--text) !important;
        }
.nav-link:hover {
            color: var(--primary) !important;
        }
.nav-link.active {
            color: var(--primary) !important;
            font-weight: 700;
        }

/* --- 子页面追加 --- */
/* 本页专属样式 - 免责声明 */
        .disclaimer-page { padding: 60px 0; }
.disclaimer-card {
            background: var(--bg);
            border: var(--border);
            border-radius: var(--radius);
            padding: 35px 40px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            position: relative;
            transition: transform 0.3s ease;
        }
.disclaimer-card:hover {
            transform: translateY(-4px);
        }
.disclaimer-card h2 {
            color: var(--primary);
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 20px;
            border-left: 4px solid var(--accent);
            padding-left: 15px;
        }
.disclaimer-card p {
            color: var(--text);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 15px;
            opacity: 0.9;
        }
.disclaimer-card ul {
            color: var(--text);
            margin-left: 20px;
            margin-bottom: 15px;
        }
.disclaimer-card ul li {
            margin-bottom: 10px;
            line-height: 1.7;
        }
.disclaimer-card ul li::marker {
            color: var(--accent);
        }
.disclaimer-highlight {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid var(--primary);
            border-radius: var(--radius);
            padding: 20px 25px;
            margin: 20px 0;
            color: var(--text);
            font-size: 1rem;
            line-height: 1.8;
        }
.disclaimer-highlight i {
            color: var(--accent);
            margin-right: 10px;
        }
.disclaimer-date {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.95rem;
            margin-top: 20px;
            border-top: 1px solid rgba(16, 185, 129, 0.3);
            padding-top: 15px;
        }
.disclaimer-badge {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 3px 12px;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: var(--radius);
            margin-bottom: 15px;
        }
.disclaimer-page { padding: 30px 0; }
.disclaimer-card { padding: 25px 20px; }
.disclaimer-card h2 { font-size: 1.3rem; }
/* 覆盖 Bootstrap 组件样式 */
        .navbar { background: var(--bg) !important; border-bottom: 2px solid var(--primary); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(16, 185, 129, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important; }

/* --- 子页面追加 --- */
/* 本页专属微调：保持直角与荧光绿风格 */
        .sitemap-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.sitemap-list li {
            border-left: 3px solid var(--primary);
            padding-left: 1rem;
            margin-bottom: 1.2rem;
            transition: border-color .2s;
        }
.sitemap-list li:hover {
            border-left-color: var(--accent);
        }
.sitemap-list a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            border-bottom: 1px solid transparent;
            transition: border-color .2s, color .2s;
        }
.sitemap-list a:hover {
            color: var(--accent);
            border-bottom-color: var(--accent);
        }
.sitemap-list .desc {
            color: rgba(236, 253, 245, 0.6);
            font-size: 0.9rem;
            margin-top: 0.2rem;
        }
.sitemap-group {
            margin-bottom: 2.2rem;
        }
.sitemap-group h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent);
            border-bottom: 1px solid rgba(16, 185, 129, .4);
            padding-bottom: .4rem;
            margin-bottom: 1rem;
        }
.breadcrumb-link {
            color: var(--primary);
            font-weight: 500;
            text-decoration: none;
        }
.breadcrumb-link:hover {
            color: var(--accent);
        }
.navbar .nav-link.active {
            color: var(--accent) !important;
            font-weight: 600;
        }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.accordion-body { background:transparent !important; color:#ecfdf5 !important; }
.accordion-header { background:transparent !important; }
