:root {
            --primary: #6d5dfc;
            --accent: #22d3ee;
            --bg: #0f1020;
            --text: #e8eaf6;
            --card-bg: #1a1b2e;
            --radius-lg: 24px;
            --radius-md: 16px;
            --shadow-soft: 0 8px 32px rgba(109, 93, 252, 0.18);
        }
        * { font-family: 'Inter', system-ui, -apple-system, sans-serif; }
        body {
            background-color: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }
        /* 滚动条 */
        ::-webkit-scrollbar { height: 8px; width: 8px; }
        ::-webkit-scrollbar-track { background: #1a1b2e; }
        ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
        
        .navbar-custom {
            background: rgba(15, 16, 32, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(109, 93, 252, 0.3);
            padding: 14px 0;
        }
        .navbar-brand {
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--text) !important;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
        }
        .navbar-brand i { color: var(--accent); margin-right: 10px; font-size: 2rem; }
        .nav-link {
            color: var(--text) !important;
            font-weight: 500;
            margin: 0 12px;
            transition: 0.2s;
            border-radius: 50px;
            padding: 8px 16px !important;
        }
        .nav-link:hover { color: var(--accent) !important; background: rgba(109, 93, 252, 0.15); }
        .navbar-toggler { border: 1px solid var(--primary); }
        
        /* Hero 关键词标签云 */
        .keyword-cloud {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 18px 30px;
            padding: 40px 0 20px;
            animation: fadeSlide 0.9s ease;
        }
        .keyword-cloud span {
            background: rgba(109, 93, 252, 0.12);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(34, 211, 238, 0.4);
            border-radius: 50px;
            padding: 10px 26px;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            transition: 0.2s;
        }
        .keyword-cloud span:hover { background: var(--primary); transform: scale(1.05); }
        
        /* 区块通用 */
        .section-title {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .section-title i { color: var(--accent); font-size: 1.8rem; }
        
        /* 海报卡片 */
        .movie-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
            opacity: 0;
            animation: cardAppear 0.7s forwards;
        }
        .movie-card:nth-child(1) { animation-delay: 0.05s; }
        .movie-card:nth-child(2) { animation-delay: 0.15s; }
        .movie-card:nth-child(3) { animation-delay: 0.25s; }
        .movie-card:nth-child(4) { animation-delay: 0.35s; }
        .movie-card:nth-child(5) { animation-delay: 0.45s; }
        .movie-card:nth-child(6) { animation-delay: 0.55s; }
        .movie-card:nth-child(7) { animation-delay: 0.65s; }
        .movie-card:nth-child(8) { animation-delay: 0.75s; }
        .movie-card:nth-child(9) { animation-delay: 0.85s; }
        .movie-card:nth-child(10) { animation-delay: 0.95s; }
        .movie-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 12px 40px rgba(109, 93, 252, 0.4);
        }
        .movie-poster {
            position: relative;
            aspect-ratio: 2/3;
            overflow: hidden;
            background: linear-gradient(145deg, #1e1f35, #2a2b4a);
        }
        .movie-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.4s;
            filter: saturate(0.8);
        }
        .movie-card:hover img { transform: scale(1.05); filter: saturate(1.1); }
        .play-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: 0.3s;
        }
        .movie-card:hover .play-overlay { opacity: 1; }
        .play-overlay i {
            font-size: 3.5rem;
            color: white;
            text-shadow: 0 8px 30px rgba(109, 93, 252, 0.9);
            background: rgba(109, 93, 252, 0.3);
            border-radius: 50%;
            padding: 18px;
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .movie-info {
            padding: 16px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .movie-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .movie-meta {
            font-size: 0.85rem;
            color: #aaa9c2;
            display: flex;
            justify-content: space-between;
        }
        .rating {
            font-family: 'Courier New', monospace;
            font-weight: 800;
            color: var(--accent);
            background: rgba(34, 211, 238, 0.15);
            padding: 2px 10px;
            border-radius: 30px;
        }
        .year-badge { background: rgba(109, 93, 252, 0.2); padding: 2px 8px; border-radius: 30px; }
        
        /* 横向滚动区 */
        .scroll-row {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 15px;
            scroll-snap-type: x mandatory;
        }
        .scroll-row .movie-card { min-width: 180px; flex: 0 0 auto; scroll-snap-align: start; }
        
        /* 分类胶囊 */
        .tag-capsule {
            background: rgba(109, 93, 252, 0.12);
            border: 1px solid rgba(109, 93, 252, 0.4);
            color: var(--text);
            border-radius: 50px;
            padding: 8px 24px;
            font-weight: 600;
            display: inline-block;
            transition: 0.2s;
            margin: 6px;
        }
        .tag-capsule:hover { background: var(--primary); border-color: var(--primary); }
        
        /* 排行榜金银铜 */
        .rank-list {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 20px;
            box-shadow: var(--shadow-soft);
        }
        .rank-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 14px 10px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .rank-num {
            font-family: monospace;
            font-size: 1.6rem;
            font-weight: 900;
            width: 55px;
            text-align: center;
        }
        .rank-1 { color: #ffd700; } .rank-2 { color: #c0c0c0; } .rank-3 { color: #cd7f32; }
        .rank-item i { color: var(--primary); }
        
        /* 折叠手风琴 */
        .accordion-item {
            background: var(--card-bg);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-md) !important;
            overflow: hidden;
            margin-bottom: 12px;
        }
        .accordion-button {
            background: rgba(109, 93, 252, 0.1);
            color: var(--text);
            font-weight: 600;
            font-size: 1.1rem;
        }
        .accordion-button:not(.collapsed) {
            background: var(--primary);
            color: white;
        }
        
        /* 弹窗 */
        .movie-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(5px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
        }
        .movie-modal-card {
            background: #1a1b2e;
            border-radius: 28px;
            max-width: 760px;
            width: 90%;
            padding: 28px;
            display: flex;
            gap: 20px;
            color: var(--text);
            border: 1px solid var(--primary);
            box-shadow: 0 20px 80px rgba(109, 93, 252, 0.5);
            position: relative;
            max-height: 80vh;
            overflow-y: auto;
        }
        .modal-poster { width: 180px; border-radius: 20px; flex-shrink: 0; overflow: hidden; }
        .modal-poster img { width: 100%; display: block; }
        .modal-close {
            position: absolute;
            top: 18px;
            right: 18px;
            font-size: 2rem;
            color: #aaa;
            cursor: pointer;
            background: none;
            border: none;
            z-index: 10;
        }
        .modal-close:hover { color: white; }
        .modal-info h3 { font-weight: 800; font-size: 1.8rem; }
        .modal-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 12px 0; }
        .modal-detail-grid span { font-family: monospace; }
        
        @keyframes cardAppear {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeSlide {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .footer-custom {
            background: #0c0d1a;
            border-top: 1px solid var(--primary);
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .friend-links {
            background: rgba(109, 93, 252, 0.08);
            padding: 30px;
            border-radius: 30px;
            margin: 40px 0;
            text-align: center;
        }
        .friend-links h3 { margin-bottom: 20px; color: var(--accent); }

/* --- 子页面追加 --- */
/* 本页专属少量样式 —— 合并进站点CSS */
        .about-hero {
            padding: 80px 0 50px;
            text-align: center;
            position: relative;
        }
.about-hero h1 {
            font-size: 2.6rem;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 15px;
            letter-spacing: -0.02em;
        }
.about-hero h1 span {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.about-hero p {
            color: rgba(232, 234, 246, 0.7);
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }
.about-section {
            padding: 55px 0;
        }
.about-section:nth-child(even) {
            background: rgba(109, 93, 252, 0.05);
        }
.about-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 35px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(109, 93, 252, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
.about-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(109, 93, 252, 0.3);
        }
.about-card .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: #fff;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(109, 93, 252, 0.4);
        }
.about-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 15px;
        }
.about-card p {
            color: rgba(232, 234, 246, 0.75);
            font-size: 0.98rem;
            line-height: 1.75;
        }
.about-card ul {
            padding-left: 20px;
            color: rgba(232, 234, 246, 0.75);
            font-size: 0.98rem;
            line-height: 2;
        }
.about-card ul li::marker {
            color: var(--primary);
        }
.stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
.stat-item {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            padding: 25px;
            text-align: center;
            border: 1px solid rgba(109, 93, 252, 0.15);
        }
.stat-item .num {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.stat-item .label {
            color: rgba(232, 234, 246, 0.65);
            font-size: 0.95rem;
            margin-top: 5px;
        }
.timeline {
            position: relative;
            padding-left: 30px;
            margin-top: 25px;
        }
.timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 5px;
            bottom: 5px;
            width: 2px;
            background: linear-gradient(180deg, var(--primary), var(--accent));
        }
.timeline-item {
            position: relative;
            padding-bottom: 25px;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -27px;
            top: 6px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--primary);
            border: 3px solid var(--bg);
            box-shadow: 0 0 0 2px var(--primary);
        }
.timeline-item .year {
            font-weight: 700;
            color: var(--accent);
            font-size: 0.9rem;
            margin-bottom: 4px;
        }
.timeline-item .desc {
            color: rgba(232, 234, 246, 0.8);
            font-size: 0.98rem;
            line-height: 1.6;
        }
.about-footer-note {
            text-align: center;
            padding: 40px 0 0;
            color: rgba(232, 234, 246, 0.6);
            font-size: 0.95rem;
        }
.about-footer-note a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }
.about-footer-note a:hover {
            color: var(--accent);
        }

/* --- 子页面追加 --- */
/* 本页专属样式 - 免责声明 */
        .disclaimer-hero {
            padding: 80px 0 40px;
            text-align: center;
        }
.disclaimer-hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
.disclaimer-hero p {
            color: rgba(232, 234, 246, 0.7);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.05rem;
            line-height: 1.7;
        }
.disclaimer-section {
            padding: 40px 0;
        }
.disclaimer-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
            padding-left: 16px;
            border-left: 4px solid var(--primary);
        }
