:root {
            --primary: #f472b6;
            --accent: #fbbf24;
            --bg: #fff5f7;
            --text: #4a2530;
            --card-radius: 1rem;
            --pill-radius: 50rem;
            --shadow-sm: 0 2px 8px rgba(74, 37, 48, 0.06);
            --shadow-hover: 0 12px 28px rgba(244, 114, 182, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

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

        /* 导航 */
        .navbar {
            background: rgba(255, 245, 247, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(244, 114, 182, 0.15);
            padding: 0.8rem 2rem;
        }

        .navbar-brand {
            font-family: 'Noto Serif SC', serif;
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--primary);
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .navbar-brand i {
            color: var(--accent);
            font-size: 1.6rem;
        }

        .nav-link {
            color: var(--text);
            font-weight: 500;
            margin: 0 0.6rem;
            padding: 0.4rem 1.2rem;
            border-radius: var(--pill-radius);
            transition: all 0.2s;
        }

        .nav-link:hover {
            color: var(--primary);
            background: rgba(244, 114, 182, 0.08);
        }

        /* 胶囊导航 */
        .nav-pills-custom {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 0.2rem;
        }

        .pill-link {
            padding: 0.3rem 1.2rem;
            border-radius: var(--pill-radius);
            background: white;
            border: 1px solid #fcd8e8;
            color: var(--text);
            font-size: 0.9rem;
            transition: all 0.2s;
            text-decoration: none;
        }

        .pill-link:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        /* Hero 区域 */
        .hero-section {
            padding: 4rem 0 5rem;
            background: linear-gradient(180deg, #ffe9f1 0%, var(--bg) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-keywords {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.8rem 1.5rem;
            margin-bottom: 2.5rem;
        }

        .hero-keyword {
            background: white;
            border-radius: var(--pill-radius);
            padding: 0.4rem 1.4rem;
            font-size: 0.9rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid #ffe1ec;
            color: var(--text);
        }

        .hero-title {
            font-size: 3.4rem;
            font-weight: 900;
            color: var(--text);
            letter-spacing: 2px;
        }

        .hero-title .brand-highlight {
            color: var(--primary);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.75;
            max-width: 700px;
            margin: 1rem auto 2rem;
        }

        /* 区块通用 */
        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1.8rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .section-title i {
            color: var(--primary);
        }

        .section-subtitle {
            color: #b28a98;
            font-weight: 400;
            font-size: 1rem;
            letter-spacing: 1px;
        }

        /* 卡片网格 */
        .movie-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1.2rem;
        }

        .movie-card {
            background: white;
            border-radius: var(--card-radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            cursor: pointer;
            transition: transform 0.25s, box-shadow 0.3s;
            position: relative;
            border: none;
        }

        .movie-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: var(--shadow-hover);
        }

        .poster-wrap {
            position: relative;
            aspect-ratio: 2/3;
            background: #f3e0e7;
        }

        .poster-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .badge-hd {
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(0, 0, 0, 0.65);
            color: white;
            font-size: 0.7rem;
            padding: 0.15rem 0.6rem;
            border-radius: var(--pill-radius);
            backdrop-filter: blur(2px);
            z-index: 2;
        }

        .play-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .movie-card:hover .play-overlay {
            opacity: 1;
        }

        .play-overlay i {
            font-size: 3rem;
            color: white;
            background: rgba(244, 114, 182, 0.8);
            border-radius: 50%;
            padding: 1rem;
            width: 5rem;
            height: 5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }

        .movie-info {
            padding: 0.7rem;
        }

        .movie-title {
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 0.2rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .movie-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            color: #b28a98;
        }

        .rating {
            color: var(--accent);
            font-weight: 700;
        }

        /* 榜单样式 */
        .rank-list {
            background: white;
            border-radius: 1.5rem;
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
        }

        .rank-item {
            display: flex;
            align-items: center;
            padding: 0.8rem 0;
            border-bottom: 1px dashed #fad1e2;
        }

        .rank-num {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary);
            width: 3rem;
            text-align: center;
        }

        .rank-title {
            flex: 1;
            font-weight: 500;
        }

        .rank-score {
            font-weight: 700;
            color: var(--accent);
        }

        /* 抽屉弹窗 */
        .drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(74, 37, 48, 0.4);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 1080;
        }

        .drawer-panel {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-radius: 2rem 2rem 0 0;
            padding: 2rem 2rem 2rem;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            z-index: 1085;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 -8px 32px rgba(0,0,0,0.1);
        }

        .drawer-panel.show {
            transform: translateY(0);
        }

        .drawer-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .btn-close-drawer {
            position: absolute;
            top: 1.5rem;
            right: 1.8rem;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--text);
            opacity: 0.6;
        }

        .btn-close-drawer:hover {
            opacity: 1;
        }

        /* 步骤条 */
        .steps-row {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin: 2rem 0;
        }

        .step-item {
            background: white;
            border-radius: 1.8rem;
            padding: 1.5rem 1.8rem;
            flex: 1 1 200px;
            box-shadow: var(--shadow-sm);
            text-align: center;
        }

        .step-num {
            display: inline-block;
            background: var(--primary);
            color: white;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            line-height: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.8rem;
        }

        /* 按钮 */
        .btn-custom-pill {
            background: var(--primary);
            color: white;
            border-radius: var(--pill-radius);
            padding: 0.6rem 1.8rem;
            border: none;
            font-weight: 500;
            transition: all 0.2s;
        }

        .btn-custom-pill:hover {
            background: #e05da3;
            color: white;
            transform: scale(0.98);
        }

        /* 页脚 */
        .footer-links {
            background: white;
            border-radius: 2rem 2rem 0 0;
            padding: 2.5rem 2rem 1.5rem;
            margin-top: 4rem;
        }

        .footer-brand {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary);
        }

        /* 动画 */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .section-block {
            animation: fadeInUp 0.7s ease;
        }

        /* 数字滚动 */
        .stat-num {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .hero-title { font-size: 2.3rem; }
            .navbar { padding: 0.5rem 1rem; }
            .movie-grid { gap: 0.8rem; }
        }

