:root {
    --primary: #2563eb;
    --accent: #06b6d4;
    --bg: #f4f8ff;
    --text: #0f1e3d;
    --card-radius: 20px;
    --soft-shadow: 0 8px 30px rgba(37, 99, 235, 0.08);
    --hover-shadow: 0 12px 40px rgba(37, 99, 235, 0.16);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  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.6;
  }
  /* 滚动进度条 */
  #scrollProgress {
    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 ease;
  }
  /* 导航栏 */
  .navbar-movie {
    background: rgba(244, 248, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(37, 99, 235, 0.06);
    padding: 0.8rem 0;
    z-index: 1000;
  }
  .navbar-movie.scrolled {
    background: rgba(244, 248, 255, 0.95);
    box-shadow: 0 4px 24px rgba(15, 30, 61, 0.06);
    padding: 0.5rem 0;
  }
  .navbar-movie .navbar-brand {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .navbar-movie .navbar-brand i {
    color: var(--primary);
    font-size: 1.8rem;
  }
  .navbar-movie .nav-link {
    font-weight: 600;
    color: var(--text);
    opacity: 0.75;
    margin: 0 0.3rem;
    transition: all 0.2s;
  }
  .navbar-movie .nav-link:hover { opacity: 1; color: var(--primary); }
  .navbar-toggler { border: none; }
  .navbar-toggler:focus { box-shadow: none; }
  /* Hero区 */
  .hero-section {
    padding: 4rem 0 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.04), transparent);
  }
  .hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .hero-title .typed {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .typed-cursor {
    display: inline-block;
    width: 4px;
    height: 1em;
    background: var(--primary);
    margin-left: 4px;
    animation: blink 0.8s infinite;
    border-radius: 2px;
  }
  @keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
  .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text);
    opacity: 0.6;
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto 2rem;
  }
  .hero-badges {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .hero-badge {
    background: white;
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--soft-shadow);
    color: var(--primary);
  }
  /* 通用区块 */
  .section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .section-title i { color: var(--primary); }
  .section-subtitle { font-size: 1rem; color: var(--text); opacity: 0.5; font-weight: 400; margin-top: -1rem; margin-bottom: 1.5rem; }
  /* 海报行横向滚动 */
  .poster-row {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding: 1rem 0.2rem 1.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
  }
  .poster-row::-webkit-scrollbar { height: 6px; }
  .poster-row::-webkit-scrollbar-track { background: transparent; }
  .poster-row::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
  .poster-card {
    min-width: 180px;
    max-width: 180px;
    border-radius: var(--card-radius);
    overflow: hidden;
    background: white;
    box-shadow: var(--soft-shadow);
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    scroll-snap-align: start;
    border: none;
    flex-shrink: 0;
  }
  .poster-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
  }
  .poster-card .poster-wrap {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
  }
  .poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .poster-card:hover img { transform: scale(1.05); }
  .poster-card .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.35s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  }
  .poster-card:hover .play-btn { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  .poster-card .badge-ep {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(15, 30, 61, 0.85);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
  }
  .poster-card .rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 193, 7, 0.9);
    color: #0f1e3d;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.15rem;
  }
  .poster-card .card-body {
    padding: 0.8rem 1rem 1rem;
  }
  .poster-card .card-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .poster-card .card-meta {
    font-size: 0.75rem;
    color: var(--text);
    opacity: 0.5;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.2rem;
  }
  .poster-card .card-type {
    font-size: 0.7rem;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    border-radius: 20px;
    padding: 0.15rem 0.6rem;
    font-weight: 600;
    display: inline-block;
  }
  /* 榜单样式 */
  .rank-list {
    background: white;
    border-radius: 24px;
    padding: 1.8rem 1.5rem;
    box-shadow: var(--soft-shadow);
  }
  .rank-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(15, 30, 61, 0.05);
    gap: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 12px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .rank-item:last-child { border-bottom: none; }
  .rank-item:hover { background: rgba(37, 99, 235, 0.03); }
  .rank-num {
    font-size: 1.4rem;
    font-weight: 900;
    color: rgba(15, 30, 61, 0.15);
    width: 36px;
    text-align: center;
  }
  .rank-item:nth-child(1) .rank-num { color: #f59e0b; }
  .rank-item:nth-child(2) .rank-num { color: #94a3b8; }
  .rank-item:nth-child(3) .rank-num { color: #cd7f32; }
  .rank-poster {
    width: 52px;
    height: 72px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .rank-info { flex: 1; }
  .rank-info .rank-title { font-weight: 700; font-size: 1rem; }
  .rank-info .rank-meta { font-size: 0.8rem; opacity: 0.5; }
  .rank-score {
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }
  .rank-score i { color: #f59e0b; }
  /* 分类筛选 */
  .filter-tabs {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .filter-tab {
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    background: white;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: var(--soft-shadow);
  }
  .filter-tab:hover { border-color: var(--primary); }
  .filter-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
  }
  /* 经典专区 */
  .classic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.2rem;
  }
  /* 对比表格 */
  .comparison-table {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
  }
  .comparison-table table {
    width: 100%;
    background: white;
    border-collapse: collapse;
  }
  .comparison-table th {
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 700;
    text-align: left;
  }
  .comparison-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(15, 30, 61, 0.05);
  }
  .comparison-table tr:last-child td { border-bottom: none; }
  .comparison-table .fa-check { color: #10b981; }
  .comparison-table .fa-xmark { color: #ef4444; }
  /* 心情标签 */
  .mood-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }
  .mood-tag {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--soft-shadow);
    border: 2px solid transparent;
  }
  .mood-tag:hover, .mood-tag.active { border-color: var(--accent); color: var(--accent); }
  .mood-recommend {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--soft-shadow);
    min-height: 80px;
  }
  /* 弹窗 */
  .modal-mask {
    position: fixed;
    inset: 0;
    background: rgba(15, 30, 61, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
  }
  .modal-mask.show { display: flex; }
  .modal-card {
    background: white;
    border-radius: 24px;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0,0,0,0.3);
    position: relative;
  }
  .modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    border: none;
    font-size: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
  }
  .modal-close:hover { background: rgba(239, 68, 68, 0.1); color: #ef4444; transform: rotate(90deg); }
  .modal-content-wrap {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    flex-wrap: wrap;
  }
  .modal-poster {
    width: 180px;
    height: 260px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--soft-shadow);
    flex-shrink: 0;
  }
  .modal-info { flex: 1; min-width: 220px; }
  .modal-info h3 { font-weight: 800; font-size: 1.5rem; margin-bottom: 0.8rem; }
  .modal-info .meta-line {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
  }
  .modal-info .rating-big {
    font-size: 1.2rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .modal-info .plot { font-size: 0.95rem; color: var(--text); opacity: 0.8; margin-bottom: 1rem; line-height: 1.6; }
  .modal-info .actors { font-size: 0.9rem; color: var(--text); opacity: 0.6; }
  /* FAQ */
  .faq-item {
    background: white;
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--soft-shadow);
    border-left: 4px solid var(--primary);
  }
  .faq-item h5 { font-weight: 700; margin-bottom: 0.4rem; }
  .faq-item p { opacity: 0.7; font-size: 0.95rem; }
  /* 今天看什么 */
  .watch-helper {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(6, 182, 212, 0.06));
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
  }
  .watch-helper h3 { font-weight: 800; font-size: 1.5rem; margin-bottom: 0.5rem; }
  .watch-helper .btn-random {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    margin-top: 1rem;
  }
  .watch-helper .btn-random:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4); }
  .random-result {
    margin-top: 1.5rem;
    background: white;
    border-radius: 16px;
    padding: 1.2rem;
    font-weight: 600;
    font-size: 1.05rem;
    display: none;
  }
  .random-result.show { display: block; }
  /* 预告 */
  .trailer-card {
    border-radius: var(--card-radius);
    overflow: hidden;
    background: white;
    box-shadow: var(--soft-shadow);
    transition: all 0.35s;
    cursor: pointer;
  }
  .trailer-card:hover { transform: translateY(-4px); box-shadow: var(--hover-shadow); }
  .trailer-card .trailer-thumb {
    height: 180px;
    position: relative;
    overflow: hidden;
  }
  .trailer-card .trailer-thumb img { width: 100%; height: 100%; object-fit: cover; }
  .trailer-card .trailer-thumb .play-btn-lg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .trailer-card:hover .play-btn-lg { transform: translate(-50%, -50%) scale(1.1); }
  /* 页脚 */
  .footer-movie {
    background: #0f1e3d;
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 2rem;
    margin-top: 3rem;
  }
  .footer-movie a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
  .footer-movie a:hover { color: white; }
  .footer-movie .footer-title { font-weight: 800; color: white; margin-bottom: 1rem; }
  .footer-links { list-style: none; padding: 0; }
  .footer-links li { margin-bottom: 0.5rem; }
  /* 友情链接 */
  .friend-links {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: var(--soft-shadow);
  }
  .friend-links h5 { font-weight: 700; margin-bottom: 1rem; font-size: 1rem; }
  /* 数字编号清单 */
  .numbered-list {
    list-style: none;
    counter-reset: my-counter;
    padding: 0;
  }
  .numbered-list li {
    counter-increment: my-counter;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .numbered-list li::before {
    content: counter(my-counter);
    background: var(--primary);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
  }
  /* 响应式 */
  @media (max-width: 768px) {
    .hero-title { font-size: 2.4rem; }
    .poster-card { min-width: 140px; max-width: 140px; }
    .poster-card .poster-wrap { height: 200px; }
    .section-title { font-size: 1.5rem; }
    .rank-item { flex-wrap: wrap; }
    .modal-content-wrap { flex-direction: column; align-items: center; }
    .modal-poster { width: 160px; height: 220px; }
  }

/* --- 子页面追加 --- */
/* 关于我们页面专属样式 */
        .about-hero {
            background: linear-gradient(135deg, #f4f8ff 0%, #e8f0fe 50%, #dbeafe 100%);
            border-bottom: 1px solid rgba(37, 99, 235, 0.1);
        }
.about-story {
            background: #fff;
            border-radius: var(--card-radius);
            box-shadow: var(--soft-shadow);
            padding: 2.5rem;
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary);
        }
.about-story p {
            line-height: 1.8;
            color: #334155;
            margin-bottom: 1.2rem;
        }
.feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
.feature-item {
            background: #fff;
            border-radius: var(--card-radius);
            padding: 1.8rem;
            box-shadow: var(--soft-shadow);
            transition: all 0.3s ease;
            border: 1px solid rgba(37, 99, 235, 0.06);
        }
.feature-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--hover-shadow);
        }
