:root {
            --primary: #6d5dfc;
            --accent: #22d3ee;
            --bg: #0f1020;
            --text: #e8eaf6;
            --text-muted: #9fa8c9;
            --card-bg: #1a1c2e;
            --border: #2a2d44;
            --shadow: 0 8px 24px rgba(0,0,0,0.5);
            --radius: 8px;
        }
        * { scroll-behavior: smooth; }
        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
        }
        /* 滚动进度条 */
        #scrollProgress {
            position: fixed; top: 0; left: 0;
            height: 3px; width: 0%;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            z-index: 9999; border-radius: 0 4px 4px 0;
            transition: width 0.1s;
        }
        /* 导航吸顶 + 透明度变化 */
        .navbar-custom {
            background-color: rgba(15, 16, 32, 0.6);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            transition: background-color 0.3s, box-shadow 0.3s;
            padding: 0.8rem 0;
        }
        .navbar-custom.scrolled {
            background-color: rgba(15, 16, 32, 0.95);
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }
        .navbar-custom .navbar-brand {
            font-weight: 800; font-size: 1.8rem; letter-spacing: 0.5px;
            color: var(--text) !important;
        }
        .navbar-custom .navbar-brand i {
            color: var(--accent); margin-right: 6px;
        }
        .navbar-custom .nav-link {
            color: var(--text-muted) !important;
            font-weight: 500;
            margin: 0 0.4rem;
            transition: color 0.2s;
            border-radius: 20px;
            padding: 0.4rem 0.8rem !important;
        }
        .navbar-custom .nav-link:hover { color: var(--text) !important; background: rgba(255,255,255,0.03); }
        .navbar-toggler { border-color: var(--border); }
        .navbar-toggler:focus { box-shadow: none; }
        .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(232, 234, 246, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
        
        /* Hero */
        .hero-section {
            min-height: 82vh;
            display: flex; align-items: center;
            background: radial-gradient(circle at 20% 30%, rgba(109,93,252,0.2), transparent 50%), radial-gradient(circle at 80% 60%, rgba(34,211,238,0.1), transparent 50%);
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero-title {
            font-weight: 900;
            font-size: calc(2.8rem + 1.2vw);
            line-height: 1.1;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.2rem;
        }
        .hero-sub { color: var(--text-muted); font-size: 1.2rem; max-width: 500px; }
        .floating-icon { position: absolute; font-size: 3rem; opacity: 0.2; color: var(--primary); animation: float 6s ease-in-out infinite; }
        .floating-icon:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
        .floating-icon:nth-child(2) { top: 20%; right: 12%; animation-delay: 1.2s; color: var(--accent); }
        .floating-icon:nth-child(3) { bottom: 20%; left: 8%; animation-delay: 2.4s; }
        .floating-icon:nth-child(4) { bottom: 30%; right: 5%; animation-delay: 0.7s; }
        @keyframes float { 0%,100%{ transform: translateY(0px);} 50%{ transform: translateY(-18px);} }

        /* 区块标题 */
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            position: relative;
            margin-bottom: 1.8rem;
            display: inline-block;
        }
        .section-title i { color: var(--accent); margin-right: 10px; }
        .section-title::after {
            content: ''; position: absolute; bottom: -8px; left: 0;
            width: 40px; height: 3px; background: var(--primary); border-radius: 4px;
        }
        
        /* 海报卡片 */
        .movie-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            cursor: pointer;
            position: relative;
        }
        .movie-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.7);
        }
        .movie-card .poster-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 2/3;
            background: #252a40;
        }
        .movie-card img {
            width: 100%; height: 100%; object-fit: cover;
            display: block;
        }
        .quality-tag {
            position: absolute; top: 10px; left: 10px;
            background: rgba(0,0,0,0.7); color: #fff;
            font-size: 0.7rem; font-weight: 600;
            padding: 3px 8px; border-radius: 4px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        .card-rating {
            position: absolute; bottom: 10px; right: 10px;
            background: rgba(15,16,32,0.9); color: #ffbd4a;
            font-weight: 700; font-size: 0.8rem;
            padding: 2px 8px; border-radius: 20px;
            border: 1px solid var(--primary);
        }
        .movie-card .card-body {
            padding: 0.8rem 0.8rem 0.9rem;
        }
        .movie-card .card-title {
            font-size: 0.95rem; font-weight: 700;
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
            margin-bottom: 4px;
        }
        .movie-card .card-text {
            color: var(--text-muted); font-size: 0.75rem;
            display: flex; gap: 6px; align-items: center;
        }
        .card-hr { border-top: 1px solid var(--border); margin: 8px 0; }
        
        /* 横向滚动 */
        .scroll-row {
            display: flex;
            overflow-x: auto;
            gap: 16px;
            padding-bottom: 12px;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) var(--border);
        }
        .scroll-row::-webkit-scrollbar { height: 6px; }
        .scroll-row::-webkit-scrollbar-track { background: var(--border); }
        .scroll-row::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
        .scroll-row .movie-card { flex: 0 0 170px; }
        
        /* 手风琴 (观影贴士) */
        .tips-accordion .accordion-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            margin-bottom: 10px;
            border-radius: var(--radius);
            overflow: hidden;
        }
        .tips-accordion .accordion-button {
            background: var(--card-bg);
            color: var(--text);
            font-weight: 600;
            box-shadow: none;
            border-bottom: 1px solid var(--border);
        }
        .tips-accordion .accordion-button:not(.collapsed) {
            background: #1c1f35;
            color: var(--accent);
        }
        .tips-accordion .accordion-body { background: var(--card-bg); color: var(--text-muted); }
        
        /* 弹窗样式 */
        .custom-modal {
            display: none;
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(6px);
            z-index: 2000;
            align-items: center; justify-content: center;
        }
        .modal-card {
            background: var(--card-bg);
            border-radius: 16px;
            max-width: 640px;
            width: 90%;
            display: flex;
            flex-direction: row;
            box-shadow: 0 25px 40px rgba(0,0,0,0.6);
            border: 1px solid var(--border);
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
        }
        .modal-poster { width: 45%; background: #222; }
        .modal-poster img { width: 100%; height: 100%; object-fit: cover; }
        .modal-info { padding: 1.5rem; flex: 1; }
        .modal-info h4 { font-weight: 700; margin-bottom: 10px; }
        .modal-info p { color: var(--text-muted); font-size: 0.9rem; }
        .close-modal {
            position: absolute; top: 10px; right: 16px;
            font-size: 2rem; color: var(--text);
            cursor: pointer; opacity: 0.7; transition: 0.2s; z-index: 10;
            background: none; border: none; line-height: 1;
        }
        .close-modal:hover { opacity: 1; color: var(--accent); }
        @media (max-width: 576px) {
            .modal-card { flex-direction: column; }
            .modal-poster { width: 100%; height: 220px; }
        }

        /* 页脚等 */
        .footer-area {
            border-top: 1px solid var(--border);
            background: #0b0c18;
            padding: 2rem 0 1rem;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer-links a { color: var(--text-muted); text-decoration: none; margin: 0 12px 8px 0; display: inline-block; }
        .footer-links a:hover { color: var(--accent); }
        
        .badge-soft {
            background: rgba(109,93,252,0.2); color: var(--accent);
            padding: 4px 12px; border-radius: 30px; font-weight: 600;
        }
        .movie-extra-list { list-style: none; padding-left: 0; }
        .movie-extra-list li { margin-bottom: 8px; }
        .movie-extra-list i { color: var(--accent); margin-right: 8px; }

/* --- 子页面追加 --- */
.about-hero {
            background: linear-gradient(135deg, var(--bg) 0%, #1a1c3e 100%);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }
.about-hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
.about-hero h1 span {
            color: var(--primary);
        }
.about-hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
.about-section {
            padding: 60px 0;
        }
.about-section:nth-child(even) {
            background: rgba(26, 28, 46, 0.3);
        }
.about-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.about-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
.about-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 16px;
        }
.about-card h3 {
            color: var(--text);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
.about-card p {
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 0.95rem;
        }
.about-badge {
            background: rgba(109, 93, 252, 0.15);
            border: 1px solid var(--primary);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 12px;
        }
.about-quote {
            border-left: 4px solid var(--primary);
            background: rgba(109, 93, 252, 0.08);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 30px 0;
            color: var(--text);
            font-style: italic;
            font-size: 1.05rem;
        }
.about-stats {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            margin-top: 30px;
        }
.about-stat {
            text-align: center;
            flex: 1;
            min-width: 140px;
        }
.about-stat h2 {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 4px;
        }
.about-stat p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
.about-list {
            list-style: none;
            padding: 0;
            margin: 20px 0 0;
        }
.about-list li {
            color: var(--text-muted);
            padding: 8px 0;
            border-bottom: 1px solid rgba(42, 45, 68, 0.5);
            display: flex;
            align-items: center;
            gap: 10px;
        }
.about-list li:last-child {
            border-bottom: none;
        }
.about-list li i {
            color: var(--accent);
            font-size: 0.8rem;
            width: 20px;
            text-align: center;
        }
.about-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
.about-link:hover {
            color: var(--accent);
        }
.about-hero h1 {
                font-size: 2rem;
            }
.about-hero {
                padding: 60px 0 40px;
            }
.about-stats {
                gap: 16px;
            }

/* --- 子页面追加 --- */
.privacy-page { padding: 60px 0; }
.privacy-title { font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; }
.privacy-subtitle { color: var(--text-muted); margin-bottom: 40px; }
.privacy-section { margin-bottom: 40px; }
.privacy-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; color: var(--primary); }
.privacy-section p { line-height: 1.8; margin-bottom: 12px; }
.privacy-section ul { padding-left: 20px; margin-bottom: 12px; }
.privacy-section li { line-height: 1.8; margin-bottom: 6px; }
.privacy-note { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-top: 20px; }
.privacy-note h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; color: var(--accent); }
.privacy-title { font-size: 1.6rem; }
.privacy-section h2 { font-size: 1.2rem; }

/* --- 子页面追加 --- */
.disclaimer-hero {
            background: linear-gradient(135deg, var(--bg) 0%, #1a1c3a 100%);
            padding: 80px 0 40px;
            border-bottom: 1px solid var(--border);
        }
.disclaimer-content {
            max-width: 860px;
            margin: 0 auto;
            padding: 40px 20px 60px;
        }
.disclaimer-section {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 30px;
            margin-bottom: 24px;
            box-shadow: var(--shadow);
        }
.disclaimer-section h2 {
            color: var(--primary);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.disclaimer-section h2 i {
            color: var(--accent);
            font-size: 1.2rem;
        }
.disclaimer-section p {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 12px;
            font-size: 0.95rem;
        }
.disclaimer-section p.muted {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
.disclaimer-section ul {
            padding-left: 20px;
            margin-bottom: 12px;
        }
.disclaimer-section ul li {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 6px;
        }
.highlight-box {
            background: rgba(109, 93, 252, 0.1);
            border-left: 4px solid var(--primary);
            padding: 16px 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 20px 0;
        }
.highlight-box p {
            margin-bottom: 0;
            color: var(--text);
        }
.last-updated {
            color: var(--text-muted);
            font-size: 0.85rem;
            text-align: right;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }

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