/* --- 子页面追加 --- */
.rank-hero {
            background: linear-gradient(135deg, #fdf0f5 0%, #ffe9f0 50%, #fce7f3 100%);
            padding: 3.5rem 0 2.5rem;
            border-bottom: 1px solid rgba(244, 114, 182, 0.15);
        }
.rank-hero h1 {
            color: var(--text);
            font-weight: 800;
            margin-bottom: 0.8rem;
            font-size: 2rem;
        }
.rank-hero p {
            color: #8d5a68;
            max-width: 720px;
            margin: 0 auto;
            font-size: 1.05rem;
        }
.rank-section {
            padding: 2.5rem 0;
        }
.rank-section + .rank-section {
            border-top: 1px solid rgba(244, 114, 182, 0.08);
        }
.rank-category-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #f472b6, #fb7185);
            color: #fff;
            padding: 6px 16px;
            border-radius: 50rem;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
        }
.rank-category-tag i {
            font-size: 0.8rem;
        }
.rank-list:hover {
            box-shadow: var(--shadow-hover);
        }
.rank-item:last-child {
            border-bottom: none;
        }
.rank-item:hover {
            background: rgba(244, 114, 182, 0.04);
        }
.rank-item:nth-child(1) .rank-num {
            color: #f59e0b;
            font-size: 1.35rem;
        }
.rank-item:nth-child(2) .rank-num {
            color: #94a3b8;
            font-size: 1.25rem;
        }
.rank-item:nth-child(3) .rank-num {
            color: #cd7f32;
            font-size: 1.2rem;
        }
.rank-trend {
            color: #fbbf24;
            font-size: 0.8rem;
            margin-left: 8px;
            width: 18px;
            flex-shrink: 0;
        }
.rank-note {
            background: rgba(244, 114, 182, 0.06);
            border-radius: var(--card-radius);
            padding: 1rem 1.2rem;
            font-size: 0.9rem;
            color: #8d5a68;
            margin-top: 1.5rem;
            border-left: 3px solid var(--primary);
        }
.rank-note i {
            color: var(--primary);
            margin-right: 6px;
        }
