:root {
            --primary: #6d5dfc;
            --accent: #22d3ee;
            --bg-dark: #0f1020;
            --text-light: #e8eaf6;
            --border-thick: 4px solid var(--primary);
            --shadow-hard: 8px 8px 0px rgba(109, 93, 252, 0.3);
        }
        * { font-family: 'Inter', sans-serif; }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            scroll-behavior: smooth;
        }
        /* 全直角硬朗 + 粗边框 + 硬阴影 */
        .hard-card {
            background: #151729;
            border: 2px solid #2d2f4a;
            border-radius: 0 !important;
            box-shadow: 5px 5px 0 rgba(0,0,0,0.5);
            transition: all 0.2s ease;
        }
        .hard-card:hover {
            transform: translateY(-6px);
            border-color: var(--primary);
            box-shadow: 10px 10px 0 rgba(109, 93, 252, 0.25);
        }
        .btn-angled {
            border-radius: 0;
            border: 2px solid var(--primary);
            font-weight: 700;
            background: transparent;
            color: var(--text-light);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .btn-angled::after {
            content: '';
            position: absolute;
            left: -100%; top: 0; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(34,211,238,0.3), transparent);
            transition: left 0.3s;
            z-index: -1;
        }
        .btn-angled:hover::after { left: 100%; }
        .btn-angled:hover {
            background: var(--primary);
            border-color: var(--accent);
            color: white;
        }
        .navbar-custom {
            background: rgba(15, 16, 32, 0.8);
            backdrop-filter: blur(15px);
            border-bottom: 3px solid var(--primary);
            transition: background 0.3s;
        }
        .navbar-custom.scrolled {
            background: rgba(15, 16, 32, 0.98);
        }
        .navbar-brand {
            font-weight: 900;
            font-size: 2rem;
            color: var(--text-light) !important;
            letter-spacing: 1px;
        }
        .navbar-brand i { color: var(--accent); margin-right: 10px; }
        .nav-link {
            font-weight: 600;
            color: var(--text-light) !important;
            border-left: 2px solid transparent;
            padding: 0.5rem 1rem;
        }
        .nav-link:hover { border-left-color: var(--accent); color: var(--accent) !important; }
        .hero-tagcloud {
            background: #0b0c1a;
            padding: 3.5rem 0 2rem;
            border-bottom: 4px solid var(--primary);
        }
        .tag-cloud-item {
            display: inline-block;
            margin: 0.5rem 1rem;
            font-size: 1.4rem;
            font-weight: 700;
            color: #6b6e9e;
            border-bottom: 2px dashed var(--primary);
            transition: 0.2s;
            cursor: default;
        }
        .tag-cloud-item:hover { color: var(--accent); transform: scale(1.1); }
        .section-title {
            font-size: 2.8rem;
            font-weight: 900;
            border-left: 12px solid var(--accent);
            padding-left: 1.2rem;
            letter-spacing: -0.02em;
            color: #f0f2ff;
            text-transform: uppercase;
            margin: 2rem 0 1.8rem;
        }
        .section-title small {
            font-size: 1.2rem;
            color: var(--primary);
            font-weight: 600;
        }
        .movie-card {
            background: #171a2e;
            border: 3px solid #2c2f52;
            border-radius: 0;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.15s ease;
        }
        .movie-card:hover {
            border-color: var(--accent);
            box-shadow: 10px 10px 0 var(--primary);
            transform: scale(1.02);
        }
        .movie-card img {
            width: 100%;
            aspect-ratio: 2/3;
            object-fit: cover;
            background: #2a2c45;
            opacity: 0;
            transition: opacity 0.2s;
            border-bottom: 3px solid #22244b;
        }
        .movie-card img.loaded { opacity: 1; }
        .movie-badge {
            position: absolute;
            top: 8px; left: 8px;
            background: #0f1020;
            border: 2px solid var(--accent);
            color: var(--accent);
            font-weight: 800;
            font-size: 0.75rem;
            padding: 2px 8px;
            z-index: 3;
        }
        .movie-rating {
            position: absolute;
            bottom: 8px; right: 8px;
            background: rgba(0,0,0,0.7);
            border: 1px solid #ffc107;
            color: #ffc107;
            font-weight: bold;
            padding: 0 6px;
            font-size: 0.9rem;
        }
        .movie-info {
            padding: 12px;
            background: #171a2e;
        }
        .movie-title {
            font-weight: 800;
            font-size: 1.1rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .movie-meta {
            color: #a0a3c2;
            font-size: 0.85rem;
        }
        .timeline-list {
            border-left: 5px solid var(--primary);
            margin: 2rem 0;
            padding-left: 1.8rem;
        }
        .timeline-item {
            position: relative;
            padding: 1.2rem 0;
            border-bottom: 1px dashed #3b3e63;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.05rem;
            top: 1.5rem;
            width: 18px; height: 18px;
            background: var(--accent);
            border: 3px solid #0f1020;
        }
        .footer {
            border-top: 4px solid var(--primary);
            padding: 2rem 0;
            margin-top: 3rem;
            background: #0b0c1a;
        }
        .faq-block, .pickup-block, .mood-block {
            background: #12142a;
            border: 2px solid #2d2f4a;
            padding: 1.8rem;
            margin-bottom: 2rem;
        }
        .tab-btn {
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--text-light);
            font-weight: 600;
            padding: 0.3rem 1rem;
            margin-right: 0.5rem;
            cursor: pointer;
            border-radius: 0;
        }
        .tab-btn.active {
            background: var(--primary);
            color: white;
        }
        .modal-film-img { width: 100%; border: 3px solid var(--primary); }
        .modal-content-97 { border-radius: 0; border: 4px solid var(--primary); background: #171a2e; color: var(--text-light);}
        .btn-close-97 { filter: invert(1); }
        .card-shadow-custom { box-shadow: 6px 6px 0 #00000055; }
        .lazy-placeholder { background: #24264a; }
        /* 全直角全局 */
        * { border-radius: 0 !important; }

/* --- 子页面追加 --- */
/* 本页专属的小样式,补充到站点CSS上 */
        .about-hero {
            padding: 60px 0 30px;
        }
.about-hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }
.about-hero .lead-97 {
            font-size: 1.2rem;
            color: var(--text-light);
            opacity: 0.85;
            max-width: 720px;
            margin: 0 auto;
        }
.about-section {
            margin-top: 40px;
        }
.about-section h2 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 18px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--primary);
            display: inline-block;
        }
