/* 设计种子 8501 —— 酒红暖灰 */
        :root {
            --primary: #9f1239;
            --accent: #e11d48;
            --bg: #fafafa;
            --text: #3f0a1a;
            --border: #e7d8dd;
            --shadow: 0 6px 18px rgba(159, 18, 57, 0.06);
            --radius: 8px;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: 'Noto Sans SC', 'Inter', sans-serif;
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, .serif {
            font-family: 'Noto Serif SC', serif;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        /* 顶部阅读进度条 */
        #scrollProgress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            width: 0%;
            z-index: 9999;
            transition: width 0.1s ease-out;
        }

        /* 导航 */
        .navbar-rcomic {
            background: rgba(250, 250, 250, 0.92);
            backdrop-filter: blur(6px);
            border-bottom: 1px solid var(--border);
            padding: 12px 0;
        }

        .navbar-brand-r {
            font-family: 'Noto Serif SC', serif;
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--primary) !important;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
        }
        .navbar-brand-r i {
            color: var(--accent);
            margin-right: 6px;
            font-size: 2rem;
        }

        .nav-link-r {
            font-weight: 500;
            color: var(--text) !important;
            margin: 0 12px;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-link-r:hover {
            color: var(--primary) !important;
            border-bottom-color: var(--accent);
        }

        /* Hero 大数字 */
        .hero-stat {
            font-size: 4.2rem;
            font-weight: 800;
            font-family: 'Noto Serif SC', serif;
            color: var(--primary);
            line-height: 1.2;
        }

        .btn-accent {
            background: var(--accent);
            border: none;
            color: #fff;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--radius);
            box-shadow: 0 4px 12px rgba(225, 29, 72, 0.2);
            transition: 0.2s;
        }
        .btn-accent:hover {
            background: #be123c;
            color: white;
            transform: scale(1.02);
        }

        /* 卡片与区块 */
        .card-soft {
            background: white;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

        .divider-light {
            border-top: 1px solid var(--border);
            opacity: 0.6;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text);
            border-left: 6px solid var(--accent);
            padding-left: 16px;
            margin-bottom: 30px;
        }

        /* 步骤条 */
        .step-item {
            position: relative;
            padding-left: 34px;
        }
        .step-item::before {
            content: "●";
            position: absolute;
            left: 4px;
            color: var(--primary);
            font-size: 1.4rem;
        }

        /* 特色卡片 hover 播放按钮 */
        .comic-card {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
            transition: transform 0.2s;
        }
        .comic-card img {
            width: 100%;
            height: auto;
            display: block;
            background: #f0e9eb; /* 占位底色 */
        }
        .comic-card .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(63, 10, 26, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.25s;
        }
        .comic-card:hover .play-overlay {
            opacity: 1;
        }
        .play-overlay i {
            font-size: 3rem;
            color: white;
            background: var(--accent);
            border-radius: 50%;
            padding: 20px;
            box-shadow: 0 0 20px rgba(225, 29, 72, 0.7);
        }

        /* 滚动渐显 */
        .fade-up {
            opacity: 0;
            transform: translateY(25px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .fade-up.appeared {
            opacity: 1;
            transform: translateY(0);
        }

        /* 错落延迟 */
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }

        /* 表格样式 */
        .table-rcomic {
            background: white;
            border-radius: var(--radius);
            border: 1px solid var(--border);
        }
        .table-rcomic th {
            background: var(--primary);
            color: white;
            font-weight: 600;
            font-family: 'Noto Sans SC';
        }
        .table-rcomic td, .table-rcomic th {
            padding: 14px 12px;
        }

        footer {
            border-top: 1px solid var(--border);
            background: #fff;
        }

        .friend-links {
            background: #f7f1f3;
            border-radius: var(--radius);
            padding: 16px;
        }

        /* 手风琴 */
        .accordion-button:not(.collapsed) {
            background: #fceaeef0;
            color: var(--primary);
        }
        .accordion-button:focus {
            box-shadow: none;
        }

/* --- 子页面追加 --- */
.about-hero {
            padding: 80px 0 50px;
            background: linear-gradient(135deg, var(--bg) 0%, #fdf2f5 100%);
            border-bottom: 1px solid var(--border);
        }
.about-hero h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
        }
.about-hero .lead {
            font-size: 1.15rem;
            color: var(--text);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }
.about-section {
            padding: 60px 0;
        }
.about-section h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }
.about-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
.about-section p {
            color: var(--text);
            line-height: 1.9;
            font-size: 1.02rem;
            margin-bottom: 16px;
        }
.feature-list {
            list-style: none;
            padding: 0;
        }
.feature-list li {
            padding: 10px 0;
            border-bottom: 1px dashed var(--border);
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
.feature-list li:last-child {
            border-bottom: none;
        }
.feature-list i {
            color: var(--accent);
            margin-top: 5px;
            font-size: 1.1rem;
        }
.timeline {
            position: relative;
            padding-left: 30px;
        }
.timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--border);
        }
.timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 20px;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 6px;
            width: 16px;
            height: 16px;
            background: var(--accent);
            border-radius: 50%;
            border: 3px solid var(--bg);
            box-shadow: 0 0 0 2px var(--border);
        }
.timeline-item h4 {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 8px;
        }
.timeline-item p {
            margin-bottom: 0;
            font-size: 0.98rem;
        }
.stat-card {
            text-align: center;
            padding: 25px 15px;
            background: var(--card-bg, #fff);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
.stat-card:hover {
            transform: translateY(-5px);
        }
.stat-card .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent);
            display: block;
            margin-bottom: 8px;
        }
.stat-card .label {
            color: var(--text);
            font-size: 0.95rem;
        }
