:root {
            --primary: #6d5dfc;
            --accent: #22d3ee;
            --bg-dark: #0f1020;
            --text-light: #e8eaf6;
            --radius-lg: 24px;
            --radius-md: 16px;
            --shadow-soft: 0 8px 30px rgba(0,0,0,0.6);
        }
        * { font-family: 'Inter', sans-serif; }
        body {
            background: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
        }
        /* 滚动进度条 */
        #scroll-progress {
            position: fixed;
            top: 0; left: 0;
            height: 4px;
            width: 0%;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            z-index: 9999;
            transition: width 0.2s;
        }
        /* 回到顶部 */
        #back-to-top {
            position: fixed;
            bottom: 30px; right: 30px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            width: 48px; height: 48px;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(109, 93, 252, 0.5);
            z-index: 999;
            cursor: pointer;
            transition: all 0.3s;
        }
        #back-to-top.show { display: flex; }
        #back-to-top:hover { background: var(--accent); color: #0f1020; transform: scale(1.1); }

        /* 导航 */
        .navbar-国产大片免费观看电视剧在 {
            background: rgba(15, 16, 32, 0.9) !important;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(109, 93, 252, 0.3);
        }
        .navbar-brand {
            font-weight: 900;
            font-size: 1.6rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .navbar-nav .nav-link {
            color: var(--text-light);
            font-weight: 500;
            margin: 0 0.5rem;
            border-radius: 30px;
            padding: 0.5rem 1.2rem;
            transition: all 0.2s;
        }
        .navbar-nav .nav-link:hover {
            background: rgba(109, 93, 252, 0.2);
            color: var(--accent);
        }
        .navbar-toggler { border-color: rgba(255,255,255,0.3); }

        /* hero */
        .hero-section {
            position: relative;
            min-height: 70vh;
            background-image: url('{随机图片}');
            background-size: cover;
            background-position: center 30%;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15,16,32,0.4) 0%, rgba(15,16,32,0.9) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 3rem 0 5rem 0;
            max-width: 1200px;
            margin: 0 auto;
        }
        .hero-grad-text {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.1;
            text-shadow: 0 4px 20px rgba(109,93,252,0.3);
            animation: float 4s ease-in-out infinite;
        }
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0); }
        }
        .hero-sub {
            font-size: 1.2rem;
            color: #c0c6e0;
            max-width: 700px;
            font-weight: 400;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(34, 211, 238, 0.2);
            border: 1px solid var(--accent);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }

        /* 区块标题 */
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            margin: 2.5rem 0 1.5rem 0;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px; left: 0;
            width: 60%;
            height: 4px;
            border-radius: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        .section-title i { color: var(--accent); margin-right: 0.5rem; }

        /* 影片卡片 */
        .movie-card {
            background: rgba(255,255,255,0.05);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-soft);
            position: relative;
            height: 100%;
            cursor: pointer;
            margin-bottom: 20px;
        }
        .movie-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 12px 40px rgba(109,93,252,0.3);
        }
        .movie-poster {
            width: 100%;
            aspect-ratio: 2 / 3;
            object-fit: cover;
            background: #1a1c2e;
            display: block;
            position: relative;
        }
        .movie-poster-wrapper {
            position: relative;
            overflow: hidden;
        }
        .movie-poster-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15,16,32,0.7) 0%, transparent 50%);
        }
        .play-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15,16,32,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 2;
        }
        .movie-card:hover .play-overlay {
            opacity: 1;
        }
        .play-overlay i {
            font-size: 3rem;
            color: white;
            background: rgba(109,93,252,0.7);
            border-radius: 50%;
            padding: 1rem;
            backdrop-filter: blur(4px);
        }
        .movie-info {
            padding: 12px 12px 16px 12px;
            position: relative;
            z-index: 1;
        }
        .movie-title {
            font-weight: 700;
            font-size: 1rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .movie-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #9ea3c0;
            margin-top: 4px;
        }
        .movie-rating {
            color: var(--accent);
            font-weight: 600;
            font-family: 'Courier New', monospace;
        }

        /* 侧滑详情 */
        .detail-panel {
            position: fixed;
            top: 0; right: -100%;
            width: 420px;
            max-width: 90vw;
            height: 100vh;
            background: #171a2b;
            z-index: 10000;
            transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: -10px 0 40px rgba(0,0,0,0.7);
            overflow-y: auto;
            border-left: 1px solid var(--primary);
        }
        .detail-panel.open { right: 0; }
        .detail-panel .close-btn {
            position: absolute;
            top: 20px; right: 20px;
            background: rgba(255,255,255,0.1);
            border: none;
            border-radius: 50%;
            width: 40px; height: 40px;
            color: white;
            font-size: 1.2rem;
            z-index: 5;
            cursor: pointer;
        }
        .detail-panel img {
            width: 100%;
            aspect-ratio: 2/3;
            object-fit: cover;
            margin-bottom: 1rem;
        }
        .detail-content { padding: 0 20px 20px 20px; }
        .detail-content h5 { font-weight: 700; }
        .detail-content p { font-size: 0.9rem; color: #b0b6d0; }
        .detail-field { margin-bottom: 8px; }
        .detail-field strong { color: var(--accent); margin-right: 8px; }
        .backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            z-index: 9999;
            display: none;
        }
        .backdrop.show { display: block; }

        /* 对比表格 */
        .compare-table {
            background: rgba(255,255,255,0.03);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255,255,255,0.1);
            overflow: hidden;
        }
        .compare-table table {
            width: 100%;
            color: var(--text-light);
            font-size: 0.9rem;
            border-collapse: collapse;
        }
        .compare-table th, .compare-table td {
            padding: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            text-align: left;
        }
        .compare-table th {
            background: rgba(109, 93, 252, 0.1);
            font-weight: 700;
        }
        .compare-table tr:last-child th { border-bottom: none; }

        /* 友情链接 */
        .friend-links {
            background: rgba(255,255,255,0.02);
            border-radius: var(--radius-lg);
            padding: 2rem;
            margin-top: 3rem;
            border: 1px solid rgba(255,255,255,0.05);
        }

        /* 编号清单 */
        .tips-list {
            list-style: none;
            counter-reset: tip;
            padding-left: 0;
        }
        .tips-list li {
            counter-increment: tip;
            padding: 10px 0;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
            display: flex;
            align-items: baseline;
        }
        .tips-list li::before {
            content: counter(tip);
            background: var(--primary);
            color: white;
            font-weight: bold;
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        footer {
            background: rgba(0,0,0,0.4);
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        .footer-link {
            color: #9ea3c0;
            margin: 0 10px;
            text-decoration: none;
        }
        .footer-link:hover { color: var(--accent); }
        .mono { font-family: 'Courier New', monospace; }

/* --- 子页面追加 --- */
/* 针对本页特殊内容, 仅覆盖 bootstrap 默认白底黑字, 并保留站点风格 */
        .about-section .card, .about-section .card-body {
            background: rgba(15,16,32,0.6);
            color: var(--text-light);
            border: 1px solid rgba(109,93,252,0.25);
            border-radius: var(--radius-md);
        }
.about-section .form-control, .about-section .form-select {
            background: rgba(0,0,0,0.35);
            color: var(--text-light);
            border-color: rgba(109,93,252,0.4);
        }
.about-section .form-control::placeholder {
            color: rgba(232,234,246,0.5);
        }
.about-section .list-group-item {
            background: rgba(15,16,32,0.7);
            color: var(--text-light);
            border-color: rgba(109,93,252,0.2);
        }
/* 小标题统一带品牌色点缀 */
        .section-title-sm {
            color: var(--primary);
            font-weight: 700;
            letter-spacing: 0.5px;
            border-left: 4px solid var(--accent);
            padding-left: 14px;
            margin-bottom: 20px;
        }
.about-hero {
            background: linear-gradient(135deg, rgba(109,93,252,0.2) 0%, rgba(34,211,238,0.1) 100%);
            border-radius: var(--radius-lg);
            padding: 3rem 2rem;
            box-shadow: var(--shadow-soft);
        }
.about-stat {
            background: rgba(109,93,252,0.08);
            border-radius: var(--radius-md);
            padding: 1.5rem 1rem;
            text-align: center;
            border: 1px solid rgba(109,93,252,0.3);
        }
.about-stat i {
            color: var(--accent);
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
.about-stat .num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-light);
        }
.timeline-item {
            border-left: 2px solid var(--primary);
            padding-left: 20px;
            margin-bottom: 25px;
        }
.timeline-item .date {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.9rem;
        }

/* --- 子页面追加 --- */
/* 覆盖 Bootstrap 组件默认白底黑字 —— 本站深色主题 */
        .card, .card-body, .card-title, .card-text, .card-header, .card-footer,
        .form-control, .form-select, .form-label, .input-group-text,
        .table, .list-group-item, .accordion-item, .accordion-button, .accordion-body,
        .modal-content, .modal-header, .modal-body, .dropdown-menu, .dropdown-item,
        .nav-link, .navbar, .navbar-brand, .btn-light, .btn-outline-* {
            background: transparent;
            color: var(--text-light);
            border-color: rgba(255,255,255,0.1);
        }
/* 确保导航与首页风格一致 */
        .navbar {
            background: rgba(15,16,32,0.9);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(109,93,252,0.2);
        }
/* 本页小标题风格 */
        .disclaimer-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            letter-spacing: -0.3px;
        }
