:root {
    --primary: #2563eb;
    --accent: #06b6d4;
    --bg: #f4f8ff;
    --text: #0f1e3d;
    --card-bg: #ffffff;
    --shadow-light: 0 2px 12px rgba(37, 99, 235, 0.06);
    --shadow-hover: 0 8px 30px rgba(37, 99, 235, 0.15);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-pill: 50rem;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* 滚动进度条 */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 9999;
    border-radius: 0 4px 4px 0;
    transition: width 0.1s linear;
}

/* 回到顶部 */
#back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    z-index: 999;
}
#back-to-top.show {
    opacity: 1;
    visibility: visible;
}
#back-to-top:hover {
    transform: translateY(-4px);
    background: var(--accent);
}

/* 顶部导航 */
.navbar-custom {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(15, 30, 61, 0.04);
}
.navbar-custom .navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.navbar-custom .nav-link {
    font-weight: 500;
    color: var(--text);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
}
.navbar-custom .nav-link:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
}
.navbar-toggler {
    border: none;
    outline: none;
}

/* Hero 标签云 */
.hero-tags {
    padding: 70px 0 20px;
    text-align: center;
}
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}
.tag-cloud span {
    display: inline-block;
    padding: 8px 22px;
    background: #fff;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    cursor: default;
}
.tag-cloud span:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
    color: var(--primary);
}
.tag-cloud span:nth-child(3n) { color: var(--primary); }
.tag-cloud span:nth-child(4n) { color: var(--accent); }
.tag-cloud span:nth-child(5n) { background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(6,182,212,0.05)); }

/* 左侧分类栏 */
.layout-wrapper {
    display: flex;
    gap: 24px;
    padding: 20px 0 0;
    max-width: 1400px;
    margin: 0 auto;
}
.sidebar {
    width: 210px;
    flex-shrink: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 20px 12px;
    box-shadow: var(--shadow-light);
    height: fit-content;
    position: sticky;
    top: 80px;
}
.sidebar-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    padding: 0 8px 14px;
    border-bottom: 2px solid var(--bg);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-title i {
    color: var(--primary);
}
.sidebar-cats {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sidebar-cats a {
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.25s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sidebar-cats a:hover,
.sidebar-cats a.active {
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(6,182,212,0.06));
    color: var(--primary);
}
.sidebar-cats a i {
    font-size: 0.75rem;
    color: var(--accent);
    opacity: 0;
    transition: opacity 0.2s;
}
.sidebar-cats a:hover i {
    opacity: 1;
}
.main-content {
    flex: 1;
    min-width: 0;
}

/* Banner 轮播 */
.banner-section {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    margin-bottom: 28px;
}
.carousel-item {
    height: 340px;
    position: relative;
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(15, 30, 61, 0.75));
    padding: 50px 30px 30px;
    color: #fff;
}
.carousel-overlay h3 {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 6px;
}
.carousel-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 500px;
}
.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}
.badge-pill-custom {
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
}

/* 区块标题 */
.section-title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 38px 0 22px;
}
.section-title-wrap h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title-wrap h2 i {
    color: var(--primary);
    background: rgba(37,99,235,0.08);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
}
.section-title-wrap .more-link {
    margin-left: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    padding: 6px 18px;
    background: rgba(37,99,235,0.06);
    border-radius: var(--radius-pill);
    transition: all 0.25s ease;
}
.section-title-wrap .more-link:hover {
    background: var(--primary);
    color: #fff;
}

/* 影片卡片 */
.movie-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.6);
}
.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.movie-poster {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(37,99,235,0.03), rgba(6,182,212,0.06));
}
.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.movie-card:hover .movie-poster img {
    transform: scale(1.05);
}
.movie-rating {
    position: absolute;
    top: 10px; left: 10px;
    background: rgba(15, 30, 61, 0.75);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}
