:root {
            --c-main: #06b6d4;
            --c-accent: #ec4899;
            --c-bg: #0c0a1a;
            --c-text: #e0f2fe;
            --c-border: rgba(6, 182, 212, 0.3);
            --c-card-bg: #151226;
            --c-grey: #8899aa;
        }
        * { border-radius: 0 !important; }
        body {
            background-color: var(--c-bg);
            color: var(--c-text);
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            font-size: 0.9rem;
            letter-spacing: 0.2px;
        }
        h1,h2,h3,h4,h5,.navbar-brand {
            font-weight: 900;
            letter-spacing: -0.02em;
            color: #ffffff;
        }
        a { color: var(--c-main); text-decoration: none; }
        a:hover { color: var(--c-accent); }

        /* 极简无阴影 纯描边分割 */
        .card, .list-group-item, .border-c {
            background: var(--c-card-bg);
            border: 1px solid var(--c-border);
            box-shadow: none;
        }
        .section-title {
            border-bottom: 3px solid var(--c-main);
            padding-bottom: 0.3rem;
            display: inline-block;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 1.1rem;
            margin-bottom: 1.2rem;
            letter-spacing: 1px;
        }
        .section-title i { color: var(--c-accent); margin-right: 8px; }

        /* 密集排版 */
        .card .card-body { padding: 0.65rem; }
        .card-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; }
        .card-text, .meta { font-size: 0.72rem; color: var(--c-grey); }

        /* 海报hover效果 */
        .poster-card {
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.3s ease;
            border: 1px solid var(--c-border);
            background: var(--c-card-bg);
            transform-style: preserve-3d;
            position: relative;
        }
        .poster-card:hover {
            transform: translateY(-4px) scale(1.01);
            box-shadow: 0 10px 20px -5px rgba(6, 182, 212, 0.2);
            border-color: var(--c-main);
            z-index: 10;
        }
        .poster-card img {
            width: 100%;
            aspect-ratio: 2/3;
            object-fit: cover;
            background: #1a1730;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .poster-card img.loaded { opacity: 1; }

        /* 角标 */
        .badge-corner {
            position: absolute;
            top: 6px;
            right: 6px;
            background: rgba(0,0,0,0.7);
            color: #fff;
            font-size: 0.6rem;
            padding: 2px 5px;
            border: 1px solid var(--c-main);
            font-weight: 600;
            backdrop-filter: blur(2px);
            z-index: 5;
        }

        /* 横向滚动 */
        .h-scroll {
            display: flex;
            overflow-x: auto;
            gap: 10px;
            padding-bottom: 8px;
            scrollbar-width: thin;
            scrollbar-color: var(--c-main) #1e1b30;
        }
        .h-scroll::-webkit-scrollbar { height: 4px; }
        .h-scroll::-webkit-scrollbar-thumb { background: var(--c-main); }
        .h-scroll .poster-card { min-width: 140px; flex: 0 0 auto; width: 140px; }

        /* 打字机动画 */
        @keyframes typing { from { width: 0; } to { width: 100%; } }
        .typewriter {
            overflow: hidden;
            white-space: nowrap;
            display: inline-block;
            animation: typing 3s steps(30, end) forwards;
            border-right: 2px solid var(--c-main);
            max-width: 100%;
        }

        /* 滚动渐显延迟 */
        .reveal-group > * {
            opacity: 0;
            animation: fadeUp 0.6s forwards;
        }
        .reveal-group > *:nth-child(1) { animation-delay: 0.1s; }
        .reveal-group > *:nth-child(2) { animation-delay: 0.2s; }
        .reveal-group > *:nth-child(3) { animation-delay: 0.3s; }
        .reveal-group > *:nth-child(4) { animation-delay: 0.4s; }
        .reveal-group > *:nth-child(5) { animation-delay: 0.5s; }
        .reveal-group > *:nth-child(6) { animation-delay: 0.6s; }
        .reveal-group > *:nth-child(7) { animation-delay: 0.7s; }
        .reveal-group > *:nth-child(8) { animation-delay: 0.8s; }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* 按钮光泽 */
        .btn-special {
            background: var(--c-main);
            color: #fff;
            border: 1px solid var(--c-main);
            position: relative;
            overflow: hidden;
            font-weight: 600;
        }
        .btn-special::after {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.4s;
        }
        .btn-special:hover::after { left: 100%; }

        /* 表格对比 */
        .table-compare { width: 100%; border-collapse: collapse; }
        .table-compare td, .table-compare th {
            border: 1px solid var(--c-border);
            padding: 6px 8px;
            font-size: 0.75rem;
        }

        /* 翻转卡片 */
        .flip-card {
            perspective: 1000px;
            cursor: pointer;
            height: 100%;
            background: transparent;
            border: none;
        }
        .flip-inner {
            position: relative;
            width: 100%; height: 100%;
            transition: transform 0.6s;
            transform-style: preserve-3d;
            background: transparent;
        }
        .flip-card.flipped .flip-inner { transform: rotateY(180deg); }
        .flip-front, .flip-back {
            backface-visibility: hidden;
            border: 1px solid var(--c-border);
            background: var(--c-card-bg);
        }
        .flip-back {
            position: absolute; top: 0; left: 0;
            width: 100%; height: 100%;
            transform: rotateY(180deg);
            padding: 10px;
            font-size: 0.7rem;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            body { font-size: 0.8rem; }
            .h-scroll .poster-card { min-width: 120px; width: 120px; }
            .navbar-nav { background: var(--c-bg); }
        }

/* --- 子页面追加 --- */
/* 覆盖 Bootstrap 组件默认白底黑字 */
        .card, .card-body, .card-title, .card-text {
            background: var(--c-card-bg);
            color: var(--c-text);
            border-color: var(--c-border);
        }
.nav-link {
            color: var(--c-text);
        }
.nav-link:hover {
            color: var(--c-main);
        }
/* 关于页专属样式 */
        .about-hero {
            padding: 80px 0 40px;
            text-align: center;
            position: relative;
        }
.about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--c-main), var(--c-accent));
            border-radius: 2px;
        }
