/* 设计种子:4110 — 暖橙放映厅 深色极简描边风格 */
        :root {
            --primary: #f97316;
            --accent: #facc15;
            --bg: #1a1410;
            --text: #fff7ed;
            --border-color: rgba(249, 115, 22, 0.3);
            --card-bg: #241e18;
            --muted: #b3a99c;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            letter-spacing: 0.3px;
            overflow-x: hidden;
        }

        /* 标题圆体感 */
        h1, h2, h3, h4, .display-title, .brand-font {
            font-family: 'Comic Sans MS', 'Chalkboard SE', 'PingFang SC', 'Microsoft YaHei', cursive, sans-serif;
            font-weight: 600;
            letter-spacing: 1px;
        }

        /* 极简无阴影，纯描边分割 */
        .navbar, .section, .card, .list-group-item, .footer-area {
            box-shadow: none !important;
        }

        .border-soft {
            border: 1px solid var(--border-color) !important;
        }

        /* 区块导航间距 */
        .nav-link-custom {
            color: var(--text) !important;
            font-weight: 500;
            padding: 0.75rem 1rem !important;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-link-custom:hover {
            border-bottom-color: var(--primary);
            color: var(--accent) !important;
        }
        .navbar-brand {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--primary) !important;
        }

        /* 卡片风格：无阴影，描边，hover缩放+边框高亮 */
        .movie-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 14px;
            overflow: hidden;
            transition: transform 0.25s ease, border-color 0.25s;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .movie-card:hover {
            transform: scale(1.02);
            border-color: var(--primary);
        }
        .movie-card .poster-wrapper {
            position: relative;
            aspect-ratio: 2 / 3;
            background: #2d241d;
            overflow: hidden;
        }
        .movie-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: opacity 0.3s;
        }
        .poster-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26, 20, 16, 0.85) 0%, transparent 55%);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
            padding: 1rem;
        }
        .movie-card:hover .poster-overlay {
            opacity: 1;
        }
        .play-icon {
            background: rgba(249, 115, 22, 0.85);
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: white;
            border: 1px solid var(--accent);
        }
        .card-body {
            padding: 0.85rem 1rem;
            background: transparent;
            border-top: 1px solid rgba(250, 204, 21, 0.15);
        }
        .card-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .card-subtitle {
            font-size: 0.75rem;
            color: var(--muted);
            display: flex;
            justify-content: space-between;
        }
        .rating {
            color: var(--accent);
            font-weight: 700;
        }

        /* 滚动条 */
        .h-scroll {
            display: flex;
            gap: 1.25rem;
            overflow-x: auto;
            padding-bottom: 1rem;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) var(--card-bg);
        }
        .h-scroll::-webkit-scrollbar {
            height: 6px;
        }
        .h-scroll::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        /* 区块标题 */
        .section-title {
            border-left: 6px solid var(--primary);
            padding-left: 1rem;
            margin: 2.5rem 0 1.5rem;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--text);
        }
        .section-title i {
            color: var(--primary);
            margin-right: 0.5rem;
        }

        /* 入场动效 */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .stagger-item {
            opacity: 0;
            transform: translateY(15px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        .stagger-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* 底部抽屉弹窗 */
        .drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            z-index: 9998;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        .drawer-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }
        .drawer-panel {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            max-height: 85vh;
            background: var(--bg);
            border-top: 3px solid var(--primary);
            border-radius: 24px 24px 0 0;
            padding: 2rem 1.5rem 2.5rem;
            transform: translateY(100%);
            transition: transform 0.35s cubic-bezier(.4,0,.2,1);
            z-index: 9999;
            overflow-y: auto;
            color: var(--text);
        }
        .drawer-panel.open {
            transform: translateY(0);
        }
        .drawer-close {
            background: transparent;
            border: none;
            font-size: 2rem;
            color: var(--primary);
            float: right;
            line-height: 1;
        }
        .detail-plot {
            color: #d1c7bd;
            font-size: 0.95rem;
        }

        /* 分类入口/榜单风格 */
        .category-pill {
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--text);
            border-radius: 40px;
            padding: 0.5rem 1.5rem;
            transition: 0.2s;
        }
        .category-pill:hover {
            background: var(--primary);
            color: #1a1410;
        }

        /* 页脚与友链 */
        .footer-links a {
            color: var(--muted);
            margin-right: 1rem;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: var(--primary);
        }
        .friend-links {
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .friend-links a {
            color: var(--muted);
            margin-right: 1.5rem;
            text-decoration: underline dotted;
        }
        .friend-links a:hover {
            color: var(--accent);
        }

        /* Hero */
        .hero {
            padding: 5rem 0 3rem;
            border-bottom: 1px solid var(--border-color);
        }
        .btn-outline-light-custom {
            border-color: var(--primary);
            color: var(--primary);
        }
        .btn-outline-light-custom:hover {
            background-color: var(--primary);
            color: var(--bg);
        }
        .btn-accent-custom {
            background-color: var(--primary);
            border: none;
            color: white;
        }
        .btn-accent-custom:hover {
            background-color: var(--accent);
            color: #1a1410;
        }

        /* 特色卡片步骤条 */
        .step-card {
            background: transparent;
            border: 1px dashed var(--primary);
            border-radius: 20px;
            padding: 1.5rem;
            text-align: center;
        }

/* --- 子页面追加 --- */
/* 本页专属样式 - 排行榜页面特有 */
        .rank-hero {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(250, 204, 21, 0.08) 50%, rgba(26, 20, 16, 0.9) 100%);
            padding: 80px 0 40px;
            border-bottom: 1px solid var(--border-color);
        }