.disclaimer-section h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--accent);
            margin: 24px 0 12px;
        }
.disclaimer-section p {
            color: rgba(232, 234, 246, 0.75);
            line-height: 1.8;
            margin-bottom: 16px;
        }
.disclaimer-section ul, .disclaimer-section ol {
            color: rgba(232, 234, 246, 0.75);
            line-height: 1.8;
            padding-left: 20px;
            margin-bottom: 16px;
        }
.disclaimer-section li {
            margin-bottom: 8px;
        }
.disclaimer-card {
            background: var(--card-bg);
            border: 1px solid rgba(109, 93, 252, 0.2);
            border-radius: var(--radius-md);
            padding: 24px;
            margin-bottom: 24px;
            box-shadow: var(--shadow-soft);
        }
.disclaimer-card strong {
            color: var(--accent);
        }
.update-tag {
            display: inline-block;
            background: rgba(109, 93, 252, 0.15);
            color: var(--primary);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 12px;
            border: 1px solid rgba(109, 93, 252, 0.3);
        }
.important-note {
            background: rgba(34, 211, 238, 0.08);
            border: 1px solid rgba(34, 211, 238, 0.25);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            margin: 24px 0;
        }
.important-note p {
            margin-bottom: 8px;
        }
.important-note p:last-child {
            margin-bottom: 0;
        }