.movie-rating i {
    color: #fbbf24;
    font-size: 0.7rem;
}
.movie-type {
    position: absolute;
    top: 10px; right: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
}
.movie-info {
    padding: 14px;
}
.movie-title {
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--text);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.movie-meta {
    font-size: 0.78rem;
    color: #7b8aa8;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* 排行榜 */
.rank-list {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-light);
}
.rank-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(15, 30, 61, 0.05);
}
.rank-item:last-child { border-bottom: none; }
.rank-badge {
    font-size: 1.2rem;
    font-weight: 800;
    width: 34px;
    text-align: center;
    flex-shrink: 0;
}
.rank-badge.gold { color: #f59e0b; }
.rank-badge.silver { color: #9ca3af; }
.rank-badge.bronze { color: #d97706; }
.rank-badge.normal { color: #d1d5db; font-size: 1rem; }
.rank-title {
    flex: 1;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rank-score {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}
.rank-thumbs {
    font-size: 0.75rem;
    color: #9aa8c4;
}

/* 分类胶囊 */
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.category-pills a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #fff;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}
.category-pills a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}
.category-pills a i {
    color: var(--accent);
}
.category-pills a:hover i {
    color: #fff;
}

/* 对比表格 */
.compare-table {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-light);
    overflow-x: auto;
}
.compare-table table {
    width: 100%;
    border-collapse: collapse;
}
.compare-table th,
.compare-table td {
    padding: 14px 16px;
    text-align: center;
    font-size: 0.9rem;
}
.compare-table th {
    font-weight: 700;
    background: rgba(37, 99, 235, 0.04);
    color: var(--text);
    border-bottom: 2px solid rgba(37, 99, 235, 0.1);
}
.compare-table td {
    border-bottom: 1px solid rgba(15, 30, 61, 0.05);
}
.compare-table .fa-check { color: #10b981; }
.compare-table .fa-xmark { color: #f87171; }
.compare-table tr:hover td {
    background: rgba(37, 99, 235, 0.02);
}

/* 编号清单 */
.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}
.steps-list li {
    counter-increment: step-counter;
    padding: 14px 20px 14px 56px;
    background: #fff;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-light);
    position: relative;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.steps-list li:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-hover);
}
.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 16px; top: 14px;
    width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

/* 专题区 */
.special-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.35s ease;
    background: #fff;
    height: 100%;
}
.special-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.special-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.special-card-body {
    padding: 18px;
}
.special-card-body h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.special-card-body p {
    font-size: 0.85rem;
    color: #7b8aa8;
    margin: 0;
}

/* FAQ */
.faq-section {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-light);
}
.faq-item {
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(15, 30, 61, 0.05);
    padding-bottom: 16px;
}
.faq-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.faq-question {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.faq-question i {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.faq-answer {
    padding-left: 40px;
    font-size: 0.9rem;
    color: #5b6e8d;
    line-height: 1.8;
    margin-top: 8px;
}

/* 相关推荐 */
.related-links {
    background: linear-gradient(135deg, rgba(37,99,235,0.03), rgba(6,182,212,0.03));
    border-radius: var(--radius-lg);
    padding: 30px;
}
.related-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #fff;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin: 4px 6px 4px 0;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}
.related-links a:hover {
    background: var(--primary);
    color: #fff;
}

/* 页脚 */
.footer {
    background: #0f1e3d;
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 20px;
    margin-top: 60px;
}
.footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 1.1rem;
}
.footer a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.25s ease;
    font-size: 0.9rem;
    display: block;
    padding: 4px 0;
}
.footer a:hover {
    color: #fff;
    transform: translateX(4px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    font-size: 0.85rem;
}
.footer-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}
.footer-brand i {
    color: var(--accent);
}

/* 弹窗 */
.modal-custom {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 30, 61, 0.6);
    backdrop-filter: blur(6px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.modal-custom.show {
    display: flex;
}
.modal-custom .modal-dialog {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(15, 30, 61, 0.3);
    position: relative;
}
.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(15, 30, 61, 0.06);
    border: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    color: var(--text);
}
.modal-close:hover {
    background: var(--primary);
    color: #fff;
    transform: rotate(90deg);
}
.modal-body-custom {
    display: flex;
    gap: 24px;
    padding: 30px;
}
.modal-poster {
    width: 200px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}
.modal-poster img {
    width: 100%;
    height: auto;
    aspect-ratio: 2/3;
    object-fit: cover;
}
.modal-content-custom {
    flex: 1;
}
.modal-content-custom h3 {
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text);
}
.modal-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
    margin-bottom: 16px;
}
.modal-info-grid .label {
    font-size: 0.75rem;
    color: #9aa8c4;
    font-weight: 600;
}
.modal-info-grid .value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}
.modal-plot {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #5b6e8d;
    border-top: 1px solid rgba(15, 30, 61, 0.05);
    padding-top: 14px;
}

@media (max-width: 992px) {
    .sidebar {
        display: none;
    }
    .main-content {
        width: 100%;
    }
    .carousel-item {
        height: 280px;
    }
    .modal-body-custom {
        flex-direction: column;
    }
    .modal-poster {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .hero-tags {
        padding: 50px 0 10px;
    }
    .section-title-wrap h2 {
        font-size: 1.2rem;
    }
    .carousel-item {
        height: 220px;
    }
    .carousel-overlay h3 {
        font-size: 1.1rem;
    }
    .modal-body-custom {
        padding: 20px;
    }
    .modal-info-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 子页面追加 --- */
/* 关于页专属样式 */
        .about-hero {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: var(--radius-lg);
            padding: 3rem 2rem;
            color: #fff;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }
.about-hero::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }
.about-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
.about-hero p {
            font-size: 1.1rem;
            opacity: 0.95;
            max-width: 700px;
            position: relative;
            z-index: 1;
        }
.about-section {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-light);
            transition: box-shadow 0.3s ease;
        }
.about-section:hover {
            box-shadow: var(--shadow-hover);
        }
.about-section h2 {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 3px solid var(--accent);
            display: inline-block;
        }
.about-section p {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 1rem;
        }
.about-section ul {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
.about-section ul li {
            margin-bottom: 0.6rem;
            line-height: 1.7;
            color: var(--text);
        }
.about-section ul li i {
            color: var(--accent);
            margin-right: 0.5rem;
        }
.about-stat {
            text-align: center;
            padding: 1.5rem;
            background: var(--bg);
            border-radius: var(--radius-md);
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }
.about-stat:hover {
            transform: translateY(-5px);
        }
.about-stat .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
        }
.about-stat .stat-label {
            color: var(--text);
            font-size: 0.9rem;
            margin-top: 0.3rem;
            display: block;
        }
.about-timeline {
            position: relative;
            padding-left: 2rem;
        }
.about-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
            border-radius: 2px;
        }
.timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -2.4rem;
            top: 0.3rem;
            width: 14px;
            height: 14px;
            background: var(--accent);
            border: 3px solid var(--card-bg);
            border-radius: 50%;
            box-shadow: 0 0 0 3px var(--accent);
        }
.timeline-item h3 {
            color: var(--primary);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
.timeline-item p {
            margin-bottom: 0.5rem;
        }
.about-feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
.about-hero h1 {
                font-size: 1.8rem;
            }
.about-hero {
                padding: 2rem 1.5rem;
            }
.about-section {
                padding: 1.5rem;
            }

/* --- 子页面追加 --- */
.legal-section {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-light);
            transition: box-shadow 0.3s ease;
            border-left: 4px solid var(--primary);
        }
.legal-section:hover {
            box-shadow: var(--shadow-hover);
        }
.legal-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
.legal-section h2 i {
            font-size: 1.3rem;
            color: var(--accent);
        }
.legal-section p {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }
.legal-section ul {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text);
        }
.legal-section ul li {
            margin-bottom: 0.6rem;
            line-height: 1.7;
            font-size: 0.95rem;
            position: relative;
            padding-left: 0.5rem;
        }
.legal-section ul li::before {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--accent);
            position: absolute;
            left: -0.8rem;
            top: 0;
        }
.legal-section .highlight-box {
            background: rgba(37, 99, 235, 0.05);
            border-radius: var(--radius-md);
            padding: 1.2rem 1.5rem;
            border: 1px solid rgba(37, 99, 235, 0.1);
            margin: 1rem 0;
        }
.legal-section .highlight-box p {
            margin-bottom: 0.3rem;
        }
.legal-section .highlight-box p:last-child {
            margin-bottom: 0;
        }
.legal-section .contact-email {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 1px;
        }
.legal-section .contact-email:hover {
            color: var(--accent);
            border-bottom-color: var(--primary);
        }
.legal-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: var(--radius-lg);
            padding: 3rem 2rem;
            margin-bottom: 2rem;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
.legal-header::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 60%;
            height: 160%;
            background: rgba(255,255,255,0.08);
            transform: rotate(15deg);
            border-radius: 50%;
        }
.legal-header::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -10%;
            width: 50%;
            height: 140%;
            background: rgba(255,255,255,0.06);
            transform: rotate(-20deg);
            border-radius: 50%;
        }
.legal-header h1 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 0.8rem;
            position: relative;
            z-index: 1;
        }
.legal-header p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
.legal-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
.legal-meta span {
            font-size: 0.9rem;
            opacity: 0.85;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
.legal-section {
                padding: 1.8rem 1.2rem;
            }
.legal-section h2 {
                font-size: 1.3rem;
            }
.legal-header {
                padding: 2rem 1.2rem;
            }
.legal-header h1 {
                font-size: 1.7rem;
            }

/* --- 子页面追加 --- */
.privacy-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            padding: 80px 0 60px;
            text-align: center;
            color: #fff;
        }
.privacy-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
.privacy-hero p {
            font-size: 1.1rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
        }
.privacy-content {
            padding: 60px 0;
        }
.privacy-section {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 35px 40px;
            margin-bottom: 30px;
            box-shadow: var(--shadow-light);
            transition: box-shadow 0.3s ease;
        }
.privacy-section:hover {
            box-shadow: var(--shadow-hover);
        }
.privacy-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--bg);
            position: relative;
        }
.privacy-section h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--accent);
        }
.privacy-section h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
            margin: 25px 0 12px;
        }
.privacy-section p {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
.privacy-section ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
.privacy-section ul li {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 8px;
            position: relative;
            padding-left: 5px;
        }
.privacy-section ul li::marker {
            color: var(--accent);
        }
.privacy-highlight {
            background: var(--bg);
            border-radius: var(--radius-md);
            padding: 20px 25px;
            margin: 20px 0;
            border-left: 4px solid var(--accent);
        }
.privacy-highlight p {
            margin-bottom: 0;
            font-weight: 500;
        }
.privacy-updated {
            text-align: center;
            color: #6c757d;
            font-size: 0.9rem;
            margin-top: 40px;
            padding: 20px;
            background: var(--card-bg);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-light);
        }
.privacy-hero {
                padding: 50px 0 40px;
            }
.privacy-hero h1 {
                font-size: 1.8rem;
            }
.privacy-section {
                padding: 25px 20px;
            }
.privacy-section h2 {
                font-size: 1.3rem;
            }