.about-section p {
            line-height: 1.8;
            margin-bottom: 16px;
            opacity: 0.92;
        }
.feature-list {
            list-style: none;
            padding: 0;
            margin: 20px 0 0;
        }
.feature-list li {
            padding: 10px 0 10px 28px;
            position: relative;
            border-bottom: 1px solid rgba(109, 93, 252, 0.15);
        }
.feature-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--accent);
            position: absolute;
            left: 0;
            top: 10px;
            font-size: 0.9rem;
        }
.stats-row {
            margin-top: 30px;
        }
.stat-item {
            text-align: center;
            padding: 20px 10px;
            border: 2px solid var(--primary);
            background: rgba(109, 93, 252, 0.06);
            border-radius: 12px;
        }
.stat-item .num {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary);
        }
.stat-item .label {
            font-size: 0.9rem;
            opacity: 0.75;
            margin-top: 4px;
        }
.milestone-list {
            margin: 15px 0 0;
            padding-left: 0;
            list-style: none;
        }
.milestone-list li {
            padding: 8px 0 8px 30px;
            position: relative;
        }
.milestone-list li::before {
            content: '\f017';
            font-family: 'Font Awesome 6 Free';
            font-weight: 400;
            color: var(--accent);
            position: absolute;
            left: 0;
            top: 8px;
        }
.value-card {
            padding: 24px;
            border: 2px solid rgba(109, 93, 252, 0.4);
            border-radius: 14px;
            background: rgba(109, 93, 252, 0.04);
            height: 100%;
            transition: all 0.25s ease;
        }
