:root {
    --main-color: #f97316;
    --accent-color: #facc15;
    --bg-color: #1a1410;
    --text-color: #fff7ed;
    --card-radius: 20px;
    --shadow-color: rgba(249, 115, 22, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

/* 导航栏 */
.navbar-custom {
    background: rgba(26, 20, 16, 0.85);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
}

.navbar-custom.scrolled {
    background: rgba(26, 20, 16, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-color) !important;
    letter-spacing: -0.5px;
}

.navbar-brand i {
    color: var(--main-color);
    margin-right: 8px;
    font-size: 1.4rem;
}

.navbar-toggler {
    border: none;
    color: var(--text-color);
    font-size: 1.4rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 247, 237, 0.8);
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color);
}

.navbar-nav .nav-link.active {
    color: var(--main-color);
}

/* Hero 大图 */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 20, 16, 0.7), rgba(26, 20, 16, 0.9)),
                url('{随机图片}') center/cover no-repeat;
    padding: 4rem 2rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(26, 20, 16, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-color);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--main-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 247, 237, 0.9);
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.hero-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    background: var(--main-color);
    color: #fff;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.hero-btn:hover {
    background: var(--accent-color);
    color: #1a1410;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(250, 204, 21, 0.3);
}

/* 通用区块 */
.section-padding {
    padding: 6rem 0;
}

.section-title-wrap {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 247, 237, 0.6);
    font-weight: 300;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color), var(--accent-color));
    border-radius: 10px;
    margin-top: 1rem;
}

/* 榜单 */
.top-list-item {
    background: rgba(255, 247, 237, 0.03);
    border-radius: var(--card-radius);
    padding: 1rem 1.5rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 247, 237, 0.05);
}

.top-list-item:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateX(5px);
}

.rank-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.rank-1 {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1410;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.rank-2 {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: #1a1410;
}

.rank-3 {
    background: linear-gradient(135deg, #cd7f32, #b87333);
    color: #1a1410;
}

.rank-other {
    background: rgba(255, 247, 237, 0.1);
    color: rgba(255, 247, 237, 0.8);
}

.top-list-info {
    flex-grow: 1;
}

.top-list-name {
    font-weight: 600;
    color: var(--text-color);
}

.top-list-meta {
    font-size: 0.8rem;
    color: rgba(255, 247, 237, 0.5);
}

.top-list-rating {
    color: var(--accent-color);
    font-weight: 700;
}

/* 海报卡片 */
.movie-card {
    background: rgba(255, 247, 237, 0.03);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 247, 237, 0.05);
    cursor: pointer;
    position: relative;
    height: 100%;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-color);
    border-color: rgba(249, 115, 22, 0.3);
}

.movie-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, #2a201a, #1a1410);
}

.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);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.4s ease;
    cursor: pointer;
}

.movie-card:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-btn:hover {
    background: var(--accent-color);
    color: #1a1410;
}

.movie-info {
    padding: 1rem;
}

.movie-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-color);
}

.movie-meta {
    font-size: 0.85rem;
    color: rgba(255, 247, 237, 0.5);
    display: flex;
    justify-content: space-between;
}

.movie-rating {
    color: var(--accent-color);
    font-weight: 700;
}

.movie-year {
    color: rgba(255, 247, 237, 0.4);
}

/* 分类胶囊 */
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.category-pill {
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 247, 237, 0.05);
    color: rgba(255, 247, 237, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 247, 237, 0.08);
}

.category-pill:hover {
    background: rgba(249, 115, 22, 0.2);
    color: var(--text-color);
}

.category-pill.active {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

/* 经典专区 */
.classic-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(250, 204, 21, 0.05));
    border-radius: var(--card-radius);
    padding: 2rem;
    border: 1px solid rgba(249, 115, 22, 0.1);
    height: 100%;
}

.classic-icon {
    font-size: 2rem;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.classic-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.classic-desc {
    font-size: 0.95rem;
    color: rgba(255, 247, 237, 0.7);
    line-height: 1.6;
}

/* 预告专区 */
.trailer-card {
    border-radius: var(--card-radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    background: #2a201a;
}

.trailer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trailer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 20, 16, 0.9));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.trailer-info {
    width: 100%;
}

.trailer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.trailer-sub {
    font-size: 0.85rem;
    color: rgba(255, 247, 237, 0.7);
}

.trailer-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s;
}

.trailer-play:hover {
    background: var(--accent-color);
    color: #1a1410;
    transform: translate(-50%, -50%) scale(1.1);
}

/* 弹窗 */
.modal-custom {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(26, 20, 16, 0.95);
    backdrop-filter: blur(10px);
}

.modal-custom.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
}

