:root {
        --primary: #f97316;
        --accent: #facc15;
        --bg-dark: #1a1410;
        --text-light: #fff7ed;
        --card-radius: 20px;
        --shadow-soft: 0 8px 30px rgba(0,0,0,0.3);
        --shadow-hover: 0 16px 40px rgba(249,115,22,0.2);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
        background: var(--bg-dark);
        color: var(--text-light);
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        overflow-x: hidden;
    }
    h1, h2, h3, h4, h5, h6 { font-weight: 800; }
    a { text-decoration: none; color: inherit; }

    /* 导航栏 */
    .navbar-custom {
        background: rgba(26, 20, 16, 0.85);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 247, 237, 0.08);
        padding: 12px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .navbar-brand {
        font-size: 1.6rem;
        font-weight: 900;
        color: var(--primary) !important;
        letter-spacing: -0.5px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .navbar-brand i { color: var(--accent); }
    .nav-link-custom {
        color: var(--text-light) !important;
        font-weight: 500;
        padding: 8px 16px !important;
        border-radius: 30px;
        transition: all 0.3s;
        font-size: 0.95rem;
    }
    .nav-link-custom:hover {
        background: rgba(249, 115, 22, 0.15);
        color: var(--primary) !important;
    }
    .nav-cta {
        background: var(--primary);
        color: #fff !important;
        border-radius: 30px;
        padding: 8px 20px !important;
        font-weight: 600;
        transition: all 0.3s;
    }
    .nav-cta:hover { background: #ea580c; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4); }

    /* Hero Banner */
    .hero-section {
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        background: linear-gradient(135deg, #1a1410 0%, #2d1f14 50%, #1a1410 100%);
        overflow: hidden;
        padding: 80px 20px;
    }
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: radial-gradient(circle at 70% 30%, rgba(249, 115, 22, 0.25) 0%, transparent 50%),
                    radial-gradient(circle at 30% 70%, rgba(250, 204, 21, 0.15) 0%, transparent 40%);
        z-index: 1;
    }
    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
    }
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        font-weight: 900;
        line-height: 1.1;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 20px;
    }
    .hero-subtitle {
        font-size: 1.3rem;
        font-weight: 300;
        color: rgba(255, 247, 237, 0.8);
        margin-bottom: 35px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btn-group { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
    .btn-hero-primary {
        background: var(--primary);
        color: #fff;
        border: none;
        padding: 14px 32px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s;
        box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    }
    .btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5); }
    .btn-hero-outline {
        background: transparent;
        color: var(--text-light);
        border: 2px solid rgba(255, 247, 237, 0.3);
        padding: 12px 30px;
        font-size: 1.1rem;
        font-weight: 500;
        border-radius: 50px;
        transition: all 0.3s;
    }
    .btn-hero-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }

    /* 区块通用 */
    .section-wrapper { padding: 80px 0; }
    .section-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 15px;
    }
    .section-title {
        font-size: 2.2rem;
        font-weight: 900;
        position: relative;
        display: inline-block;
    }
    .section-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 50%;
        height: 4px;
        background: var(--primary);
        border-radius: 4px;
    }
    .section-subtitle { color: rgba(255, 247, 237, 0.6); font-weight: 300; }

    /* 顶部榜单 */
    .top-list-section { background: rgba(255, 247, 237, 0.02); border-radius: 30px; padding: 40px; margin-bottom: 60px; }
    .rank-item {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 15px;
        border-radius: 16px;
        transition: all 0.3s;
        background: rgba(255, 247, 237, 0.03);
        margin-bottom: 10px;
    }
    .rank-item:hover { background: rgba(249, 115, 22, 0.1); transform: translateX(8px); }
    .rank-number {
        font-size: 2rem;
        font-weight: 900;
        color: var(--primary);
        min-width: 60px;
        text-align: center;
        font-style: italic;
    }
    .rank-info { flex: 1; }
    .rank-title { font-weight: 700; font-size: 1.1rem; }
    .rank-meta { color: rgba(255, 247, 237, 0.6); font-size: 0.9rem; }
    .rank-score {
        background: var(--accent);
        color: #1a1410;
        padding: 4px 12px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 0.9rem;
    }
    .stat-number {
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--primary);
    }
    .stat-label { color: rgba(255, 247, 237, 0.6); font-weight: 500; }

    /* 海报卡片 */
    .poster-card {
        border-radius: var(--card-radius);
        overflow: hidden;
        background: rgba(255, 247, 237, 0.05);
        border: 1px solid rgba(255, 247, 237, 0.08);
        transition: all 0.4s ease;
        position: relative;
        cursor: pointer;
        aspect-ratio: 2/3;
    }
    .poster-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: var(--shadow-hover);
        border-color: var(--primary);
    }
    .poster-img-wrapper {
        position: relative;
        overflow: hidden;
        aspect-ratio: 2/3;
    }
    .poster-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .poster-card:hover .poster-img { transform: scale(1.1); }
    .poster-overlay {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(26, 20, 16, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.4s;
    }
    .poster-card:hover .poster-overlay { opacity: 1; }
    .play-btn {
        width: 60px;
        height: 60px;
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: #fff;
        box-shadow: 0 4px 20px rgba(249, 115, 22, 0.5);
        transition: all 0.3s;
    }
    .poster-card:hover .play-btn { transform: scale(1.1); }
    .poster-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: var(--primary);
        color: #fff;
        padding: 4px 10px;
        border-radius: 12px;
        font-size: 0.75rem;
        font-weight: 700;
        z-index: 2;
    }
    .poster-badge-4k { background: var(--accent); color: #1a1410; }
    .poster-info {
        padding: 15px;
        text-align: center;
    }
    .poster-title {
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .poster-meta { font-size: 0.8rem; color: rgba(255, 247, 237, 0.6); }
    .poster-rating {
        display: inline-block;
        background: rgba(250, 204, 21, 0.2);
        color: var(--accent);
        padding: 2px 10px;
        border-radius: 10px;
        font-weight: 700;
        font-size: 0.85rem;
        margin-top: 6px;
    }

    /* 翻转卡片详情 */
    .flip-card {
        position: relative;
        perspective: 1500px;
    }
    .flip-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 0.6s;
        transform-style: preserve-3d;
    }
    .flip-card.flipped .flip-inner { transform: rotateY(180deg); }
    .flip-front, .flip-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border-radius: var(--card-radius);
        overflow: hidden;
    }
    .flip-back {
        background: rgba(255, 247, 237, 0.95);
        color: #1a1410;
        transform: rotateY(180deg);
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 247, 237, 0.2);
    }
    .flip-back h5 { color: var(--primary); margin-bottom: 10px; font-weight: 800; }
    .flip-back p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 8px; }
    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background: var(--primary);
        color: #fff;
        border: none;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        font-size: 0.9rem;
        z-index: 2;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* 分类筛选 */
    .category-filter {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    .filter-btn {
        background: rgba(255, 247, 237, 0.08);
        border: 1px solid rgba(255, 247, 237, 0.15);
        padding: 8px 20px;
        border-radius: 30px;
        font-weight: 500;
        font-size: 0.9rem;
        color: var(--text-light);
        transition: all 0.3s;
        cursor: pointer;
    }
    .filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); }
    .filter-btn i { margin-right: 5px; }

    /* 手风琴 */
    .accordion-custom .accordion-item {
        background: rgba(255, 247, 237, 0.03);
        border: 1px solid rgba(255, 247, 237, 0.08);
        border-radius: 16px !important;
        margin-bottom: 15px;
        overflow: hidden;
    }
    .accordion-custom .accordion-button {
        background: rgba(255, 247, 237, 0.05);
        color: var(--text-light);
        font-weight: 600;
        font-size: 1.05rem;
        padding: 20px 25px;
        box-shadow: none;
        border: none;
    }
    .accordion-custom .accordion-button:not(.collapsed) {
        background: rgba(249, 115, 22, 0.15);
        color: var(--primary);
    }
    .accordion-custom .accordion-button::after {
        filter: invert(1);
    }
    .accordion-custom .accordion-body {
        padding: 20px 25px;
        color: rgba(255, 247, 237, 0.8);
        line-height: 1.8;
        font-size: 0.95rem;
    }

    /* 预告专区 */
    .trailer-card {
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        background: rgba(255, 247, 237, 0.05);
        border: 1px solid rgba(255, 247, 237, 0.08);
        transition: all 0.4s;
    }
    .trailer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
    .trailer-thumb {
        position: relative;
        aspect-ratio: 16/9;
        overflow: hidden;
    }
    .trailer-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .trailer-card:hover .trailer-thumb img { transform: scale(1.08); }
    .trailer-play {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: 50px; height: 50px;
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: #fff;
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    }
    .trailer-info { padding: 15px; }
    .trailer-title { font-weight: 600; font-size: 0.95rem; }
    .trailer-desc { color: rgba(255, 247, 237, 0.6); font-size: 0.8rem; }

    /* 相关推荐 & 心情选片 */
    .mood-tag {
        background: rgba(255, 247, 237, 0.08);
        border: 1px solid rgba(255, 247, 237, 0.15);
        padding: 10px 25px;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        display: inline-block;
        margin: 5px;
        font-size: 0.9rem;
    }
    .mood-tag:hover, .mood-tag.active { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
    .mood-tag i { margin-right: 6px; }

    /* 友链 */
    .friend-links {
        padding: 60px 0;
        background: rgba(255, 247, 237, 0.02);
        border-top: 1px solid rgba(255, 247, 237, 0.05);
        border-bottom: 1px solid rgba(255, 247, 237, 0.05);
    }
    .friend-links h3 { font-size: 1.5rem; margin-bottom: 20px; color: var(--text-light); }
    .friend-link-item {
        display: inline-block;
        margin: 8px 12px;
        color: rgba(255, 247, 237, 0.6);
        transition: all 0.3s;
        font-size: 0.95rem;
    }
    .friend-link-item:hover { color: var(--primary); transform: translateX(5px); }

    /* 页脚 */
    .footer-custom {
        padding: 50px 0 30px;
        background: #0f0b08;
        border-top: 1px solid rgba(255, 247, 237, 0.05);
    }
    .footer-title { font-weight: 800; color: var(--primary); font-size: 1.4rem; margin-bottom: 20px; }
    .footer-link {
        display: block;
        color: rgba(255, 247, 237, 0.6);
        margin-bottom: 8px;
        font-size: 0.9rem;
        transition: all 0.3s;
    }
    .footer-link:hover { color: var(--primary); padding-left: 5px; }
    .footer-copyright {
        text-align: center;
        color: rgba(255, 247, 237, 0.4);
        padding-top: 30px;
        border-top: 1px solid rgba(255, 247, 237, 0.05);
        font-size: 0.85rem;
    }

    /* 滚动动效 */
    .count-up {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.8s ease;
    }
    .count-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* 响应式 */
    @media (max-width: 768px) {
        .section-wrapper { padding: 50px 0; }
        .section-title { font-size: 1.6rem; }
        .top-list-section { padding: 25px; }
        .hero-section { min-height: 60vh; padding: 60px 20px; }
        .hero-title { font-size: 2rem; }
        .hero-subtitle { font-size: 1.1rem; }
        .navbar-brand { font-size: 1.3rem; }
        .poster-info { padding: 10px; }
        .poster-title { font-size: 0.9rem; }
    }

    /* 滚动条美化 */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--bg-dark); }
    ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

    .glass-effect {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

/* --- 子页面追加 --- */
/* 页面专属微调 —— 覆盖Bootstrap可能带来的白底 */
        .card, .card-body, .card-title, .card-text {
            background: var(--card-bg, #241d18);
            color: var(--text-light);
            border-color: var(--border-color, #3b2f27);
        }
.form-control, .form-select {
            background: rgba(0,0,0,.35);
            color: var(--text-light);
            border-color: var(--border-color, #3b2f27);
        }
.form-control::placeholder {
            color: rgba(255,255,255,.45);
        }
/* 确保所有区块使用深色背景 */
        body {
            background: var(--bg-dark);
            color: var(--text-light);
        }
.about-section {
            padding: 60px 0;
        }
.about-heading {
            margin-bottom: 40px;
        }
.about-card {
            background: #241d18;
            border-radius: var(--card-radius);
            padding: 30px;
            height: 100%;
            box-shadow: var(--shadow-soft);
            transition: transform .2s ease, box-shadow .2s ease;
            border: 1px solid #3b2f27;
        }
.about-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
.about-card i {
            color: var(--primary);
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
.about-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-light);
        }
.about-card p {
            color: rgba(255,247,237,.8);
            line-height: 1.7;
        }
.highlight-text {
            color: var(--primary);
            font-weight: 600;
        }
.sub-heading {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 15px;
            color: var(--text-light);
        }
.team-note {
            background: #1e1814;
            border-left: 4px solid var(--primary);
            padding: 20px 25px;
            border-radius: 8px;
            margin-top: 40px;
            color: rgba(255,247,237,.75);
        }
.nav-link-custom.active {
            color: var(--primary) !important;
            font-weight: 600;
        }
/* 页脚样式保持一致 */
        .footer-links a {
            color: rgba(255,247,237,.6);
            text-decoration: none;
            margin: 0 10px;
            transition: color .2s;
        }
.footer-links a:hover {
            color: var(--primary);
        }
.footer-bottom {
            border-top: 1px solid #2a211c;
            padding-top: 20px;
            margin-top: 40px;
            color: rgba(255,247,237,.4);
        }

/* --- 子页面追加 --- */
/* 本页专属微调 —— 沿用首页变量，仅针对本页布局做少量补充 */
        .movie-grid-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(249, 115, 22, 0.15);
            border-radius: var(--card-radius);
            transition: transform .3s, box-shadow .3s;
            overflow: hidden;
            height: 100%;
            backdrop-filter: blur(2px);
        }
.movie-grid-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(249, 115, 22, 0.4);
        }
.movie-grid-poster {
            width: 100%;
            aspect-ratio: 2 / 3;
            object-fit: cover;
            background: #2a2118;
            display: block;
        }
.movie-grid-info {
            padding: 1rem 1rem 1.2rem;
        }
.movie-grid-title {
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: .3rem;
            color: var(--text-light);
            letter-spacing: .2px;
        }
.movie-grid-meta {
            font-size: .8rem;
            color: rgba(255, 247, 237, .6);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
.badge-cat {
            background: rgba(249, 115, 22, .15);
            color: var(--accent);
            padding: .2rem .7rem;
            border-radius: 30px;
            font-size: .7rem;
            font-weight: 600;
            border: 1px solid rgba(249, 115, 22, .25);
        }
.page-hero-mini {
            padding: 3.5rem 0 2rem;
            background: radial-gradient(circle at 70% 20%, rgba(249, 115, 22, .1), transparent 50%);
        }
.filter-pill {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(249, 115, 22, .25);
            color: var(--text-light);
            border-radius: 50rem;
            padding: .4rem 1.2rem;
            font-size: .85rem;
            font-weight: 500;
            transition: all .2s;
        }
.filter-pill:hover, .filter-pill.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #1a1410;
            font-weight: 700;
        }
.section-more-title {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
.more-divider {
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 4px;
            margin: .5rem 0 1.5rem;
        }
/* 覆盖bootstrap卡片（如意外使用） */
        .card, .card-body { background: transparent; color: var(--text-light); border-color: rgba(249,115,22,.2); }
.form-control { background: rgba(0,0,0,.3); color: var(--text-light); border-color: rgba(249,115,22,.3); }

/* --- 子页面追加 --- */
/* 动作片专区特有增强 */
        .action-hero {
            background: linear-gradient(135deg, #1a1410 0%, #2d1f14 100%);
            border-bottom: 2px solid var(--primary);
        }
.action-badge {
            background: rgba(249, 115, 22, 0.2);
            color: var(--primary);
            border: 1px solid var(--primary);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            display: inline-block;
        }
.action-card-hover:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
.explosive-stats {
            background: rgba(249, 115, 22, 0.08);
            border-radius: var(--card-radius);
            padding: 1.8rem 1.2rem;
            border-left: 4px solid var(--primary);
        }
.genre-chip {
            background: #2a211b;
            color: var(--text-light);
            border-radius: 30px;
            padding: 0.4rem 1.2rem;
            font-size: 0.85rem;
            font-weight: 500;
            transition: 0.2s;
        }
.genre-chip:hover {
            background: var(--primary);
            color: #fff;
        }
.filter-active {
            background: var(--primary) !important;
            color: #1a1410 !important;
            font-weight: 700;
        }

/* --- 子页面追加 --- */
/* 页面专属微调，合并进站点CSS */
        .comedy-hero { background: linear-gradient(135deg, rgba(249,115,22,0.15) 0%, rgba(250,204,21,0.08) 100%), var(--bg-dark); }
.section-header .section-title { color: var(--accent); }
.genre-tag { background: rgba(249,115,22,0.15); color: var(--accent); padding: 4px 14px; border-radius: 30px; font-size: 0.8rem; font-weight: 600; display: inline-block; margin-right: 8px; margin-bottom: 8px; border: 1px solid rgba(249,115,22,0.3); }
.comedy-quote { border-left: 4px solid var(--accent); background: rgba(0,0,0,0.2); padding: 1.2rem 1.5rem; border-radius: 0 var(--card-radius) var(--card-radius) 0; }
.movie-chip { background: rgba(0,0,0,0.4); border: 1px solid var(--border-color, #3a2b1f); border-radius: 50px; padding: 0.4rem 1rem; font-size: 0.85rem; color: var(--text-light); }
.movie-chip i { color: var(--primary); margin-right: 6px; }

/* --- 子页面追加 --- */
/* 本页专属微调：科幻感点缀，仅补充，不影响全局 */
        .sci-fi-hero {
            background: radial-gradient(circle at 20% 30%, rgba(249,115,22,0.15), transparent 60%);
        }
.section-subtitle i {
            color: var(--accent);
            margin-right: 0.3rem;
        }
.category-tag {
            display: inline-block;
            background: rgba(249,115,22,0.12);
            color: var(--accent);
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(250,204,21,0.25);
            margin-right: 0.4rem;
            margin-bottom: 0.3rem;
        }
.sci-fi-badge {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }
/* 确保卡片背景统一为深色，覆盖bootstrap默认 */
        .card, .card-body {
            background: rgba(26, 20, 16, 0.6);
            color: var(--text-light);
            border-color: rgba(255, 247, 237, 0.1);
        }

/* --- 子页面追加 --- */
/* 确保恐怖片专区卡片风格与首页完全一致，并增强hover氛围 */
        .horror-card {
            background: rgba(30, 20, 15, 0.8);
            border: 1px solid rgba(249, 115, 22, 0.15);
            border-radius: var(--card-radius);
            transition: all 0.3s ease;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }
.horror-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(250, 204, 21, 0.3);
        }
.horror-card .card-img-top {
            height: 280px;
            object-fit: cover;
            background: #2a1f1a;
        }
.horror-card .card-body {
            padding: 1.25rem;
            background: transparent;
            color: var(--text-light);
        }
.horror-card .card-title {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--text-light);
            letter-spacing: -0.02em;
        }
.horror-card .card-text {
            color: rgba(255, 247, 237, 0.7);
            font-size: 0.9rem;
        }
.horror-card .badge {
            background: rgba(249, 115, 22, 0.2);
            color: var(--accent);
            font-weight: 500;
            padding: 0.35em 0.8em;
            border-radius: 30px;
        }
/* 列表组覆盖 */
        .list-group-item {
            background: rgba(26, 20, 16, 0.7);
            border: 1px solid rgba(249, 115, 22, 0.2);
            color: var(--text-light);
            margin-bottom: 6px;
            border-radius: 12px !important;
        }
.list-group-item i {
            color: var(--primary);
        }
/* 消除Bootstrap卡片默认白底 */
        .card {
            background: transparent;
            border: none;
        }

/* --- 子页面追加 --- */
/* 页面专属微调 —— 沿用 CSS 变量，仅补充本页特有细节 */
        .romance-hero {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(250, 204, 21, 0.05) 100%), var(--bg-dark);
            border-bottom: 1px solid rgba(249, 115, 22, 0.2);
        }
.romance-hero .hero-title {
            color: var(--accent);
            text-shadow: 0 2px 20px rgba(250, 204, 21, 0.3);
        }
.romance-card-grid .poster-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.romance-card-grid .poster-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
.romance-section-title {
            border-left: 4px solid var(--primary);
            padding-left: 1rem;
            margin-bottom: 2rem;
        }
.romance-badge {
            background: rgba(249, 115, 22, 0.2);
            color: var(--accent);
            border-radius: 30px;
            padding: 0.25rem 1rem;
            font-size: 0.85rem;
            font-weight: 600;
        }
.romance-quote {
            background: rgba(0,0,0,0.3);
            border-left: 3px solid var(--primary);
            padding: 1.5rem 2rem;
            border-radius: 0 var(--card-radius) var(--card-radius) 0;
        }
.romance-quote i {
            color: var(--primary);
            margin-right: 10px;
        }
/* 覆盖 Bootstrap 组件潜在白底问题（若用到） */
        .list-group-item {
            background: transparent;
            color: var(--text-light);
            border-color: rgba(255,255,255,0.1);
        }
.list-group-item:hover {
            background: rgba(249,115,22,0.1);
        }

/* --- 子页面追加 --- */
background: linear-gradient(145deg, rgba(26,20,16,.9), rgba(50,30,20,.75)), url(' {随机图片}
.anime-hero .hero-title {
            font-size: 2.6rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            color: var(--text-light);
            text-shadow: 0 4px 20px rgba(0,0,0,.5);
        }
.anime-hero .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255,247,237,.9);
            max-width: 700px;
            border-left: 4px solid var(--primary);
            padding-left: 1.2rem;
        }
.season-badge {
            display: inline-block;
            background: rgba(249,115,22,.2);
            color: var(--accent);
            border: 1px solid rgba(250,204,21,.3);
            padding: .25rem 1rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: .85rem;
            letter-spacing: .5px;
        }
.anime-card {
            background: rgba(30, 22, 16, 0.7);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(249,115,22,.25);
            border-radius: var(--card-radius);
            padding: 1.5rem;
            height: 100%;
            transition: all .3s ease;
            box-shadow: var(--shadow-soft);
        }
.anime-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }
.anime-card .card-title {
            font-weight: 700;
            color: var(--text-light);
            font-size: 1.3rem;
            margin-bottom: .75rem;
        }
