:root {
            --main: #10b981;
            --accent: #fbbf24;
            --bg: #0a1410;
            --text: #ecfdf5;
            --card-bg: #13231c;
            --shadow: rgba(0, 0, 0, 0.7);
            --radius: 20px;
        }
        * { scroll-behavior: smooth; }
        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            line-height: 1.7;
            letter-spacing: 0.02em;
        }
        /* 滚动进度条 */
        #progressBar {
            position: fixed; top: 0; left: 0; height: 4px; width: 0%;
            background: linear-gradient(90deg, var(--main), var(--accent));
            z-index: 9999; border-radius: 2px; box-shadow: 0 0 12px var(--main);
        }
        /* 拟物厚重风格 */
        .neocard {
            background: linear-gradient(145deg, #1d332a, #0e1d17);
            border-radius: var(--radius);
            box-shadow: 0 16px 24px -8px rgba(0,0,0,0.8), 0 6px 0 0 #0b1a14, inset 0 1px 2px rgba(255,255,255,0.06);
            transition: transform 0.25s, box-shadow 0.25s;
            border: 1px solid rgba(16, 185, 129, 0.15);
        }
        .neocard:hover { transform: translateY(-6px); box-shadow: 0 24px 36px -10px rgba(0,0,0,0.9), 0 6px 0 0 #0a1813; }
        .badge-soft {
            background: rgba(16, 185, 129, 0.2);
            color: var(--main); font-weight: 600; border-radius: 30px; padding: 4px 12px;
        }
        /* 海报卡 */
        .movie-card {
            position: relative; border-radius: 18px; overflow: hidden;
            background: #0f2018; box-shadow: 0 12px 24px -10px black, 0 3px 0 0 #1e3a2e;
            transition: all 0.2s;
            border: 1px solid rgba(255,255,255,0.06);
        }
        .movie-card img { width: 100%; aspect-ratio: 2/3; object-fit: cover; display: block; background: #172e24; }
        .play-overlay {
            position: absolute; inset: 0; background: rgba(10,20,16,0.4);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; transition: 0.3s; backdrop-filter: blur(2px);
        }
        .movie-card:hover .play-overlay { opacity: 1; }
        .play-overlay i { font-size: 3.5rem; color: white; text-shadow: 0 4px 14px rgba(0,0,0,0.8); background: rgba(16,185,129,0.3); border-radius: 60px; padding: 20px; }
        .update-tag {
            position: absolute; top: 12px; left: 12px; background: var(--accent); color: #0a1410;
            font-size: 0.75rem; font-weight: 800; padding: 4px 12px; border-radius: 40px;
            box-shadow: 0 2px 8px black; letter-spacing: 0.5px;
        }
        .rating-badge {
            position: absolute; bottom: 12px; right: 12px; background: rgba(10,20,16,0.8);
            backdrop-filter: blur(4px); padding: 4px 10px; border-radius: 30px;
            font-weight: 700; color: var(--accent); font-size: 0.9rem; border: 1px solid var(--accent);
        }
        .card-title { font-weight: 700; }
        /* 区块标题 */
        .section-header {
            border-left: 8px solid var(--main); padding-left: 1.2rem; margin: 3rem 0 1.8rem;
            display: flex; align-items: center; gap: 12px;
        }
        .section-header h2 { font-weight: 800; font-size: 1.8rem; margin: 0; letter-spacing: -0.02em; }
        .section-header i { color: var(--accent); }
        /* 分类导航入口 */
        .category-pill {
            background: #12271f; padding: 12px 24px; border-radius: 50px; font-weight: 600;
            border: 1px solid #1f4a39; color: var(--text); box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }
        .category-pill:hover { background: #0f2c21; color: white; border-color: var(--main); }
        /* 步骤条 */
        .step-item { position: relative; }
        /* 杂志hero */
        .hero-mag {
            background: radial-gradient(circle at 70% 30%, #1e4d3c, #0d1f18);
            border-radius: 32px; padding: 3rem 2rem; box-shadow: inset 0 2px 10px rgba(255,255,255,0.05), 0 20px 30px -12px black;
            border: 1px solid rgba(16,185,129,0.4);
        }
        .hero-stats {
            font-size: 4.5rem; font-weight: 900; color: var(--accent); line-height: 1;
            text-shadow: 0 6px 16px rgba(0,0,0,0.6);
        }
        /* 卡片错落渐显 */
        .reveal {
            opacity: 0; transform: translateY(30px);
            transition: opacity 0.7s cubic-bezier(0.2,0.7,0.3,1), transform 0.7s cubic-bezier(0.2,0.7,0.3,1);
        }
        .reveal.show { opacity: 1; transform: translateY(0); }
        /* 榜单样式 */
        .rank-item {
            background: #10231b; padding: 14px 18px; border-radius: 14px; border-left: 5px solid var(--accent);
            box-shadow: 0 8px 14px -6px black;
        }
        /* 弹窗沉浸式 */
        .modal-mask {
            display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(5,10,8,0.6); backdrop-filter: blur(20px);
            align-items: center; justify-content: center;
        }
        .modal-card {
            background: #10211a; border: 1px solid var(--main); max-width: 700px; width: 90%;
            border-radius: 30px; padding: 2rem; box-shadow: 0 30px 50px rgba(0,0,0,0.9);
        }
        /* 导航 */
        .navbar-custom { background: rgba(10,20,16,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid #1f3e31; }
        .navbar-custom .nav-link { color: var(--text); font-weight: 500; margin: 0 8px; }
        .navbar-custom .navbar-brand { font-weight: 900; font-size: 1.5rem; color: white; }
        footer { border-top: 2px solid #1f3a2e; }
        /* 专题/心情卡片 */
        .theme-tag { background: #1b3228; border-radius: 50px; padding: 8px 16px; cursor: pointer; }

/* --- 子页面追加 --- */
/* 本页专属微调：确保卡片、列表等组件完全贴合深色主题 */
        .about-hero {
            background: linear-gradient(145deg, var(--card-bg) 0%, #0f1e17 100%);
            border: 1px solid rgba(16, 185, 129, 0.25);
            border-radius: var(--radius);
            padding: 3rem 2rem;
            margin-bottom: 3rem;
        }
.about-hero h1 {
            color: var(--main);
            font-weight: 800;
            letter-spacing: -0.02em;
        }
.about-hero .lead {
            color: var(--text);
            opacity: 0.9;
        }
.section-title {
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--main);
            padding-left: 1rem;
        }
.feature-card {
            background: var(--card-bg);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: var(--radius);
            padding: 1.75rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            height: 100%;
        }
.feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px var(--shadow);
        }
.feature-card i {
            color: var(--main);
            font-size: 2rem;
            margin-bottom: 1rem;
        }
.feature-card h3 {
            color: var(--text);
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
        }
.feature-card p {
            color: rgba(236, 253, 245, 0.75);
            font-size: 0.95rem;
            line-height: 1.6;
        }
.list-bullet {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 2rem;
            border: 1px solid rgba(251, 191, 36, 0.15);
        }
.list-bullet ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
.list-bullet li {
            padding: 0.65rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            color: var(--text);
            font-size: 0.95rem;
        }
.list-bullet li:last-child {
            border-bottom: none;
        }
.list-bullet li i {
            color: var(--accent);
            margin-top: 0.25rem;
            font-size: 0.9rem;
            width: 1.2rem;
            text-align: center;
        }
.quote-block {
            background: rgba(16, 185, 129, 0.06);
            border-left: 4px solid var(--main);
            padding: 1.5rem 2rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 2rem 0;
        }
.quote-block p {
            font-style: italic;
            color: var(--text);
            font-size: 1.05rem;
            margin-bottom: 0.5rem;
        }
.quote-block footer {
            color: var(--accent);
            font-weight: 500;
            font-size: 0.9rem;
        }
.navbar-custom .navbar-brand,
        .navbar-custom .nav-link {
            color: var(--text) !important;
        }
.navbar-custom .nav-link.active,
        .navbar-custom .nav-link:hover {
            color: var(--main) !important;
        }
.footer-links a {
            color: rgba(236, 253, 245, 0.7);
            text-decoration: none;
            margin-right: 1.5rem;
            transition: color 0.2s;
        }
.footer-links a:hover {
            color: var(--main);
        }
/* 确保bootstrap组件无白底 */
        .card, .card-body, .card-title, .card-text, .card-header, .card-footer,
        .form-control, .form-select, .list-group-item, .accordion-item, .accordion-button, .accordion-body {
            background: var(--card-bg) !important;
            color: var(--text) !important;
            border-color: rgba(16, 185, 129, 0.25) !important;
        }

/* --- 子页面追加 --- */
/* 保证Bootstrap组件与深色主题一致——但本页尽量不用组件类，仅用栅格/间距 */
    .step-item {
      background: var(--card-bg);
      border: 1px solid rgba(16, 185, 129, 0.25);
      border-radius: var(--radius);
      padding: 1.5rem;
      height: 100%;
      transition: transform 0.2s ease, border-color 0.2s;
    }
.step-item:hover {
      transform: translateY(-4px);
      border-color: var(--main);
    }
.step-number {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 0.5rem;
    }
.guide-section-title {
      color: var(--main);
      font-weight: 800;
      letter-spacing: -0.02em;
    }
.table-guide {
      width: 100%;
      color: var(--text);
      border-collapse: separate;
      border-spacing: 0 8px;
    }
.table-guide td {
      background: var(--card-bg);
      padding: 1rem 1.2rem;
      border-radius: 12px;
      vertical-align: top;
    }
.table-guide td:first-child {
      font-weight: 700;
      color: var(--accent);
      width: 30%;
      border-left: 3px solid var(--main);
    }
.faq-item {
      background: var(--card-bg);
      border-radius: var(--radius);
      padding: 1.2rem 1.5rem;
      margin-bottom: 1rem;
      border-left: 4px solid var(--main);
    }
.faq-question {
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.3rem;
    }
.faq-answer {
      color: rgba(236,253,245,0.75);
      font-size: 0.95rem;
    }
/* 避免Bootstrap默认白底 */
    .navbar, .navbar-collapse, .navbar-nav, .nav-link {
      background: transparent !important;
    }
.navbar-custom .nav-link.active {
      color: var(--main) !important;
      font-weight: 700;
    }

/* --- 子页面追加 --- */
/* 确保所有组件背景继承深色，防止白块 */
        .card, .card-body, .card-title, .card-text, .card-header, .card-footer,
        .accordion-item, .accordion-button, .accordion-body,
        .list-group-item, .modal-content, .modal-header, .modal-body {
            background-color: var(--card-bg) !important;
            color: var(--text) !important;
            border-color: var(--main) !important;
        }
.accordion-button:not(.collapsed) {
            background-color: rgba(16, 185, 129, 0.2) !important;
            color: var(--accent) !important;
        }
.accordion-button:focus {
            box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25) !important;
        }
h1, h2, h3 {
            color: var(--text);
            font-weight: 800;
            letter-spacing: -0.01em;
        }
.legal-list {
            list-style: none;
            padding-left: 0;
        }
.legal-list li {
            padding: .5rem 0 .5rem 2rem;
            position: relative;
            color: var(--text);
        }
.legal-list li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--main);
            position: absolute;
            left: 0;
            top: .5rem;
        }
.highlight-text {
            color: var(--accent);
            font-weight: 600;
        }
.bg-soft {
            background: rgba(16, 185, 129, 0.08);
            border-radius: var(--radius);
            padding: 1.5rem;
            border: 1px solid rgba(16, 185, 129, 0.2);
        }

/* --- 子页面追加 --- */
.rank-hero {
            padding: 80px 0 50px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(251, 191, 36, 0.08));
            border-radius: var(--radius);
            margin-bottom: 40px;
            text-align: center;
        }
.rank-hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 15px;
            letter-spacing: 1px;
        }
.rank-hero h1 span {
            color: var(--main);
        }
.rank-hero p {
            color: rgba(236, 253, 245, 0.75);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }
.rank-tabs {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
.rank-tab {
            padding: 10px 28px;
            border-radius: 50px;
            background: var(--card-bg);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: var(--text);
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
.rank-tab:hover, .rank-tab.active {
            background: var(--main);
            color: #fff;
            border-color: var(--main);
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        }
.rank-section {
            margin-bottom: 50px;
        }
.rank-section-title {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(16, 185, 129, 0.2);
        }
.rank-section-title i {
            font-size: 1.5rem;
            color: var(--main);
        }
.rank-section-title h2 {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text);
            margin: 0;
        }
.rank-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }
.rank-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px var(--shadow);
            border-color: rgba(16, 185, 129, 0.4);
        }
.rank-number {
            font-size: 2.2rem;
            font-weight: 900;
            color: rgba(16, 185, 129, 0.3);
            min-width: 60px;
            text-align: center;
            font-style: italic;
        }
.rank-item:nth-child(1) .rank-number {
            color: var(--accent);
            text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
        }
.rank-item:nth-child(2) .rank-number {
            color: #94a3b8;
        }
.rank-item:nth-child(3) .rank-number {
            color: #b45309;
        }
.rank-info {
            flex: 1;
        }
.rank-info h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 5px;
        }
.rank-info p {
            color: rgba(236, 253, 245, 0.6);
            font-size: 0.9rem;
            margin: 0;
        }
.rank-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 8px;
            font-size: 0.85rem;
            color: rgba(236, 253, 245, 0.5);
        }
.rank-meta i {
            color: var(--main);
            margin-right: 5px;
        }
.rank-badge {
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
.rank-badge.hot {
            background: rgba(251, 191, 36, 0.15);
            color: var(--accent);
        }
.rank-badge.new {
            background: rgba(16, 185, 129, 0.15);
            color: var(--main);
        }
.rank-badge.up {
            background: rgba(59, 130, 246, 0.15);
            color: #60a5fa;
        }
.rank-updated {
            text-align: center;
            color: rgba(236, 253, 245, 0.5);
            font-size: 0.85rem;
            margin-top: 30px;
            padding: 15px;
            background: var(--card-bg);
            border-radius: 10px;
        }
.rank-updated i {
            color: var(--main);
            margin-right: 8px;
        }
.rank-hero h1 {
                font-size: 2rem;
            }
.rank-number {
                font-size: 1.6rem;
                min-width: 40px;
            }
.rank-meta {
                flex-wrap: wrap;
                gap: 10px;
            }