.feature-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
            display: inline-block;
        }
.feature-item h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.8rem;
        }
.feature-item p {
            font-size: 0.95rem;
            color: #475569;
            line-height: 1.7;
        }
.timeline-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.timeline-list li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed rgba(37, 99, 235, 0.15);
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            font-size: 0.95rem;
            color: #475569;
        }
.timeline-list li:last-child {
            border-bottom: none;
        }
.timeline-time {
            font-weight: 700;
            color: var(--primary);
            white-space: nowrap;
            font-size: 0.9rem;
            min-width: 80px;
        }
.philosophy-card {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: var(--card-radius);
            padding: 2.5rem;
            color: #fff;
            margin-top: 2rem;
        }
.philosophy-card h3 {
            font-weight: 700;
            margin-bottom: 1rem;
        }
.philosophy-card p {
            opacity: 0.95;
            line-height: 1.8;
        }
.stat-badge {
            background: rgba(255,255,255,0.2);
            border-radius: 50px;
            padding: 0.4rem 1.2rem;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
.nav-link.active {
            color: var(--primary) !important;
            font-weight: 700;
        }

/* --- 子页面追加 --- */
/* 确保组件类跟随站点配色（若有 .card 等） */
        .card, .card-body, .list-group-item, .accordion-item, .accordion-button {
            background: #ffffff; /* 浅色站底色 */
            color: var(--text);
            border-color: #e2e8f0;
        }
.form-control, .form-select {
            background: #ffffff;
            color: var(--text);
            border: 1px solid #cbd5e1;
        }
.form-control::placeholder { color: #94a3b8; }
.btn-outline-primary {
            border-color: var(--primary);
            color: var(--primary);
        }
.btn-outline-primary:hover {
            background: var(--primary);
            color: #fff;
        }
/* 本页额外布局微调 */
        .disclaimer-hero {
            background: linear-gradient(145deg, #f0f6ff 0%, #ffffff 100%);
            border-bottom: 1px solid rgba(37, 99, 235, 0.08);
        }
.legal-section {
            background: #ffffff;
            border-radius: var(--card-radius);
            box-shadow: var(--soft-shadow);
            padding: 2rem 2rem 1.8rem;
            margin-bottom: 1.8rem;
            transition: box-shadow 0.25s;
        }
.legal-section:hover {
            box-shadow: var(--hover-shadow);
        }
.legal-section h2 {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
.legal-section h2 i {
            color: var(--accent);
            font-size: 1.4rem;
        }
.legal-section p, .legal-section li {
            color: #1e293b;
            font-size: 0.98rem;
            line-height: 1.7;
        }
.legal-section ul, .legal-section ol {
            padding-left: 1.4rem;
        }
.muted-text {
            color: #64748b;
            font-size: 0.9rem;
        }
.highlight-badge {
            display: inline-block;
            background: rgba(6, 182, 212, 0.12);
            color: #0e7490;
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-right: 0.3rem;
        }
/* 导航高亮当前页 */
        .navbar .nav-link.active {
            color: var(--primary);
            font-weight: 600;
        }

/* --- 子页面追加 --- */
.guide-hero { padding: 3.5rem 0 2rem; }
.guide-title { font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.guide-sub { color: #4a5a7a; font-size: 1.1rem; }
.guide-section { background: white; border-radius: var(--card-radius); box-shadow: var(--soft-shadow); padding: 2rem; margin-bottom: 2.5rem; border: 1px solid rgba(37,99,235,0.06); }
.guide-section h2 { font-weight: 700; color: var(--primary); margin-bottom: 1.2rem; font-size: 1.6rem; border-left: 5px solid var(--accent); padding-left: 1rem; }
.guide-section h3 { font-weight: 600; color: var(--text); margin-top: 1.5rem; margin-bottom: 0.75rem; font-size: 1.2rem; }
.guide-list { list-style: none; padding-left: 0; }
.guide-list li { padding: 0.4rem 0 0.4rem 1.8rem; position: relative; color: var(--text); }
.guide-list li::before { content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 400; position: absolute; left: 0; color: var(--accent); }
.step-box { background: var(--bg); border-radius: 14px; padding: 1.2rem; margin-top: 1rem; }
.step-box .step-num { display: inline-block; background: var(--primary); color: white; border-radius: 50%; width: 26px; height: 26px; text-align: center; line-height: 26px; font-weight: 700; margin-right: 0.5rem; }
.badge-guide { background: rgba(6,182,212,0.12); color: var(--accent); padding: 0.3rem 0.8rem; border-radius: 30px; font-size: 0.8rem; font-weight: 600; }
.tip-callout { background: rgba(37,99,235,0.04); border-left: 4px solid var(--primary); padding: 1rem 1.4rem; border-radius: 0 12px 12px 0; margin: 1.5rem 0; }
.guide-section { padding: 1.2rem; }

/* --- 子页面追加 --- */
/* 隐私政策页面专属样式 */
        .privacy-hero {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
            padding: 80px 0 40px;
            border-bottom: 1px solid rgba(37, 99, 235, 0.1);
        }
.privacy-content {
            padding: 60px 0 80px;
        }
.privacy-section {
            background: #ffffff;
            border-radius: var(--card-radius);
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: var(--soft-shadow);
            transition: box-shadow 0.3s ease;
        }
.privacy-section:hover {
            box-shadow: var(--hover-shadow);
        }
.privacy-section h2 {
            color: var(--text);
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary);
            display: inline-block;
        }
.privacy-section h3 {
            color: var(--primary);
            font-size: 1.2rem;
            font-weight: 600;
            margin: 25px 0 15px;
        }
.privacy-section p {
            color: #4a5568;
            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: #4a5568;
            line-height: 1.8;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
.privacy-badge {
            display: inline-block;
            background: rgba(37, 99, 235, 0.08);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
.privacy-contact {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #fff;
            border-radius: var(--card-radius);
            padding: 40px;
            margin-top: 40px;
            box-shadow: var(--soft-shadow);
        }
.privacy-contact h2 {
            color: #fff;
            border-bottom-color: rgba(255,255,255,0.3);
        }
.privacy-contact p {
            color: rgba(255,255,255,0.9);
        }
.privacy-contact .btn-privacy {
            background: #fff;
            color: var(--primary);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.privacy-contact .btn-privacy:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255,255,255,0.3);
        }
.last-updated {
            color: #718096;
            font-size: 0.85rem;
            margin-top: 30px;
            text-align: center;
        }
.privacy-hero {
                padding: 60px 0 30px;
            }
.privacy-section {
                padding: 25px;
            }
.privacy-contact {
                padding: 25px;
            }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.table { color:#0f1e3d !important; border-color:rgba(0,0,0,.12) !important; --bs-table-bg:transparent !important; --bs-table-color:#0f1e3d !important; }