.anime-card .card-text {
            color: rgba(255,247,237,.8);
            font-size: .95rem;
            line-height: 1.6;
        }
.anime-tag {
            display: inline-block;
            background: rgba(249,115,22,.15);
            color: var(--accent);
            padding: .2rem .8rem;
            border-radius: 20px;
            font-size: .75rem;
            margin-right: .5rem;
            margin-top: .5rem;
            border: 1px solid rgba(250,204,21,.2);
        }
.collection-header {
            display: flex;
            align-items: center;
            gap: .75rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
.collection-header i {
            font-size: 2rem;
            color: var(--primary);
        }
.collection-header h2 {
            font-size: 1.8rem;
            font-weight: 800;
            margin: 0;
            color: var(--text-light);
        }
.collection-header p {
            margin: 0;
            color: rgba(255,247,237,.7);
            font-size: 1rem;
        }
.rank-item.anime-rank {
            background: rgba(30, 22, 16, 0.6);
            border-left: 4px solid var(--primary);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin-bottom: .75rem;
            transition: all .2s;
        }
.rank-item.anime-rank:hover {
            background: rgba(50, 30, 20, 0.8);
            border-left-color: var(--accent);
            transform: translateX(4px);
        }
.rank-item.anime-rank .rank-title {
            font-weight: 700;
            color: var(--text-light);
        }
.rank-item.anime-rank .rank-meta {
            color: rgba(255,247,237,.7);
            font-size: .85rem;
        }
.btn-anime-outline {
            border: 1px solid var(--primary);
            color: var(--primary);
            background: transparent;
            border-radius: 40px;
            padding: .45rem 1.5rem;
            font-weight: 600;
            transition: all .2s;
        }
.btn-anime-outline:hover {
            background: var(--primary);
            color: #1a1410;
            border-color: var(--primary);
        }
.form-select-anime {
            background-color: rgba(20, 14, 10, 0.8);
            border: 1px solid rgba(249,115,22,.3);
            color: var(--text-light);
            border-radius: 30px;
            padding: .45rem 2rem .45rem 1rem;
            font-size: .9rem;
        }
.form-select-anime option {
            background-color: #1a1410;
            color: var(--text-light);
        }
.footer-anime {
            border-top: 1px solid rgba(249,115,22,.15);
        }
.anime-hero { padding: 2.5rem 1rem; }
.anime-hero .hero-title { font-size: 2rem; }

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