.disclaimer-card {
            background: rgba(255,255,255,0.04);
            border-radius: var(--radius-md);
            padding: 1.8rem 2rem;
            border-left: 4px solid var(--primary);
            box-shadow: var(--shadow-soft);
            margin-bottom: 1.8rem;
        }
.disclaimer-card p {
            color: rgba(232,234,246,0.9);
            line-height: 1.8;
            font-weight: 300;
        }
.disclaimer-card strong {
            color: var(--accent);
            font-weight: 600;
        }
.list-custom {
            list-style: none;
            padding-left: 0;
        }
.list-custom li {
            padding: 0.4rem 0;
            color: rgba(232,234,246,0.85);
            font-weight: 300;
        }
.list-custom li i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 0.9rem;
        }
.friend-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 400;
            border-bottom: 1px dotted rgba(255,255,255,0.2);
            transition: color 0.2s;
        }
.friend-links a:hover {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }
/* 高亮当前导航 */
        .navbar .nav-item .nav-link.active {
            color: var(--primary) !important;
            font-weight: 600;
        }
.disclaimer-card {
                padding: 1.2rem;
            }
.disclaimer-title {
                font-size: 1.5rem;
            }

/* --- 子页面追加 --- */
/* 子页面专有样式——保持与主题一致 */
        .privacy-hero {
            background: var(--bg-dark);
            padding: 4rem 0 2.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
.privacy-hero .hero-badge {
            background: rgba(109, 93, 252, 0.2);
            border: 1px solid var(--primary);
            color: var(--accent);
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-weight: 500;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 1.2rem;
        }
.privacy-hero h1 {
            color: var(--text-light);
            font-weight: 800;
            font-size: 2.6rem;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }
.privacy-hero h1 span {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.privacy-hero p {
            color: rgba(232, 234, 246, 0.7);
            max-width: 700px;
            font-size: 1.1rem;
            line-height: 1.7;
        }
.privacy-content {
            background: var(--bg-dark);
            padding: 3rem 0 5rem;
        }
.privacy-card {
            background: rgba(20, 22, 40, 0.7);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: var(--radius-lg);
            padding: 2.2rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(4px);
            transition: border-color 0.3s, background 0.3s;
        }
.privacy-card:hover {
            border-color: rgba(109, 93, 252, 0.5);
            background: rgba(25, 27, 48, 0.8);
        }
.privacy-card h2 {
            color: var(--accent);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
.privacy-card h2 i {
            color: var(--primary);
            font-size: 1.4rem;
        }
.privacy-card p, .privacy-card li {
            color: rgba(232, 234, 246, 0.85);
            line-height: 1.8;
            font-size: 0.98rem;
        }
.privacy-card ul {
            padding-left: 1.2rem;
            list-style-type: none;
        }
.privacy-card ul li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.6rem;
        }
.privacy-card ul li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 0.9rem;
            top: 0.2rem;
        }
.privacy-card .highlight {
            color: var(--accent);
            font-weight: 600;
        }
.privacy-footer-note {
            text-align: center;
            margin-top: 3rem;
            padding: 1.5rem;
            border: 1px dashed rgba(109, 93, 252, 0.4);
            border-radius: var(--radius-md);
            background: rgba(109, 93, 252, 0.06);
        }
.privacy-footer-note p {
            margin: 0;
            color: rgba(232, 234, 246, 0.7);
        }
.privacy-hero h1 {
                font-size: 2rem;
            }
.privacy-card {
                padding: 1.5rem;
            }