.modal-content-custom {
    background: rgba(26, 20, 16, 0.95);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 30px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 247, 237, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(249, 115, 22, 0.3);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.modal-rating {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.modal-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.modal-meta span {
    background: rgba(249, 115, 22, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    color: rgba(255, 247, 237, 0.8);
}

.modal-plot {
    font-size: 0.95rem;
    color: rgba(255, 247, 237, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.modal-actors {
    font-size: 0.9rem;
    color: rgba(255, 247, 237, 0.6);
}

.modal-watch-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-watch-btn:hover {
    background: var(--accent-color);
    color: #1a1410;
}

/* 今天看什么 */
.watch-widget {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(250, 204, 21, 0.08));
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.watch-widget h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.watch-widget p {
    color: rgba(255, 247, 237, 0.6);
    margin-bottom: 2rem;
}

.watch-recommend {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 1.5rem 0;
    min-height: 3rem;
}

.watch-btn {
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    background: var(--main-color);
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.watch-btn:hover {
    background: var(--accent-color);
    color: #1a1410;
    transform: translateY(-3px);
}

/* 相关推荐 */
.related-item {
    background: rgba(255, 247, 237, 0.03);
    border-radius: var(--card-radius);
    padding: 1.5rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 247, 237, 0.05);
}

.related-item:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateY(-3px);
}

.related-icon {
    font-size: 1.5rem;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.related-title {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.related-desc {
    font-size: 0.9rem;
    color: rgba(255, 247, 237, 0.5);
}

/* 友链 */
.friend-links {
    background: rgba(255, 247, 237, 0.02);
    border-radius: var(--card-radius);
    padding: 2.5rem;
    border: 1px solid rgba(255, 247, 237, 0.05);
}

.friend-links-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.friend-links-content {
    font-size: 0.95rem;
    color: rgba(255, 247, 237, 0.6);
    line-height: 2;
}

/* 页脚 */
.footer {
    background: rgba(26, 20, 16, 0.98);
    border-top: 1px solid rgba(249, 115, 22, 0.1);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 247, 237, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--main-color);
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 247, 237, 0.4);
}

/* 返回顶部 */
.back-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--main-color);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-top:hover {
    background: var(--accent-color);
    color: #1a1410;
}

/* 手风琴 */
.accordion-custom {
    margin-top: 2rem;
}

.accordion-item-custom {
    background: rgba(255, 247, 237, 0.03);
    border: 1px solid rgba(255, 247, 237, 0.08);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header-custom {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    font-weight: 600;
    transition: background 0.3s;
}

.accordion-header-custom:hover {
    background: rgba(249, 115, 22, 0.05);
}

.accordion-header-custom i {
    transition: transform 0.3s;
    color: var(--main-color);
}

.accordion-header-custom.active i {
    transform: rotate(180deg);
}

.accordion-body-custom {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: rgba(255, 247, 237, 0.7);
    font-size: 0.95rem;
}

.accordion-body-custom.show {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* 响应式 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .modal-content-custom {
        padding: 2rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .about-hero {
            padding: 100px 0 60px;
            text-align: center;
            position: relative;
        }
.about-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--main-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.about-hero p {
            font-size: 1.2rem;
            color: rgba(255, 247, 237, 0.8);
            max-width: 700px;
            margin: 0 auto;
        }
.about-section {
            padding: 60px 0;
        }
.about-section:nth-child(even) {
            background: rgba(249, 115, 22, 0.05);
        }
.about-card {
            background: rgba(249, 115, 22, 0.08);
            border: 1px solid rgba(249, 115, 22, 0.2);
            border-radius: var(--card-radius);
            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 var(--shadow-color);
        }
.about-card i {
            font-size: 2.5rem;
            color: var(--main-color);
            margin-bottom: 20px;
        }
.about-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-color);
        }
.about-card p {
            color: rgba(255, 247, 237, 0.8);
            line-height: 1.8;
            font-size: 0.95rem;
        }
.about-list {
            list-style: none;
            padding: 0;
            margin: 20px 0 0;
        }
.about-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(249, 115, 22, 0.1);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: rgba(255, 247, 237, 0.85);
            line-height: 1.7;
        }
.about-list li:last-child {
            border-bottom: none;
        }
.about-list i {
            color: var(--main-color);
            margin-top: 5px;
            font-size: 0.9rem;
        }
.stats-wrap {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
            padding: 40px 30px;
            background: rgba(249, 115, 22, 0.08);
            border-radius: var(--card-radius);
            border: 1px solid rgba(249, 115, 22, 0.15);
        }
.stat-item {
            text-align: center;
            flex: 1;
            min-width: 150px;
        }
.stat-item .number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--main-color);
            display: block;
        }
.stat-item .label {
            font-size: 0.95rem;
            color: rgba(255, 247, 237, 0.7);
            margin-top: 8px;
        }
.timeline {
            position: relative;
            padding: 20px 0;
            margin-left: 20px;
        }
.timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--main-color), var(--accent-color));
        }
.timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 30px;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -6px;
            top: 5px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--main-color);
            border: 3px solid var(--bg-color);
            box-shadow: 0 0 10px var(--shadow-color);
        }
.timeline-item h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--accent-color);
            margin-bottom: 8px;
        }
