:root {
            --primary: #f472b6;
            --accent: #fbbf24;
            --bg: #fff5f7;
            --text: #4a2530;
            --card-radius: 20px;
            --shadow-soft: 0 8px 30px rgba(244, 114, 182, 0.15);
        }
        * { box-sizing: border-box; }
        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            letter-spacing: 0.01em;
            line-height: 1.5;
            overflow-x: hidden;
        }
        /* 品牌名保护：任何地方都不拆开 */
        .navbar-brand, .footer-brand, .brand-text {
            white-space: nowrap;
        }
        /* 导航 */
        .navbar-custom {
            background: rgba(255, 245, 247, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(244, 114, 182, 0.2);
            padding: 0.5rem 0;
        }
        .navbar-custom .navbar-brand {
            font-weight: 800;
            color: var(--primary);
            font-size: 1.6rem;
            letter-spacing: -0.5px;
        }
        .navbar-custom .nav-link {
            color: var(--text);
            font-weight: 500;
            margin: 0 0.3rem;
            border-radius: 50px;
            padding: 0.4rem 1rem;
            transition: all 0.2s;
            font-size: 0.95rem;
        }
        .navbar-custom .nav-link:hover {
            background: rgba(244, 114, 182, 0.15);
            color: var(--primary);
        }
        .navbar-toggler:focus { box-shadow: none; }

        /* Hero 标签云 + 视差 */
        .hero-section {
            background: linear-gradient(145deg, #ffe6ee, #fff5f7);
            padding: 2.5rem 0 1.5rem;
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 -1px 0 rgba(0,0,0,0.02);
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem 0.8rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .hero-tags span {
            background: white;
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-weight: 500;
            font-size: 0.9rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            border: 1px solid rgba(244, 114, 182, 0.1);
            color: var(--text);
        }
        .hero-tags i { color: var(--primary); margin-right: 0.2rem; }

        /* 通用区块 */
        .section-title {
            font-weight: 800;
            font-size: 1.4rem;
            margin: 1.5rem 0 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text);
            letter-spacing: -0.3px;
        }
        .section-title i { color: var(--primary); }

        /* 横向滚动海报区 */
        .movie-scroll {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            padding: 0.5rem 0 1.2rem;
            scroll-snap-type: x mandatory;
        }
        .movie-scroll::-webkit-scrollbar { height: 5px; }
        .movie-scroll::-webkit-scrollbar-thumb { background: #f9c6d9; border-radius: 10px; }
        .movie-card {
            flex: 0 0 160px;
            scroll-snap-align: start;
            background: white;
            border-radius: var(--card-radius);
            box-shadow: 0 6px 20px rgba(244, 114, 182, 0.10);
            transition: transform 0.25s ease, box-shadow 0.3s;
            cursor: pointer;
            overflow: hidden;
            position: relative;
            padding-bottom: 0.8rem;
            border: 1px solid rgba(244, 114, 182, 0.1);
        }
        .movie-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 16px 35px rgba(244, 114, 182, 0.2);
        }
        .card-poster {
            width: 100%;
            aspect-ratio: 2 / 3;
            object-fit: cover;
            background: #fde3ec;
            display: block;
            position: relative;
        }
        .badge-quality {
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(0,0,0,0.6);
            color: white;
            font-size: 0.65rem;
            font-weight: 600;
            padding: 0.2rem 0.5rem;
            border-radius: 30px;
            backdrop-filter: blur(4px);
            z-index: 2;
        }
        .card-info {
            padding: 0.6rem 0.7rem 0.2rem;
        }
        .card-title {
            font-weight: 700;
            font-size: 0.95rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 0.1rem;
        }
        .card-meta {
            font-size: 0.75rem;
            color: #7d5262;
            display: flex;
            justify-content: space-between;
        }
        .card-rating i { color: var(--accent); }
        .hover-overlay {
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 40%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
            opacity: 0;
            transition: opacity 0.3s;
            border-radius: var(--card-radius) var(--card-radius) 0 0;
        }
        .movie-card:hover .hover-overlay { opacity: 1; }

        /* 分类海报矩阵 */
        .category-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .matrix-card {
            background: white;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.02);
            transition: all 0.25s;
            cursor: pointer;
            position: relative;
            border: 1px solid rgba(244, 114, 182, 0.05);
        }
        .matrix-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(244,114,182,0.15); }
        .matrix-card img { width: 100%; aspect-ratio: 2/3; object-fit: cover; background: #ffe0ec; }
        .matrix-card .info { padding: 0.5rem 0.6rem; }
        .matrix-card .title { font-size: 0.9rem; font-weight: 700; }
        .matrix-card .meta { font-size: 0.7rem; color: #8a5a68; }

        /* 热度榜 */
        .rank-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .rank-item {
            background: white;
            border-radius: 16px;
            padding: 0.7rem 1rem;
            margin-bottom: 0.6rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 2px 8px rgba(244,114,182,0.05);
            font-weight: 500;
            transition: 0.2s;
            border-left: 4px solid var(--primary);
        }
        .rank-item i { color: var(--accent); width: 1.5rem; text-align: center; }

        /* 手风琴说明 */
        .accordion-item { border: none; background: transparent; }
        .accordion-button {
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
            border-radius: 16px !important;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.5rem;
            padding: 1rem 1.2rem;
        }
        .accordion-button:not(.collapsed) { background: #ffe9f1; color: var(--primary); box-shadow: none; }

        /* 专题与心情 */
        .topic-card {
            background: linear-gradient(120deg, #fff0f5, #fff);
            border-radius: 24px;
            padding: 1.5rem;
            margin: 1rem 0;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(244,114,182,0.2);
        }
        .mood-badge {
            background: white;
            border-radius: 50px;
            padding: 0.5rem 1.2rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
            cursor: pointer;
            display: inline-block;
            margin: 0.2rem 0.3rem;
            border: 1px solid #f8c8d8;
        }
        .mood-badge:hover { background: var(--primary); color: white; border-color: var(--primary); }

        /* 弹窗 */
        .modal-mask {
            position: fixed; inset: 0; background: rgba(74, 37, 48, 0.5);
            backdrop-filter: blur(6px);
            display: none; align-items: center; justify-content: center;
            z-index: 10000; padding: 1rem;
        }
        .modal-mask.show { display: flex; }
        .modal-panel {
            background: white; border-radius: 28px; max-width: 640px;
            width: 100%; padding: 1.5rem; position: relative;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            display: flex; flex-wrap: wrap; gap: 1.2rem;
        }
        .modal-panel img { width: 130px; border-radius: 20px; object-fit: cover; }
        .modal-info { flex: 1; min-width: 200px; }
        .modal-close {
            position: absolute; top: 12px; right: 16px; font-size: 2rem;
            line-height: 1; background: none; border: none; color: var(--text);
            cursor: pointer;
        }
        .modal-close:hover { color: var(--primary); }

        /* 回到顶部 */
        #backTop {
            position: fixed; bottom: 30px; right: 30px;
            width: 45px; height: 45px; border-radius: 50%;
            background: var(--primary); color: white; border: none;
            font-size: 1.3rem; box-shadow: 0 10px 25px rgba(244,114,182,0.4);
            opacity: 0; visibility: hidden; transition: 0.3s; z-index: 999;
            cursor: pointer;
        }
        #backTop.show { opacity: 1; visibility: visible; }

        /* 页脚 */
        .footer {
            background: #ffe9f1; border-radius: 40px 40px 0 0;
            padding: 2.5rem 1rem 2rem; margin-top: 2rem;
            color: var(--text);
        }
        .footer a { color: var(--text); text-decoration: none; }
        .friend-links {
            background: white; border-radius: 30px; padding: 1.2rem 1.8rem;
            margin: 1.5rem 0; text-align: center; box-shadow: var(--shadow-soft);
        }
        .friend-links a { margin: 0 0.8rem; font-weight: 500; color: var(--primary); }

        @media (max-width: 768px) {
            .navbar-custom .nav-link { padding: 0.2rem 0.8rem; }
            .hero-tags span { font-size: 0.8rem; }
            .movie-card { flex-basis: 130px; }
            .category-matrix { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
        }

/* --- 子页面追加 --- */
/* 保证品牌名完整连续 */
        .navbar-brand {
            letter-spacing: normal;
            white-space: nowrap;
        }
.about-hero {
            background: linear-gradient(135deg, rgba(244,114,182,0.08) 0%, rgba(251,191,36,0.05) 100%);
            border-radius: var(--card-radius);
            padding: 2rem 1.5rem;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(244,114,182,0.2);
        }
.about-section-title {
            font-size: 1.65rem;
            font-weight: 700;
            color: var(--text);
            border-left: 6px solid var(--primary);
            padding-left: 1rem;
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            letter-spacing: -0.02em;
        }
.about-card {
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(244,114,182,0.15);
            border-radius: calc(var(--card-radius) - 4px);
            padding: 1.5rem;
            box-shadow: 0 4px 16px rgba(244,114,182,0.08);
            transition: transform 0.2s ease;
        }
.about-card:hover {
            transform: translateY(-3px);
        }
.about-card i {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 0.75rem;
        }
.about-card p {
            color: var(--text);
            opacity: 0.85;
            margin-bottom: 0;
        }
.about-highlight {
            background: rgba(251,191,36,0.12);
            border-radius: 30px;
            padding: 0.3rem 1rem;
            display: inline-block;
            font-weight: 600;
            color: #8a5a00;
        }
.footer-links a {
            color: var(--text);
            opacity: 0.7;
            text-decoration: none;
            margin: 0 0.75rem;
            font-size: 0.9rem;
        }
.footer-links a:hover {
            opacity: 1;
            color: var(--primary);
        }
/* 覆盖bootstrap导航可能带来的白底 */
        .navbar-custom {
            background: rgba(255, 245, 247, 0.85) !important;
            backdrop-filter: blur(8px);
        }
.navbar-custom .nav-link.active {
            color: var(--primary) !important;
            font-weight: 700;
        }
/* 确保任何卡片/组件不会出现白底黑字 */
        .accordion-item, .card, .list-group-item {
            background: rgba(255,255,255,0.4) !important;
            color: var(--text) !important;
            border-color: rgba(244,114,182,0.2) !important;
        }
.form-control {
            background: rgba(255,255,255,0.6) !important;
            color: var(--text) !important;
            border-color: rgba(244,114,182,0.2) !important;
        }
.form-control::placeholder {
            color: rgba(74,37,48,0.4) !important;
        }

/* --- 子页面追加 --- */
/* 本页专属样式 - 免责声明 */
        .disclaimer-hero {
            background: linear-gradient(135deg, rgba(244, 114, 182, 0.1) 0%, rgba(251, 191, 36, 0.08) 100%);
            padding: 60px 0 40px;
            text-align: center;
            border-bottom: 1px solid rgba(244, 114, 182, 0.15);
        }
.disclaimer-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 15px;
        }
.disclaimer-hero h1 .highlight {
            color: var(--primary);
        }
.disclaimer-hero p {
            color: #8a6a75;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
.disclaimer-content {
            padding: 50px 0;
        }
.disclaimer-section {
            background: #fff;
            border-radius: var(--card-radius);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(244, 114, 182, 0.1);
        }
.disclaimer-section h2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--primary);
            display: inline-block;
        }
.disclaimer-section h2 i {
            color: var(--primary);
            margin-right: 8px;
        }
.disclaimer-section p {
            color: #6b4a56;
            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: #6b4a56;
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }
.disclaimer-section ul li::before {
            content: "▸";
            color: var(--primary);
            position: absolute;
            left: 0;
            font-size: 1rem;
        }
.notice-box {
            background: rgba(251, 191, 36, 0.1);
            border-left: 4px solid var(--accent);
            padding: 20px 25px;
            border-radius: 12px;
            margin: 20px 0;
        }
.notice-box p {
            margin-bottom: 0;
            color: #7a5a20;
            font-weight: 500;
        }
.notice-box i {
            color: var(--accent);
            margin-right: 8px;
        }
.contact-email {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px dashed var(--primary);
        }
.contact-email:hover {
            color: #e0509e;
            border-bottom-style: solid;
        }
.disclaimer-hero h1 {
                font-size: 1.8rem;
            }
.disclaimer-section {
                padding: 20px;
            }

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