.about-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--c-text);
        }
.about-hero p {
            color: var(--c-grey);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
.about-section {
            padding: 60px 0;
            border-bottom: 1px solid rgba(6, 182, 212, 0.1);
        }
.about-section:last-child {
            border-bottom: none;
        }
.about-section h2 {
            color: var(--c-main);
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.75rem;
        }
.about-section .lead {
            color: var(--c-text);
            font-size: 1.05rem;
            line-height: 1.8;
        }
.about-section .text-muted-custom {
            color: var(--c-grey);
            line-height: 1.8;
        }
.about-icon {
            font-size: 2.5rem;
            color: var(--c-accent);
            margin-bottom: 1rem;
        }
.about-card {
            background: var(--c-card-bg);
            border: 1px solid var(--c-border);
            border-radius: 12px;
            padding: 30px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.about-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
        }
.about-card .card-title {
            color: var(--c-main);
            font-weight: 600;
            margin-bottom: 1rem;
        }
.about-card .card-text {
            color: var(--c-text);
            line-height: 1.7;
        }
.about-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
.stat-item {
            text-align: center;
        }
.stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--c-accent);
        }
.stat-label {
            color: var(--c-grey);
            font-size: 0.9rem;
            margin-top: 0.3rem;
        }
.about-quote {
            background: rgba(6, 182, 212, 0.05);
            border-left: 4px solid var(--c-main);
            padding: 20px 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
.about-quote p {
            color: var(--c-text);
            font-style: italic;
            margin: 0;
            font-size: 1.05rem;
        }
.about-quote .quote-author {
            color: var(--c-grey);
            font-style: normal;
            font-size: 0.9rem;
            margin-top: 10px;
            text-align: right;
        }
.nav-link.active {
            color: var(--c-main) !important;
            font-weight: 600;
        }
.navbar {
            background: rgba(12, 10, 26, 0.95) !important;
            backdrop-filter: blur(10px);
        }
.navbar-toggler {
            border-color: var(--c-border) !important;
        }
.navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(6, 182, 212, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        }

/* --- 子页面追加 --- */
/* 由于该站已有style.css，这里仅覆盖少量bootstrap组件默认白底问题 */
        .card, .card-body { background: var(--c-card-bg); color: var(--c-text); border-color: var(--c-border); }
.list-group-item { background: var(--c-card-bg); color: var(--c-text); border-color: var(--c-border); }
.form-control, .form-select { background: rgba(0,0,0,0.35); color: var(--c-text); border-color: var(--c-border); }
.form-control::placeholder { color: rgba(255,255,255,0.45); }
.navbar, .navbar-nav .nav-link { color: var(--c-text); }
.navbar-nav .nav-link.active { color: var(--c-accent); }
.btn-outline-secondary { color: var(--c-text); border-color: var(--c-border); }
.btn-outline-secondary:hover { background: var(--c-main); border-color: var(--c-main); color: #000; }
/* 确保所有卡片无白底 */
        .poster-card { background: var(--c-card-bg); }
/* 本页特有小调整 */
        .movie-cover-img { aspect-ratio: 2/3; object-fit: cover; width: 100%; border-radius: 8px; }
.table-compare td { background: var(--c-card-bg); border-color: var(--c-border); }
.hover-lift { transition: transform 0.2s; }
.hover-lift:hover { transform: translateY(-4px); }
/* 自定义标签 */
        .genre-tag { background: rgba(6,182,212,0.2); color: var(--c-text); border-radius: 20px; padding: 4px 12px; font-size: 0.8rem; }
.pagination .page-link { background: var(--c-card-bg); border-color: var(--c-border); color: var(--c-text); }
.pagination .page-item.active .page-link { background: var(--c-main); border-color: var(--c-main); color: #000; }
/* 导航品牌名保持完整连续 */
        .navbar-brand span { white-space: nowrap; }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.table { color:#e0f2fe !important; border-color:rgba(255,255,255,.12) !important; --bs-table-bg:transparent !important; --bs-table-color:#e0f2fe !important; }
