:root {
            --primary: #2563eb;
            --accent: #06b6d4;
            --bg: #f8fafc;
            --text: #0f172a;
            --white: #ffffff;
            --shadow-sm: 0 4px 12px rgba(37, 99, 235, 0.12);
            --shadow-hover: 0 16px 32px rgba(6, 182, 212, 0.25);
            --radius-lg: 24px;
            --radius-md: 16px;
        }
        * { font-family: 'Inter', system-ui, -apple-system, sans-serif; }
        body {
            background-color: var(--bg);
            color: var(--text);
            background-image: radial-gradient(circle at 10% 20%, rgba(6, 182, 212, 0.08), transparent 30%),
                              radial-gradient(circle at 90% 70%, rgba(37, 99, 235, 0.08), transparent 35%);
            background-attachment: fixed;
        }
        /* 拟物厚重感 + 投影 */
        .neo-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(37, 99, 235, 0.06);
            background-image: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
        }
        .neo-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        .btn-911 {
            background: linear-gradient(145deg, var(--primary), #1d4ed8);
            color: #fff;
            border: none;
            box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
            font-weight: 600;
            border-radius: 60px;
            padding: 10px 26px;
            transition: all 0.2s;
        }
        .btn-911:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 24px rgba(37, 99, 235, 0.4);
            background: linear-gradient(145deg, var(--accent), #0891b2);
        }
        /* 渐变标题 */
        .gradient-text {
            background: linear-gradient(120deg, #2563eb, #06b6d4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        /* 小标题手写/圆体感 */
        .display-font {
            font-family: 'Trebuchet MS', 'Segoe UI', 'Comic Sans MS', cursive, sans-serif;
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        /* 导航折叠 */
        .navbar-911 {
            background: rgba(248, 250, 252, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(37, 99, 235, 0.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }
        .nav-link-custom {
            font-weight: 600;
            color: var(--text) !important;
            margin: 0 8px;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-link-custom:hover {
            border-bottom-color: var(--accent);
            color: var(--primary) !important;
        }
        /* 浮动光斑 */
        .blob {
            position: absolute;
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(6,182,212,0.2), transparent 70%);
            border-radius: 50%;
            filter: blur(30px);
            z-index: -1;
            animation: float 8s infinite alternate;
        }
        @keyframes float {
            0% { transform: translate(0, 0); }
            100% { transform: translate(30px, -30px); }
        }
        .hero-glow {
            position: relative;
        }
        /* 滚动显现动画 */
        .scroll-fade {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1);
        }
        .scroll-fade.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        /* 回到顶部 */
        #backToTop {
            position: fixed; bottom: 30px; right: 30px;
            width: 48px; height: 48px;
            border-radius: 50%;
            background: linear-gradient(145deg, var(--primary), var(--accent));
            color: white; border: none;
            box-shadow: 0 6px 16px rgba(37,99,235,0.4);
            display: none; z-index: 99;
            font-size: 20px;
        }
        /* 表格样式拟物 */
        .comparison-table td, .comparison-table th {
            padding: 14px 12px;
            border-bottom: 1px solid #e2e8f0;
            background: rgba(255,255,255,0.7);
        }
        .comparison-table th {
            background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
            font-weight: 700;
            border-radius: 12px 12px 0 0;
        }
        .faq-accordion .accordion-button {
            background: var(--white);
            font-weight: 600;
            box-shadow: none;
            border-radius: 12px !important;
            margin: 8px 0;
        }
        .faq-accordion .accordion-button:not(.collapsed) {
            background: #eff6ff;
            color: var(--primary);
        }
        footer a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            margin: 0 6px;
        }
        .friend-links {
            background: white;
            border-radius: 40px;
            padding: 14px 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid #dbeafe;
        }

/* --- 子页面追加 --- */
/* 确保所有卡片、列表在亮色主题下也是同色系 */
        .card, .list-group-item, .accordion-item, .dropdown-menu {
            background: var(--white);
            color: var(--text);
            border: 1px solid rgba(37, 99, 235, 0.15);
            box-shadow: var(--shadow-sm);
        }
.card-title, .card-text, .list-group-item {
            color: var(--text);
        }
.badge-911 {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 50px;
            font-size: .75rem;
            letter-spacing: .02em;
        }
.genre-tag {
            background: rgba(37, 99, 235, 0.08);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 30px;
            font-size: .8rem;
            font-weight: 500;
            display: inline-block;
            margin-right: 6px;
            margin-bottom: 6px;
        }
.hover-lift:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
.transition-base {
            transition: transform .2s ease, box-shadow .2s ease;
        }
/* 目录卡片间距 */
        .comic-grid-card {
            height: 100%;
        }
.filter-bar {
            background: rgba(37, 99, 235, 0.04);
            border-radius: 60px;
            padding: 8px 18px;
            display: inline-flex;
            flex-wrap: wrap;
            gap: 6px;
        }
.filter-bar a {
            color: var(--text);
            text-decoration: none;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: .85rem;
            font-weight: 500;
        }
.filter-bar a.active {
            background: var(--primary);
            color: #fff;
        }
.section-title-911 {
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
/* 小标题带西瓜影院网站在线观看特色 */
        .sub-title-911 {
            font-weight: 700;
            color: var(--text);
            border-left: 5px solid var(--accent);
            padding-left: 14px;
            margin-top: 2.2rem;
            margin-bottom: 1.2rem;
        }

/* --- 子页面追加 --- */
/* 确保 Bootstrap 组件不会破坏本站深色/浅色风格 —— 这里统一覆盖 */
        .card, .card-body, .card-title, .card-text, .card-header, .card-footer {
            background: var(--white);
            color: var(--text);
            border-color: rgba(37, 99, 235, 0.15);
        }
.form-control, .form-select {
            background: var(--white);
            color: var(--text);
            border: 1px solid rgba(37, 99, 235, 0.25);
        }
.accordion-item, .accordion-button {
            background: var(--white);
            color: var(--text);
            border-color: rgba(37, 99, 235, 0.15);
        }
.nav-link-custom.active {
            color: var(--primary) !important;
            font-weight: 700;
        }
/* 本页微调 */
        .about-hero {
            padding: 3rem 0 1rem;
        }
.about-section-title {
            margin-bottom: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }
.about-card {
            transition: transform .2s, box-shadow .2s;
            height: 100%;
        }
.about-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
.icon-badge {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary);
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }
.timeline-item {
            border-left: 3px solid var(--primary);
            padding-left: 1.5rem;
            padding-bottom: 2rem;
            position: relative;
        }
.timeline-item::before {
            content: "";
            width: 14px;
            height: 14px;
            background: var(--accent);
            border-radius: 50%;
            position: absolute;
            left: -9px;
            top: 4px;
            border: 3px solid var(--white);
            box-shadow: 0 0 0 2px var(--primary);
        }
.feature-list i {
            color: var(--primary);
            margin-right: 8px;
            width: 20px;
        }
.stat-number {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
            line-height: 1.2;
        }
.footer-bg {
            background: #0b1526;
            color: rgba(255,255,255,0.8);
        }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .disclaimer-hero {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
            border-radius: var(--radius-lg);
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
            margin-bottom: 50px;
        }
.disclaimer-hero .blob {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.15;
            pointer-events: none;
        }
.disclaimer-hero .blob-1 {
            background: var(--primary);
            top: -80px;
            right: -60px;
        }
.disclaimer-hero .blob-2 {
            background: var(--accent);
            bottom: -100px;
            left: -40px;
        }
.disclaimer-content {
            max-width: 900px;
            margin: 0 auto;
        }
.disclaimer-section {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 35px 40px;
            margin-bottom: 30px;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--primary);
            transition: box-shadow 0.3s ease;
        }
.disclaimer-section:hover {
            box-shadow: var(--shadow-hover);
        }
.disclaimer-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.disclaimer-section h2 i {
            color: var(--primary);
            font-size: 1.3rem;
        }
.disclaimer-section p {
            color: #475569;
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
.disclaimer-section ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
.disclaimer-section ul li {
            color: #475569;
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 8px;
            position: relative;
            padding-left: 10px;
        }
.disclaimer-section ul li::before {
            content: "▸";
            position: absolute;
            left: -10px;
            color: var(--accent);
            font-weight: 700;
        }
.disclaimer-highlight {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(6, 182, 212, 0.05));
            border-radius: var(--radius-md);
            padding: 25px 30px;
            border: 1px solid rgba(37, 99, 235, 0.15);
            margin: 20px 0;
        }
.disclaimer-highlight strong {
            color: var(--primary);
        }
.disclaimer-date {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-bottom: 20px;
        }
.disclaimer-hero {
                padding: 40px 20px;
            }
.disclaimer-section {
                padding: 25px 20px;
            }
.disclaimer-section h2 {
                font-size: 1.2rem;
            }

/* --- 子页面追加 --- */
/* 排行榜卡片覆盖 bootstrap 默认白底黑字 */
        .rank-card, .rank-card .card-body {
            background: var(--bg);
            color: var(--text);
            border: 1px solid rgba(37, 99, 235, 0.15);
            border-radius: var(--radius-md);
            transition: transform .2s ease, box-shadow .2s ease;
        }
.rank-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
.rank-badge {
            background: var(--primary);
            color: white;
            font-weight: 700;
            min-width: 2.2rem;
            display: inline-block;
            text-align: center;
            border-radius: 12px;
            padding: .2rem .5rem;
            font-size: 1.1rem;
        }
.rank-badge.top-1 { background: #f59e0b; }
.rank-badge.top-2 { background: #94a3b8; }
.rank-badge.top-3 { background: #b45309; }
.rank-genre {
            background: rgba(6, 182, 212, 0.12);
            color: var(--accent);
            padding: .2rem .8rem;
            border-radius: 20px;
            font-size: .8rem;
            font-weight: 500;
        }
.rank-table {
            background: var(--bg);
            border-radius: var(--radius-md);
        }
.rank-table .table-row {
            display: flex;
            align-items: center;
            padding: .9rem 1.2rem;
            border-bottom: 1px solid rgba(37, 99, 235, 0.08);
            transition: background .15s;
        }
.rank-table .table-row:last-child { border-bottom: none; }
.rank-table .table-row:hover { background: rgba(37, 99, 235, 0.04); }
.rank-table .rank-position {
            width: 3rem;
            font-weight: 800;
            color: var(--primary);
        }
.rank-table .rank-title {
            flex: 1;
            font-weight: 600;
            color: var(--text);
        }
.rank-table .rank-score {
            color: var(--accent);
            font-weight: 700;
        }
.rank-table .rank-trend {
            width: 4rem;
            text-align: right;
            color: var(--text);
            opacity: .8;
        }
.section-title-911 .highlight {
            color: var(--primary);
        }
.friend-links a {
            color: var(--primary);
            text-decoration: none;
            margin-right: 1.2rem;
        }
.friend-links a:hover { text-decoration: underline; }
/* 导航高亮当前页 */
        .navbar-911 .nav-link-custom.active {
            color: var(--primary) !important;
            font-weight: 600;
        }

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