:root {
            --main: #10b981;
            --accent: #fbbf24;
            --bg: #0a1410;
            --text: #ecfdf5;
            --font-serif: "Noto Serif SC", "Source Han Serif SC", "思源宋体", Georgia, serif;
            --font-sans: "Inter", "Source Han Sans SC", "思源黑体", -apple-system, sans-serif;
        }
        * { margin:0; padding:0; box-sizing: border-box; }
        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: var(--font-sans);
            overflow-x: hidden;
        }
        h1,h2,h3,h4,.display-font { font-family: var(--font-serif); font-weight: 700; letter-spacing: 1px; }
        a { color: var(--text); text-decoration: none; transition: 0.2s; }
        a:hover { color: var(--main); }
        .navbar-custom {
            background: rgba(10, 20, 16, 0.85);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(16, 185, 129, 0.3);
            transition: background 0.3s ease;
            z-index: 1030;
        }
        .navbar-custom.scrolled {
            background: rgba(10, 20, 16, 0.98);
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .navbar-brand {
            font-family: var(--font-serif);
            font-weight: 800;
            font-size: 1.6rem;
            color: var(--main) !important;
            letter-spacing: 2px;
        }
        .navbar-brand i { color: var(--accent); margin-right: 4px; }
        .nav-link {
            color: var(--text) !important;
            font-weight: 500;
            margin: 0 8px;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-link:hover { border-bottom-color: var(--main); color: var(--main) !important; }
        .navbar-toggler { border-color: rgba(255,255,255,0.3); }
        .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%28255,255,255,0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

        /* hero */
        .hero-section {
            min-height: 92vh;
            background-image: url('{随机图片}');
            background-size: cover;
            background-position: center 20%;
            background-attachment: fixed;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            border-bottom: 2px solid var(--main);
        }
        .hero-overlay {
            position: absolute;
            top:0; left:0; width:100%; height:100%;
            background: linear-gradient(to bottom, rgba(10,20,16,0.7), rgba(10,20,16,0.9));
            backdrop-filter: brightness(0.8);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 2rem;
        }
        .hero-title {
            font-size: 4.2rem;
            font-weight: 900;
            color: var(--text);
            text-shadow: 0 4px 15px rgba(0,0,0,0.7);
            letter-spacing: 4px;
            line-height: 1.2;
        }
        .hero-sub {
            font-size: 1.3rem;
            color: rgba(236,253,245,0.85);
            margin: 1rem 0 2rem;
            letter-spacing: 1px;
        }
        .btn-hero {
            background: var(--main);
            color: #0a1410;
            font-weight: 700;
            border-radius: 30px;
            padding: 12px 32px;
            border: none;
            margin: 0 8px;
            font-size: 1rem;
            transition: 0.2s;
            border: 2px solid transparent;
        }
        .btn-hero-outline {
            background: transparent;
            border: 2px solid var(--text);
            color: var(--text);
        }
        .btn-hero:hover { background: var(--accent); color: #0a1410; }
        .btn-hero-outline:hover { background: var(--text); color: #0a1410; }

        /* section styles */
        .section-block { padding: 4rem 0; border-bottom: 1px solid rgba(16,185,129,0.2); }
        .section-title {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
            border-bottom: 3px solid var(--main);
            padding-bottom: 8px;
        }
        .section-title i { color: var(--accent); margin-right: 10px; }

        /* movie cards */
        .movie-card {
            background: rgba(20, 40, 30, 0.6);
            border: 1px solid rgba(16,185,129,0.3);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, border-color 0.3s;
            cursor: pointer;
            margin-bottom: 24px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .movie-card:hover {
            transform: scale(1.02);
            border-color: var(--main);
        }
        .poster-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 2/3;
            background: #1a2a22;
        }
        .poster-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: 0.3s;
        }
        .poster-overlay {
            position: absolute;
            top:0; left:0; width:100%; height:100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .movie-card:hover .poster-overlay { opacity: 1; }
        .play-btn {
            width: 50px; height: 50px;
            background: var(--main);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0a1410;
            font-size: 20px;
            padding-left: 4px;
        }
        .card-body-custom {
            padding: 12px 10px;
            background: rgba(10,20,16,0.8);
            flex-grow:1;
        }
        .movie-title {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 4px;
            font-family: var(--font-serif);
        }
        .movie-meta {
            display: flex;
            justify-content: space-between;
            color: var(--accent);
            font-size: 0.85rem;
        }
        .rating-badge { background: var(--accent); color: #0a1410; font-weight: 700; padding: 0 6px; border-radius: 4px; }

        /* tabs */
        .category-tabs .nav-tabs {
            border-bottom: 2px solid rgba(16,185,129,0.3);
        }
        .category-tabs .nav-link {
            color: var(--text) !important;
            border: none;
            background: transparent;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 0;
            border-bottom: 3px solid transparent;
        }
        .category-tabs .nav-link.active {
            background: transparent;
            color: var(--main) !important;
            border-bottom: 3px solid var(--main);
        }
        .category-tabs .nav-link:hover { border-bottom-color: var(--accent); }

        /* timeline */
        .timeline {
            position: relative;
            padding-left: 30px;
            border-left: 2px solid var(--main);
            margin-left: 10px;
        }
        .timeline-item {
            margin-bottom: 2rem;
            position: relative;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 12px; height: 12px;
            background: var(--accent);
            border-radius: 50%;
            border: 2px solid var(--bg);
        }
        .timeline-date { font-weight: 600; color: var(--main); }
        .timeline-text { margin-top: 4px; }

        /* side drawer */
        .drawer-overlay {
            position: fixed; top:0; left:0; width:100%; height:100%;
            background: rgba(0,0,0,0.6);
            z-index: 1040;
            display: none;
            backdrop-filter: blur(2px);
        }
        .movie-drawer {
            position: fixed;
            top: 0; right: -420px;
            width: 400px;
            max-width: 100vw;
            height: 100vh;
            background: #0d1f17;
            border-left: 2px solid var(--main);
            z-index: 1050;
            transition: right 0.4s ease;
            padding: 24px;
            overflow-y: auto;
            box-shadow: -4px 0 20px rgba(0,0,0,0.5);
        }
        .movie-drawer.open { right: 0; }
        .drawer-overlay.open { display: block; }
        .drawer-poster { width: 100%; border-radius: 8px; margin-bottom: 16px; }
        .drawer-close {
            background: transparent;
            border: none;
            color: var(--text);
            font-size: 28px;
            float: right;
            cursor: pointer;
        }
        .drawer-close:hover { color: var(--accent); }
        .drawer-field { margin-bottom: 12px; }
        .drawer-field strong { color: var(--main); margin-right: 8px; }

        /* footer */
        .footer {
            background: #0c1a13;
            border-top: 2px solid var(--main);
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .footer a { color: var(--text); opacity: 0.8; }
        .footer a:hover { color: var(--main); opacity: 1; }
        .friend-links {
            border: 1px dashed rgba(16,185,129,0.4);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 8px;
        }

        /* misc */
        .badge-soft { background: rgba(251,191,36,0.15); color: var(--accent); }
        .mood-tag {
            background: rgba(16,185,129,0.1);
            border: 1px solid var(--main);
            color: var(--text);
            border-radius: 30px;
            padding: 8px 18px;
            margin: 5px;
            cursor: pointer;
            font-size: 0.9rem;
        }
        .mood-tag:hover { background: var(--main); color: #0a1410; }
        .strip-line { height: 1px; background: linear-gradient(to right, transparent, var(--main), transparent); margin: 3rem 0; }
        
        @media (max-width: 768px) {
            .hero-title { font-size: 2.6rem; }
            .movie-drawer { width: 100%; right: -100%; }
        }

/* --- 子页面追加 --- */
/* 关于页专属样式 */
        .about-hero {
            padding: 100px 0 60px;
            background: linear-gradient(135deg, rgba(16,185,129,.12) 0%, rgba(10,20,16,.98) 60%);
            border-bottom: 1px solid rgba(16,185,129,.2);
        }
.about-hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
        }
.about-hero h1 span {
            color: var(--main);
        }
.about-hero p {
            color: rgba(236,253,245,.75);
            font-size: 1.05rem;
            max-width: 640px;
            line-height: 1.8;
        }
.about-section {
            padding: 60px 0;
        }
.about-section:nth-child(even) {
            background: rgba(16,185,129,.04);
        }
.about-inner {
            max-width: 860px;
            margin: 0 auto;
        }
.about-inner h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
            position: relative;
            padding-left: 18px;
        }
.about-inner h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            width: 4px;
            height: 24px;
            background: var(--main);
            border-radius: 2px;
        }
.about-inner p {
            color: rgba(236,253,245,.8);
            line-height: 1.9;
            font-size: 1rem;
            margin-bottom: 16px;
        }
.about-inner .highlight {
            color: var(--accent);
            font-weight: 600;
        }
.about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
.about-grid-item {
            background: rgba(16,185,129,.08);
            border: 1px solid rgba(16,185,129,.15);
            border-radius: 12px;
            padding: 24px 20px;
            transition: all .3s ease;
        }
.about-grid-item:hover {
            background: rgba(16,185,129,.14);
            transform: translateY(-3px);
            border-color: rgba(16,185,129,.35);
        }
.about-grid-item i {
            font-size: 1.8rem;
            color: var(--main);
            margin-bottom: 14px;
        }
.about-grid-item h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
        }
.about-grid-item p {
            font-size: .9rem;
            color: rgba(236,253,245,.7);
            line-height: 1.7;
            margin: 0;
        }
.stat-row {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 36px;
            padding: 30px;
            background: rgba(251,191,36,.06);
            border-radius: 16px;
            border: 1px solid rgba(251,191,36,.15);
        }
.stat-item {
            flex: 1;
            min-width: 140px;
            text-align: center;
        }
.stat-num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            font-family: var(--font-sans);
        }
.stat-label {
            color: rgba(236,253,245,.65);
            font-size: .85rem;
            margin-top: 4px;
        }
.about-quote {
            background: rgba(16,185,129,.06);
            border-left: 3px solid var(--main);
            padding: 20px 24px;
            margin: 30px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: rgba(236,253,245,.85);
            font-size: 1.02rem;
            line-height: 1.8;
        }
.timeline-about {
            margin-top: 30px;
        }
.timeline-about .timeline-item {
            position: relative;
        }
.timeline-about .timeline-item::before {
            color: var(--main);
        }
.about-hero h1 { font-size: 2rem; }
.about-inner h2 { font-size: 1.4rem; }
.stat-row { gap: 24px; padding: 20px; }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .disclaimer-section { padding: 80px 0 60px; }
.disclaimer-hero { background: linear-gradient(135deg, rgba(16,185,129,.08) 0%, rgba(251,191,36,.05) 100%); border-bottom: 1px solid var(--border-color); padding: 50px 0 40px; }
.disclaimer-hero .hero-title { font-size: 2.2rem; margin-bottom: 15px; }
.disclaimer-hero .hero-sub { color: var(--text-muted, #8aa79e); font-size: 1.05rem; max-width: 750px; }
.disclaimer-content { max-width: 860px; margin: 0 auto; }
.disclaimer-content .section-block { background: rgba(255,255,255,.03); border-radius: 16px; padding: 35px 40px; margin-bottom: 30px; border-left: 4px solid var(--main); }
.disclaimer-content h2 { font-family: var(--font-sans); font-weight: 700; font-size: 1.4rem; color: var(--main); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.disclaimer-content h2 i { font-size: 1.1rem; opacity: .85; }
.disclaimer-content p { line-height: 1.9; color: var(--text); opacity: .88; margin-bottom: 15px; font-size: .97rem; }
.disclaimer-content ul { padding-left: 20px; margin-bottom: 18px; }
.disclaimer-content ul li { line-height: 1.9; color: var(--text); opacity: .85; font-size: .95rem; margin-bottom: 8px; }
.disclaimer-content ul li strong { color: var(--accent); }
.highlight-box { background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.2); border-radius: 10px; padding: 18px 22px; margin: 25px 0; font-size: .95rem; line-height: 1.8; }
.highlight-box i { color: var(--accent); margin-right: 8px; }
.update-info { text-align: center; color: var(--text-muted, #8aa79e); font-size: .9rem; margin-top: 40px; padding-top: 25px; border-top: 1px solid var(--border-color); }
.update-info i { margin-right: 6px; }
.disclaimer-content .section-block { padding: 25px 22px; }
.disclaimer-hero .hero-title { font-size: 1.6rem; }
.disclaimer-content h2 { font-size: 1.15rem; }

/* --- 子页面追加 --- */
/* 站点地图专属微调 —— 保持与首页视觉完全一致 */
        .sitemap-wrap {
            padding: 3rem 0 4rem;
        }
.sitemap-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.8rem;
            margin-top: 2.5rem;
        }
.sitemap-card {
            background: rgba(16, 185, 129, 0.04);
            border: 1px solid rgba(16, 185, 129, 0.15);
            border-radius: 1.2rem;
            padding: 1.8rem 1.5rem;
            transition: all .25s ease;
        }
.sitemap-card:hover {
            background: rgba(16, 185, 129, 0.08);
            border-color: rgba(16, 185, 129, 0.4);
            transform: translateY(-3px);
        }
.sitemap-card i {
            font-size: 1.8rem;
            color: var(--main);
            margin-bottom: 1rem;
            display: inline-block;
        }
.sitemap-card h3 {
            font-family: var(--font-sans);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.75rem;
            letter-spacing: 0.02em;
        }
.sitemap-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.sitemap-card li {
            margin-bottom: 0.6rem;
        }
.sitemap-card a {
            color: rgba(236, 253, 245, 0.8);
            text-decoration: none;
            font-size: 0.95rem;
            border-bottom: 1px dotted transparent;
            transition: color .2s, border-color .2s;
        }
.sitemap-card a:hover {
            color: var(--accent);
            border-bottom-color: var(--accent);
        }
.sitemap-note {
            margin-top: 2.8rem;
            padding: 1.6rem 2rem;
            background: rgba(251, 191, 36, 0.05);
            border-left: 4px solid var(--accent);
            border-radius: 0.8rem;
            color: rgba(236, 253, 245, 0.9);
            font-size: 0.95rem;
            line-height: 1.7;
        }
.sitemap-note i {
            color: var(--accent);
            margin-right: 0.5rem;
        }
.breadcrumb-links {
            font-size: 0.9rem;
            color: rgba(236, 253, 245, 0.6);
            margin-bottom: 1rem;
        }
.breadcrumb-links a {
            color: var(--main);
            text-decoration: none;
        }
.breadcrumb-links a:hover {
            text-decoration: underline;
        }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.list-group-item { background:rgba(255,255,255,.04) !important; color:#ecfdf5 !important; border-color:rgba(255,255,255,.12) !important; }