.rank-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text);
        }
.rank-hero .hero-desc {
            color: var(--muted);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
.rank-section {
            padding: 60px 0;
            border-bottom: 1px solid var(--border-color);
        }
.rank-section:last-child {
            border-bottom: none;
        }
.rank-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }
.rank-section .section-sub {
            color: var(--muted);
            font-size: 0.95rem;
            margin-bottom: 30px;
        }
.rank-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 18px;
        }
.rank-card:hover {
            transform: translateX(5px);
            border-color: var(--primary);
            box-shadow: 0 4px 20px rgba(249, 115, 22, 0.15);
        }
.rank-number {
            font-size: 2rem;
            font-weight: 900;
            min-width: 60px;
            text-align: center;
            color: var(--primary);
            opacity: 0.8;
        }
.rank-number.top-1 {
            color: var(--accent);
            font-size: 2.5rem;
        }
.rank-info {
            flex: 1;
        }
.rank-info h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 5px;
        }
.rank-info .meta {
            color: var(--muted);
            font-size: 0.85rem;
        }
.rank-info .meta i {
            color: var(--primary);
            margin-right: 4px;
        }
.rank-rating {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent);
            min-width: 70px;
            text-align: right;
        }
.rank-badge {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            background: rgba(249, 115, 22, 0.15);
            color: var(--primary);
            margin-left: 8px;
        }
.rank-badge.hot {
            background: rgba(250, 204, 21, 0.15);
            color: var(--accent);
        }
.rank-tabs {
            display: flex;
            gap: 12px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
.rank-tab {
            padding: 8px 20px;
            border-radius: 25px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            color: var(--muted);
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
.rank-tab:hover, .rank-tab.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
.update-info {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--muted);
            font-size: 0.85rem;
            margin-bottom: 25px;
        }
.update-info i {
            color: var(--primary);
        }
.top-3-highlight {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(250, 204, 21, 0.05) 100%);
            border-color: rgba(249, 115, 22, 0.4);
        }
.rank-hero h1 {
                font-size: 2rem;
            }
.rank-card {
                flex-wrap: wrap;
                gap: 10px;
            }
.rank-number {
                min-width: 40px;
                font-size: 1.5rem;
            }