.timeline-item p {
            color: rgba(255, 247, 237, 0.8);
            line-height: 1.7;
            font-size: 0.9rem;
        }
.feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
.feature-item {
            background: rgba(249, 115, 22, 0.06);
            border: 1px solid rgba(249, 115, 22, 0.1);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            gap: 15px;
            align-items: flex-start;
            transition: all 0.3s ease;
        }
.feature-item:hover {
            background: rgba(249, 115, 22, 0.12);
            transform: translateX(5px);
        }
.feature-item i {
            font-size: 1.5rem;
            color: var(--main-color);
            margin-top: 3px;
        }
.feature-item div h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--text-color);
        }
.feature-item div p {
            font-size: 0.9rem;
            color: rgba(255, 247, 237, 0.75);
            line-height: 1.6;
        }
.cta-box {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(250, 204, 21, 0.1));
            border: 1px solid rgba(249, 115, 22, 0.3);
            border-radius: var(--card-radius);
            padding: 40px;
            text-align: center;
            margin-top: 40px;
        }
.cta-box h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-color);
        }
.cta-box p {
            color: rgba(255, 247, 237, 0.8);
            margin-bottom: 25px;
        }
.about-hero h1 {
                font-size: 2rem;
            }
.stats-wrap {
                flex-direction: column;
                align-items: center;
            }

/* --- 子页面追加 --- */
.privacy-section { padding: 60px 0; }
.privacy-hero { background: linear-gradient(135deg, rgba(26, 20, 16, 0.95), rgba(26, 20, 16, 0.8)); border-radius: var(--card-radius); padding: 60px 40px; margin-bottom: 40px; border: 1px solid rgba(249, 115, 22, 0.2); }
.privacy-hero h1 { color: var(--main-color); font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; }
.privacy-hero p { color: var(--text-color); font-size: 1.1rem; max-width: 800px; line-height: 1.8; }
.privacy-card { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(249, 115, 22, 0.15); border-radius: var(--card-radius); padding: 35px; margin-bottom: 30px; transition: all 0.3s ease; }
.privacy-card:hover { border-color: var(--main-color); box-shadow: 0 10px 30px var(--shadow-color); }
.privacy-card h2 { color: var(--accent-color); font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.privacy-card h2 i { color: var(--main-color); }
.privacy-card p, .privacy-card li { color: var(--text-color); line-height: 1.8; }
.privacy-card ul { padding-left: 20px; margin-bottom: 15px; }
.privacy-card li { margin-bottom: 8px; }
.privacy-card .highlight { color: var(--accent-color); font-weight: 600; }
.privacy-updated { background: rgba(249, 115, 22, 0.1); border-left: 4px solid var(--main-color); padding: 15px 20px; border-radius: 8px; margin-bottom: 30px; color: var(--text-color); }
.privacy-contact { background: rgba(250, 204, 21, 0.05); border: 1px solid rgba(250, 204, 21, 0.2); }
.privacy-hero { padding: 40px 20px; }
.privacy-hero h1 { font-size: 1.8rem; }
.privacy-card { padding: 25px 20px; }

/* --- 子页面追加 --- */
/* 地图专用小工具 —— 仅用栅格和自写类，不碰 Bootstrap 组件 */
        .sitemap-block {
            background: rgba(26, 20, 16, 0.7);
            backdrop-filter: blur(6px);
            border-radius: var(--card-radius);
            padding: 1.8rem 1.8rem 1.6rem;
            border: 1px solid rgba(249, 115, 22, 0.2);
            box-shadow: 0 12px 30px var(--shadow-color);
            height: 100%;
            transition: transform 0.2s ease, border-color 0.2s;
        }
.sitemap-block:hover {
            border-color: var(--main-color);
            transform: translateY(-3px);
        }
.sitemap-block h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--main-color);
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1.2rem;
            border-left: 4px solid var(--accent-color);
            padding-left: 0.8rem;
        }
.sitemap-block h3 i {
            color: var(--accent-color);
            font-size: 1.2rem;
        }
.sitemap-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.sitemap-list li {
            margin-bottom: 0.8rem;
            line-height: 1.5;
        }
.sitemap-list li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.15s;
            font-size: 0.98rem;
        }
.sitemap-list li a i {
            color: var(--main-color);
            width: 20px;
            font-size: 0.9rem;
            opacity: 0.9;
        }
.sitemap-list li a:hover {
            color: var(--accent-color);
        }
.sitemap-list li a:hover i {
            color: var(--accent-color);
        }
.sitemap-badge {
            background: rgba(249, 115, 22, 0.15);
            border-radius: 30px;
            padding: 0.15rem 0.8rem;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--accent-color);
            margin-left: 6px;
            letter-spacing: 0.4px;
            border: 1px solid rgba(250, 204, 21, 0.25);
        }
.map-note {
            background: rgba(250, 204, 21, 0.06);
            border-radius: 40px;
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            color: var(--text-color);
            border: 1px dashed rgba(249, 115, 22, 0.3);
        }