:root {
            --primary: #dc2626;
            --accent: #fb923c;
            --bg-dark: #141013;
            --text-light: #fef2f2;
            --border-thick: 4px solid var(--primary);
            --shadow-hard: 8px 8px 0px rgba(220, 38, 38, 0.2);
        }

        * {
            border-radius: 0 !important;
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            letter-spacing: 0.3px;
        }

        h1, h2, h3, .display-1, .display-2, .display-3 {
            font-weight: 900;
            color: var(--text-light);
            text-transform: uppercase;
        }

        .text-accent {
            color: var(--accent);
        }

        .text-primary-brand {
            color: var(--primary);
        }

        /* 硬朗边框、阴影 */
        .hard-border {
            border: 2px solid var(--primary);
            box-shadow: var(--shadow-hard);
        }

        .navbar-lime {
            background: rgba(20, 16, 19, 0.9);
            border-bottom: 3px solid var(--primary);
            transition: all 0.2s ease;
            backdrop-filter: blur(10px);
        }

        .navbar-lime.scrolled {
            background: rgba(20, 16, 19, 0.75);
            backdrop-filter: blur(20px);
            border-bottom: 2px solid var(--accent);
        }

        .navbar-brand {
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--text-light) !important;
        }

        .navbar-brand i {
            color: var(--accent);
            margin-right: 8px;
        }

        .nav-link-custom {
            font-weight: 600;
            color: var(--text-light) !important;
            margin: 0 0.8rem;
            border-bottom: 2px solid transparent;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 1px;
        }

        .nav-link-custom:hover {
            border-bottom-color: var(--accent);
            color: var(--accent) !important;
        }

        /* hero 打字机效果 */
        .hero-title {
            font-size: clamp(3rem, 8vw, 5.5rem);
            font-weight: 900;
            line-height: 1;
            text-transform: uppercase;
            border-right: 0.08em solid var(--accent);
            white-space: nowrap;
            overflow: hidden;
            display: inline-block;
            animation: blink-caret 0.75s step-end infinite;
        }

        @keyframes blink-caret {
            0%, 100% { border-color: transparent; }
            50% { border-color: var(--accent); }
        }

        .hero-bg {
            background: linear-gradient(145deg, rgba(20, 16, 19, 0.85), rgba(20, 16, 19, 0.3)), url('{随机图片}') center/cover no-repeat;
            min-height: 75vh;
            display: flex;
            align-items: center;
            border-bottom: 6px solid var(--primary);
        }

        /* 卡片海报 */
        .movie-card {
            background: #1e191c;
            border: 2px solid #3f3f46;
            transition: transform 0.15s ease, border-color 0.15s ease;
            box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.4);
            cursor: pointer;
        }

        .movie-card:hover {
            transform: scale(1.03);
            border-color: var(--accent);
            box-shadow: 10px 10px 0px rgba(251, 146, 60, 0.15);
        }

        .movie-card img {
            width: 100%;
            aspect-ratio: 2 / 3;
            object-fit: cover;
            border-bottom: 2px solid #3f3f46;
        }

        .card-badge {
            background: var(--primary);
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 8px;
            position: absolute;
            top: 8px;
            left: 8px;
            border: 1px solid white;
            box-shadow: 2px 2px 0 black;
            letter-spacing: 0.5px;
        }

        .rating-badge {
            background: black;
            color: var(--accent);
            font-weight: 800;
            padding: 2px 6px;
            font-size: 0.8rem;
            border: 1px solid var(--accent);
            position: absolute;
            top: 8px;
            right: 8px;
        }

        .card-body {
            padding: 0.75rem;
        }

        .movie-title {
            font-weight: 700;
            font-size: 1rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .movie-meta {
            font-size: 0.75rem;
            color: #a1a1aa;
        }

        /* 区块标题 */
        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            border-left: 8px solid var(--primary);
            padding-left: 1rem;
            margin-bottom: 2rem;
            text-transform: uppercase;
        }

        .section-title i {
            color: var(--accent);
        }

        /* 时间线 */
        .timeline {
            border-left: 4px solid var(--primary);
            margin-left: 1rem;
            padding-left: 2rem;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.7rem;
            top: 0.2rem;
            width: 16px;
            height: 16px;
            background: var(--accent);
            border: 2px solid var(--primary);
        }

        /* 标签页 */
        .tab-custom .nav-link {
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--text-light);
            font-weight: 700;
            margin-right: 10px;
            padding: 8px 20px;
            text-transform: uppercase;
        }

        .tab-custom .nav-link.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .tab-content-custom {
            border: 2px solid var(--primary);
            padding: 1.5rem;
            background: #1a1518;
        }

        /* 友链 */
        .friend-links {
            border: 2px dashed var(--primary);
            padding: 1.5rem;
            background: #201a1d;
        }

        /* 页脚 */
        .footer {
            border-top: 4px solid var(--primary);
            background: #0e0c0e;
        }

        /* 弹窗样式 */
        .modal-lime {
            background: rgba(10, 8, 10, 0.7);
            backdrop-filter: blur(15px);
        }

        .modal-lime .modal-content {
            background: #1c1719;
            border: 3px solid var(--primary);
            box-shadow: 15px 15px 0px rgba(220, 38, 38, 0.2);
            color: var(--text-light);
        }

        .modal-lime .modal-header {
            border-bottom: 2px solid var(--primary);
        }

        .modal-lime .modal-footer {
            border-top: 2px solid var(--primary);
        }

        .modal-bg-img {
            background-size: cover;
            background-position: center;
            min-height: 300px;
            border-bottom: 3px solid var(--primary);
        }

        /* 工具 */
        .list-unstyled-custom li {
            padding: 0.3rem 0;
            border-bottom: 1px solid #3f3f46;
        }

        .list-unstyled-custom i {
            color: var(--accent);
            width: 24px;
        }

        /* 滚动渐显 */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s, transform 0.6s;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* 硬直角 */
        .no-radius {
            border-radius: 0;
        }

        /* 隐藏占位 */
        .img-placeholder {
            background: #2d282b;
        }