.rank-rating {
                min-width: 50px;
                font-size: 1rem;
            }

/* --- 子页面追加 --- */
.about-hero { padding: 80px 0 60px; }
.about-section { padding: 40px 0; border-bottom: 1px solid var(--border-color); }
.about-section:last-of-type { border-bottom: none; }
.about-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1.2; }
.stat-label { color: var(--muted); font-size: 0.9rem; }
.timeline-item { position: relative; padding-left: 30px; margin-bottom: 30px; }
.timeline-item::before { content: ''; position: absolute; left: 0; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 10px rgba(249, 115, 22, 0.5); }
.timeline-item::after { content: ''; position: absolute; left: 5px; top: 22px; width: 2px; height: calc(100% - 10px); background: var(--border-color); }
.timeline-item:last-child::after { display: none; }
.value-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; padding: 25px; height: 100%; transition: transform 0.3s; }
.value-card:hover { transform: translateY(-5px); }
.value-card i { font-size: 2rem; color: var(--primary); margin-bottom: 15px; }
.value-card h4 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 0.95rem; }

/* --- 子页面追加 --- */
.disclaimer-section {
            padding: 4rem 0;
        }
.disclaimer-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 1rem;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.disclaimer-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15);
        }
.disclaimer-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
.disclaimer-title {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 0.8rem;
        }
.disclaimer-text {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.95rem;
        }
.disclaimer-text p {
            margin-bottom: 1rem;
            color: var(--text);
        }
.disclaimer-text strong {
            color: var(--accent);
        }
.last-updated {
            color: var(--muted);
            font-size: 0.9rem;
            font-style: italic;
            margin-top: 2rem;
            text-align: center;
        }
.btn-back-home {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
.btn-back-home:hover {
            background: var(--accent);
            color: var(--bg);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(250, 204, 21, 0.3);
        }

/* --- 子页面追加 --- */
.guide-hero {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(250, 204, 21, 0.08) 50%, transparent 100%);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 3rem 2rem;
            margin: 2rem 0 3rem;
            position: relative;
            overflow: hidden;
        }
.guide-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }
.guide-section {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            position: relative;
        }
.guide-section h2 {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
.guide-section h2 i {
            font-size: 1.2rem;
            color: var(--accent);
        }
.guide-section h3 {
            color: var(--text);
            font-size: 1.15rem;
            font-weight: 600;
            margin: 1.5rem 0 0.8rem;
            padding-left: 0.8rem;
            border-left: 3px solid var(--primary);
        }
.guide-section p {
            color: var(--muted);
            line-height: 1.8;
            margin-bottom: 1rem;
        }
.guide-section ul, .guide-section ol {
            color: var(--muted);
            line-height: 2;
            padding-left: 1.5rem;
        }
.guide-section li {
            margin-bottom: 0.4rem;
        }
.guide-section strong {
            color: var(--text);
        }
.guide-tip {
            background: rgba(249, 115, 22, 0.08);
            border-left: 4px solid var(--primary);
            padding: 1rem 1.2rem;
            border-radius: 0 8px 8px 0;
            margin: 1.2rem 0;
        }
.guide-tip i {
            color: var(--accent);
            margin-right: 0.5rem;
        }
.guide-tip p {
            margin-bottom: 0;
            color: var(--text);
        }
.step-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
        }
.step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--primary);
            color: var(--bg);
            border-radius: 50%;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
.step-card h4 {
            color: var(--text);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }
.step-card p {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
.guide-cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 12px;
            padding: 2.5rem;
            text-align: center;
            margin: 3rem 0;
        }
.guide-cta h3 {
            color: var(--bg);
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
.guide-cta p {
            color: rgba(0, 0, 0, 0.8);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
.guide-hero {
                padding: 2rem 1.2rem;
            }
.guide-section {
                padding: 1.5rem 1rem;
            }
.guide-cta {
                padding: 2rem 1.2rem;
            }