.rank-hero { padding: 2.2rem 0 1.8rem; }
.rank-hero h1 { font-size: 1.5rem; }
.rank-hero p { font-size: 0.95rem; }

/* --- 子页面追加 --- */
/* 页面专属补充样式 */
        .about-hero {
            padding: 3rem 0 2rem;
            background: linear-gradient(180deg, rgba(244, 114, 182, 0.08) 0%, rgba(255, 245, 247, 0) 100%);
            border-radius: 0 0 2rem 2rem;
        }
.about-hero .hero-title {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }
.about-hero .hero-subtitle {
            color: #a48a94;
            font-size: 1.05rem;
            max-width: 640px;
        }
.section-block .section-title {
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            position: relative;
            display: inline-block;
        }
.section-block .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 42px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }
.about-card {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(244, 114, 182, 0.12);
            border-radius: var(--card-radius);
            padding: 1.5rem 1.6rem;
            height: 100%;
            transition: box-shadow 0.3s ease, transform 0.2s ease;
        }
.about-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
.about-card .icon-wrap {
            width: 46px;
            height: 46px;
            background: linear-gradient(135deg, rgba(244, 114, 182, 0.15), rgba(251, 191, 36, 0.15));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 0.8rem;
        }
.about-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.4rem;
        }
.about-card p {
            font-size: 0.92rem;
            color: #7d5a66;
            line-height: 1.7;
            margin: 0;
        }
.timeline-wrap {
            position: relative;
            padding-left: 1.5rem;
        }
.timeline-wrap::before {
            content: '';
            position: absolute;
            left: 6px;
            top: 8px;
            bottom: 8px;
            width: 2px;
            background: linear-gradient(180deg, var(--primary), var(--accent));
            border-radius: 2px;
            opacity: 0.25;
        }
.timeline-item {
            position: relative;
            padding-bottom: 1.4rem;
            padding-left: 0.8rem;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -1.5rem;
            top: 6px;
            width: 12px;
            height: 12px;
            background: var(--primary);
            border-radius: 50%;
            border: 2.5px solid var(--bg);
            box-shadow: 0 0 0 2px rgba(244, 114, 182, 0.3);
        }
.timeline-item .year {
            font-weight: 800;
            color: var(--primary);
            font-size: 1.05rem;
        }
.timeline-item .desc {
            color: #7d5a66;
            font-size: 0.92rem;
            line-height: 1.6;
        }
.value-list {
            display: grid;
            gap: 1rem;
        }
.value-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 0.9rem 1.2rem;
            background: rgba(255, 255, 255, 0.65);
            border-radius: var(--card-radius);
            border: 1px solid rgba(244, 114, 182, 0.1);
        }
.value-item i {
            font-size: 1.15rem;
            color: var(--accent);
            margin-top: 3px;
            width: 22px;
            text-align: center;
        }
.value-item span {
            font-size: 0.95rem;
            color: var(--text);
            font-weight: 500;
            line-height: 1.6;
        }
.about-footer-note {
            background: linear-gradient(135deg, rgba(244, 114, 182, 0.06), rgba(251, 191, 36, 0.06));
            border-radius: var(--card-radius);
            padding: 1.8rem 2rem;
            text-align: center;
            margin-top: 2rem;
        }
.about-footer-note p {
            color: #7d5a66;
            font-size: 1.02rem;
            margin: 0;
        }
.about-footer-note .brand-name {
            color: var(--primary);
            font-weight: 800;
        }
.about-hero .hero-title { font-size: 1.8rem; }
.section-block .section-title { font-size: 1.4rem; }
.about-card { padding: 1.2rem; }