/* --- 子页面追加 --- */
/* 页面专属小范围补充样式 —— 覆盖/扩展站点CSS */
        .about-hero {
            background: linear-gradient(135deg, rgba(20,16,19,0.9) 0%, rgba(220,38,38,0.25) 100%), var(--bg-dark);
            padding: 5rem 0 3rem;
            border-bottom: var(--border-thick);
        }
.about-section {
            padding: 3.5rem 0;
            border-bottom: 1px solid rgba(220,38,38,0.15);
        }
.about-section:last-of-type { border-bottom: none; }
.about-icon-box {
            width: 56px; height: 56px;
            background: var(--primary);
            color: var(--text-light);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem;
            box-shadow: var(--shadow-hard);
            margin-bottom: 1.2rem;
        }
.about-card {
            background: rgba(220,38,38,0.06);
            border: 1px solid rgba(220,38,38,0.2);
            padding: 1.8rem 1.5rem;
            height: 100%;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
.about-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(220,38,38,0.15);
        }
.about-list {
            list-style: none; padding-left: 0;
        }
.about-list li {
            padding: 0.6rem 0 0.6rem 2rem;
            position: relative;
            border-bottom: 1px dashed rgba(220,38,38,0.15);
        }
.about-list li::before {
            content: '\f058';
            font-family: "Font Awesome 6 Free"; font-weight: 900;
            position: absolute; left: 0; top: 0.6rem;
            color: var(--accent);
        }
.stat-number {
            font-size: 2.5rem; font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
.stat-label {
            font-size: 0.9rem; color: rgba(254,242,242,0.7);
            text-transform: uppercase; letter-spacing: 1px;
        }
.quote-block {
            border-left: 4px solid var(--primary);
            background: rgba(220,38,38,0.05);
            padding: 1.5rem 1.8rem;
            font-style: italic;
            margin: 2rem 0;
        }

/* --- 子页面追加 --- */
/* 本页专属微调 —— 维持整体风格，仅补充细节 */
        .disclaimer-block {
            background: rgba(20, 16, 19, 0.7);
            border-left: var(--border-thick);
            padding: 1.75rem 1.5rem;
            margin-bottom: 2rem;
            border-radius: 0 12px 12px 0;
            box-shadow: var(--shadow-hard);
        }
.disclaimer-block h2 {
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.disclaimer-block h2 i {
            color: var(--accent);
        }
.disclaimer-block p, .disclaimer-block li {
            color: var(--text-light);
            opacity: 0.9;
            line-height: 1.8;
            font-weight: 300;
        }
.disclaimer-block ul {
            padding-left: 1.5rem;
            list-style: square;
        }
.disclaimer-block a {
            color: var(--accent);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
.disclaimer-block a:hover {
            color: var(--primary);
        }
.disclaimer-strong {
            color: var(--primary);
            font-weight: 600;
        }
/* 覆盖bootstrap默认可能出现的白块（若有 .card 等，但我们不使用） */
        .navbar, .navbar-dark, .navbar-lime {
            background-color: var(--bg-dark) !important;
        }
.navbar-brand, .nav-link-custom {
            color: var(--text-light) !important;
        }
.nav-link-custom.active {
            color: var(--accent) !important;
            font-weight: 700;
        }
footer a {
            color: var(--accent);
        }

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