.value-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-hard);
            transform: translate(-2px, -2px);
        }
.value-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 12px;
        }
.value-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
.value-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            opacity: 0.85;
            margin-bottom: 0;
        }

/* --- 子页面追加 --- */
/* 确保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-color: transparent !important;
            color: var(--text-light) !important;
            border-color: var(--primary) !important;
        }
.navbar {
            background-color: var(--bg-dark) !important;
            border-bottom: var(--border-thick);
        }
.navbar-brand, .nav-link {
            color: var(--text-light) !important;
        }
.nav-link.active, .nav-link:hover {
            color: var(--accent) !important;
            text-shadow: 0 0 6px rgba(34, 211, 238, 0.6);
        }
/* 硬卡片风格 */
        .hard-card {
            background: rgba(15, 16, 32, 0.8);
            border: 2px solid var(--primary);
            box-shadow: var(--shadow-hard);
            padding: 1.5rem;
            border-radius: 0;
            backdrop-filter: blur(2px);
        }
.section-title span {
            color: var(--accent);
        }
.timeline-item h3 {
            font-weight: 700;
            color: var(--accent);
            font-size: 1.4rem;
        }
.timeline-item p, .timeline-item li {
            color: rgba(232, 234, 246, 0.9);
            line-height: 1.7;
        }
.footer a {
            color: var(--accent);
            text-decoration: none;
        }
.footer a:hover {
            text-decoration: underline;
        }
/* 卡片内列表微调 */
        .list-custom {
            list-style: none;
            padding-left: 0;
        }
.list-custom li {
            padding: 0.4rem 0;
            border-bottom: 1px dashed rgba(109, 93, 252, 0.4);
        }
.list-custom li i {
            color: var(--accent);
            margin-right: 0.6rem;
        }
/* 高亮导航当前页 */
        .nav-link.disclaimer-link {
            color: var(--accent) !important;
            border-bottom: 2px solid var(--accent);
        }

/* --- 子页面追加 --- */
/* 覆盖 Bootstrap 卡片等组件配色，与站点风格一致 */
        .card, .card-body, .card-title, .card-text, .card-header, .card-footer {
            background: var(--card-bg, #1b1c2b);
            color: var(--text-light);
            border-color: var(--border-color, #34365c);
        }
.form-control, .form-select {
            background: rgba(0,0,0,0.35);
            color: var(--text-light);
            border-color: var(--border-color, #34365c);
        }
.form-control::placeholder {
            color: rgba(255,255,255,0.45);
        }
.list-group-item {
            background: var(--card-bg, #1b1c2b);
            color: var(--text-light);
            border-color: var(--border-color, #34365c);
        }
.accordion-item, .accordion-button, .accordion-body {
            background: var(--card-bg, #1b1c2b);
            color: var(--text-light);
            border-color: var(--border-color, #34365c);
        }
.modal-content, .modal-header, .modal-body {
            background: var(--card-bg, #1b1c2b);
            color: var(--text-light);
        }
.dropdown-menu, .dropdown-item {
            background: var(--card-bg, #1b1c2b);
            color: var(--text-light);
        }
/* 确保卡片无默认白底 */
        .hard-card {
            background: var(--card-bg, #1b1c2b);
            color: var(--text-light);
            border: 1px solid var(--border-color, #34365c);
        }
/* 榜单列表样式 */
        .rank-table {
            width: 100%;
            border-collapse: collapse;
        }
.rank-table th, .rank-table td {
            padding: 12px 10px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            text-align: left;
            color: var(--text-light);
        }
.rank-table th {
            color: var(--primary);
            font-weight: 700;
            border-bottom: 2px solid var(--primary);
        }
.rank-badge {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            font-weight: 800;
            padding: 2px 10px;
            border-radius: 20px;
            margin-right: 10px;
            font-size: 0.9rem;
        }
.rank-title {
            font-weight: 600;
        }
.rank-meta {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
        }