/* --- 子页面追加 --- */
/* 本页专属微调，沿用首页配色变量 */
        .hot-hero {
            background: linear-gradient(135deg, #ffe8f0 0%, #fff0f5 100%);
            padding: 3.5rem 0 2.5rem;
            border-radius: 0 0 3rem 3rem;
        }
.hot-badge {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 0.75rem;
            padding: 0.3rem 0.9rem;
            border-radius: 50rem;
            letter-spacing: 0.5px;
        }
.hot-tab-panel {
            background: rgba(255,255,255,0.6);
            border-radius: 2rem;
            padding: 2rem 1.5rem;
            box-shadow: var(--shadow-sm);
        }
.hot-card-custom {
            background: #fff;
            border-radius: var(--card-radius);
            box-shadow: var(--shadow-sm);
            transition: transform 0.2s, box-shadow 0.2s;
            overflow: hidden;
            height: 100%;
            border: 1px solid #fce7ef;
        }
.hot-card-custom:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
.hot-card-custom .poster-wrap {
            border-radius: 0;
        }
.hot-card-custom .movie-info {
            padding: 0.9rem 0.8rem 1.1rem;
        }
.section-tagline {
            color: #b46a80;
            font-weight: 400;
            font-size: 0.95rem;
        }
.rank-highlight {
            background: rgba(244, 114, 182, 0.08);
            border-left: 4px solid var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 0.6rem;
            margin-bottom: 0.5rem;
        }
.rank-highlight .rank-title {
            font-weight: 600;
            color: var(--text);
        }
.filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
            align-items: center;
            margin-bottom: 1.8rem;
        }
.filter-pill {
            background: #fff;
            border: 1px solid #f3d1de;
            color: var(--text);
            padding: 0.35rem 1.2rem;
            border-radius: 50rem;
            font-size: 0.9rem;
            cursor: default;
            transition: 0.15s;
            font-weight: 500;
        }
.filter-pill i {
            color: var(--primary);
            margin-right: 5px;
        }
.filter-pill.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
.filter-pill.active i {
            color: #fff;
        }
.hot-hero {
                padding: 2.2rem 0 1.8rem;
            }
.hot-tab-panel {
                padding: 1.2rem 0.8rem;
            }

/* --- 子页面追加 --- */
/* 本页专属小样式,自动合并进站点CSS */
        .disclaimer-wrap { max-width: 860px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
.disclaimer-card { background: var(--bg); border-radius: var(--card-radius); box-shadow: var(--shadow-sm); padding: 2rem 2.5rem; margin-bottom: 1.8rem; border-left: 4px solid var(--primary); transition: box-shadow .3s ease, transform .3s ease; }
.disclaimer-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.disclaimer-card h2 { font-size: 1.35rem; font-weight: 700; color: var(--primary); margin-bottom: 1.2rem; display: flex; align-items: center; gap: .6rem; }
.disclaimer-card h2 i { font-size: 1.1rem; color: var(--accent); }
.disclaimer-card p, .disclaimer-card li { font-size: .95rem; line-height: 1.9; color: var(--text); }
.disclaimer-card ul { padding-left: 1.4rem; }
.disclaimer-card li { margin-bottom: .45rem; }
.disclaimer-footer-note { text-align: center; color: rgba(74,37,48,.6); font-size: .88rem; margin-top: 2rem; padding: 1.2rem; border-top: 1px dashed rgba(244,114,182,.3); }
.hero-disclaimer { background: linear-gradient(135deg, #fff5f7 0%, #fde8ef 100%); padding: 3.5rem 0 2.8rem; text-align: center; border-bottom: 1px solid rgba(244,114,182,.15); }
.hero-disclaimer h1 { font-size: 2.2rem; font-weight: 800; color: var(--text); margin-bottom: .6rem; }
.hero-disclaimer h1 span { color: var(--primary); }
.hero-disclaimer .hero-subtitle { font-size: 1.05rem; color: rgba(74,37,48,.7); max-width: 700px; margin: 0 auto; }
.badge-updated { display: inline-block; background: var(--primary); color: #fff; font-size: .78rem; padding: .25rem .9rem; border-radius: var(--pill-radius); margin-top: .8rem; font-weight: 500; letter-spacing: .5px; }
.contact-list { list-style: none; padding-left: 0 !important; }
.contact-list li { padding-left: 1.6rem; position: relative; }
.contact-list li i { position: absolute; left: 0; top: .35rem; color: var(--primary); font-size: .9rem; }
.disclaimer-wrap { padding: 2rem 1rem 3rem; }
.disclaimer-card { padding: 1.5rem 1.2rem; }
.hero-disclaimer h1 { font-size: 1.7rem; }
.hero-disclaimer .hero-subtitle { font-size: .95rem; }