.value-box {
            background: rgba(159, 18, 57, 0.05);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
            margin-bottom: 20px;
        }
.value-box h4 {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.value-box h4 i {
            color: var(--accent);
        }
.value-box p {
            margin-bottom: 0;
            font-size: 0.98rem;
        }

/* --- 子页面追加 --- */
/* 本页微调 —— 基于站点CSS变量的扩展, 保证视觉一致 */
        .disclaimer-hero {
            background: linear-gradient(135deg, rgba(159,18,57,0.06) 0%, rgba(225,29,72,0.02) 100%);
            border-bottom: 1px solid var(--border);
            padding: 4rem 0 2.5rem;
        }
.disclaimer-hero h1 {
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.02em;
            font-size: 2.2rem;
        }
.disclaimer-hero .lead {
            color: #7a4b5c;
            font-weight: 400;
            max-width: 720px;
        }
.section-title-r {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.6rem;
            border-bottom: 2px solid var(--border);
            display: inline-block;
        }
.disclaimer-card {
            background: #fffdfd;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.8rem 1.8rem 1.6rem;
            box-shadow: var(--shadow);
            transition: transform 0.2s;
            margin-bottom: 2rem;
        }
.disclaimer-card:hover {
            transform: translateY(-2px);
        }
.disclaimer-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
.disclaimer-card h3 i {
            color: var(--accent);
            font-size: 1.2rem;
        }
.disclaimer-card p, .disclaimer-card li {
            color: var(--text);
            line-height: 1.7;
            font-size: 0.98rem;
        }
.disclaimer-card ul {
            padding-left: 1.2rem;
            list-style-type: none;
        }
.disclaimer-card ul li {
            position: relative;
            padding-left: 1.4rem;
            margin-bottom: 0.5rem;
        }
.disclaimer-card ul li::before {
            content: "🍀";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--accent);
            font-size: 0.9rem;
        }
.highlight-box {
            background: rgba(159, 18, 57, 0.03);
            border-left: 4px solid var(--accent);
            padding: 1.2rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
            color: var(--text);
            font-weight: 500;
        }
.friend-links a {
            color: var(--primary);
            text-decoration: none;
            margin-right: 1.2rem;
            font-weight: 500;
        }
.friend-links a:hover {
            color: var(--accent);
        }
/* 覆盖 bootstrap 组件 (即使未使用, 也保持安全) */
        .card, .card-body { background: transparent; color: var(--text); border-color: var(--border); }
.navbar { background: var(--bg); }
.navbar-toggler { border-color: var(--border); }

/* --- 子页面追加 --- */
/* 排行榜页面专属样式 */
        .ranking-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            padding: 60px 0;
            text-align: center;
            color: #fff;
            border-radius: var(--radius);
            margin-bottom: 40px;
        }
.ranking-hero h1 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 15px;
            color: #fff;
        }
.ranking-hero p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }
.ranking-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            backdrop-filter: blur(5px);
        }
.ranking-card {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
            margin-bottom: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: var(--shadow);
        }
.ranking-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(159, 18, 57, 0.12);
        }
.ranking-number {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary);
            font-style: italic;
            margin-right: 15px;
            min-width: 50px;
        }
.ranking-content {
            flex: 1;
        }
.ranking-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }
.ranking-content .genre-tag {
            display: inline-block;
            background: rgba(159, 18, 57, 0.08);
            color: var(--primary);
            padding: 3px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 8px;
            margin-bottom: 8px;
        }
.ranking-meta {
            color: #888;
            font-size: 0.9rem;
            margin-top: 10px;
        }
.ranking-meta i {
            margin-right: 5px;
            color: var(--accent);
        }
.ranking-stats {
            display: flex;
            gap: 20px;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid var(--border);
        }
.ranking-stat {
            font-size: 0.9rem;
            color: #666;
        }
.ranking-stat i {
            margin-right: 5px;
            color: var(--primary);
        }
.trend-up {
            color: #16a34a;
            font-weight: 600;
        }
.trend-down {
            color: #dc2626;
            font-weight: 600;
        }
.trend-stable {
            color: #888;
            font-weight: 600;
        }
.section-label {
            color: var(--primary);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
.ranking-section-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
.ranking-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
.editor-pick {
            background: linear-gradient(135deg, rgba(159, 18, 57, 0.05) 0%, rgba(225, 29, 72, 0.05) 100%);
            border: 2px solid var(--accent);
            position: relative;
        }
.editor-pick-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: var(--accent);
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            box-shadow: 0 4px 10px rgba(225, 29, 72, 0.3);
        }
.ranking-nav {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 15px;
            margin-bottom: 30px;
            position: sticky;
            top: 80px;
            z-index: 100;
        }
.ranking-nav a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
.ranking-nav a:hover {
            background: rgba(159, 18, 57, 0.1);
            color: var(--primary);
        }
.ranking-nav a.active {
            background: var(--primary);
            color: #fff;
        }
.ranking-hero h1 {
                font-size: 2rem;
            }
.ranking-card {
                padding: 15px;
            }
.ranking-number {
                font-size: 1.5rem;
                min-width: 40px;
            }
.ranking-content h3 {
                font-size: 1.1rem;
            }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.table { color:#3f0a1a !important; border-color:rgba(0,0,0,.12) !important; --bs-table-bg:transparent !important; --bs-table-color:#3f0a1a !important; }
.accordion-item { background:rgba(0,0,0,.03) !important; color:#3f0a1a !important; border-color:rgba(0,0,0,.12) !important; }
.accordion-body { background:transparent !important; color:#3f0a1a !important; }
.accordion-header { background:transparent !important; }