.footer-contact {
            color: var(--accent);
            font-weight: 500;
        }

/* --- 子页面追加 --- */
.privacy-section {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 2rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255,255,255,0.05);
        }
.privacy-section h2 {
            color: var(--primary);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
.privacy-section h2 i {
            font-size: 1.2rem;
            color: var(--accent);
        }
.privacy-section p, .privacy-section li {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.95rem;
        }
.privacy-section ul {
            padding-left: 1.25rem;
            margin-bottom: 1rem;
        }
.privacy-section ul li {
            margin-bottom: 0.5rem;
        }
.privacy-section strong {
            color: var(--accent);
        }
.privacy-header {
            text-align: center;
            padding: 3rem 0 2rem;
        }
.privacy-header h1 {
            color: var(--text);
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
.privacy-header h1 span {
            color: var(--primary);
        }
.privacy-header .subtitle {
            color: rgba(232,234,246,0.7);
            font-size: 1rem;
            margin-bottom: 2rem;
        }
.update-date {
            display: inline-block;
            background: rgba(109,93,252,0.15);
            color: var(--accent);
            padding: 0.4rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
        }
.table-of-contents {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            padding: 1.5rem 2rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(109,93,252,0.2);
        }
.table-of-contents h3 {
            color: var(--primary);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
.table-of-contents a {
            color: var(--text);
            text-decoration: none;
            display: block;
            padding: 0.35rem 0;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
.table-of-contents a:hover {
            color: var(--primary);
        }
.table-of-contents a i {
            color: var(--accent);
            margin-right: 0.5rem;
            font-size: 0.75rem;
        }
.privacy-footer {
            text-align: center;
            padding: 2rem 0;
            color: rgba(232,234,246,0.6);
            font-size: 0.85rem;
        }
.privacy-footer a {
            color: var(--accent);
            text-decoration: none;
        }
.privacy-section {
                padding: 1.5rem;
            }
.privacy-header h1 {
                font-size: 1.6rem;
            }

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