:root {
    --primary: #6d5dfc;
    --accent: #22d3ee;
    --bg: #0f1020;
    --text: #e8eaf6;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shadow-soft: 0 8px 30px rgba(0,0,0,0.35);
    --shadow-glow: 0 0 40px rgba(109, 93, 252, 0.25);
    --font-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
    --font-sans: "Inter", "Noto Sans SC", "Source Han Sans SC", "PingFang SC", sans-serif;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.7;
    overflow-x: hidden;
  }
  h1, h2, h3, h4, .serif-font {
    font-family: var(--font-serif);
    font-weight: 700;
  }
  /* 滚动进度条 */
  #progress-bar {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 9999;
    border-radius: 0 2px 2px 0;
    transition: width 0.1s linear;
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.6);
  }
  /* 导航栏 */
  .navbar-custom {
    background: rgba(15, 16, 32, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(109, 93, 252, 0.2);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
  }
  .navbar-brand {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text) !important;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .navbar-brand i { color: var(--accent); font-size: 1.6rem; }
  .nav-link-custom {
    color: var(--text) !important;
    font-weight: 500;
    margin: 0 1rem;
    padding: 0.5rem 0 !important;
    position: relative;
    transition: color 0.3s;
  }
  .nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s;
    border-radius: 2px;
  }
  .nav-link-custom:hover::after { width: 100%; }
  .nav-link-custom:hover { color: var(--accent) !important; }
  .navbar-toggler {
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
  }
  .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(232, 234, 246, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  /* Hero 关键词标签云 */
  .hero-section {
    padding: 4rem 2rem 3rem;
    text-align: center;
    position: relative;
  }
  .hero-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
  }
  .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(232, 234, 246, 0.7);
    margin-bottom: 2.5rem;
    font-weight: 300;
  }
  .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.2rem;
    max-width: 900px;
    margin: 0 auto;
  }
  .tag-cloud a {
    display: inline-block;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    background: rgba(109, 93, 252, 0.15);
    border: 1px solid rgba(109, 93, 252, 0.3);
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  .tag-cloud a:hover {
    background: rgba(109, 93, 252, 0.4);
    border-color: var(--accent);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(109, 93, 252, 0.4);
    color: white;
  }
  /* 区块通用 */
  .section-padding { padding: 4rem 2rem; }
  .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
  }
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 60%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
  }
  .section-desc {
    color: rgba(232, 234, 246, 0.6);
    margin-bottom: 2.5rem;
    font-weight: 300;
  }
  /* 横向滑动海报区 */
  .poster-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem 2rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255,255,255,0.1);
  }
  .poster-scroll::-webkit-scrollbar {
    height: 6px;
  }
  .poster-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
  }
  .poster-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px;
  }
  /* 影片卡片 */
  .movie-card {
    flex: 0 0 auto;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  }
  .movie-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .movie-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(109, 93, 252, 0.3);
    border-color: rgba(34, 211, 238, 0.4);
  }
  .poster-wrapper {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
  }
  .poster-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .movie-card:hover .poster-wrapper img {
    transform: scale(1.1);
  }
  .play-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15, 16, 32, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
  }
  .play-overlay i {
    font-size: 3.5rem;
    color: var(--accent);
    text-shadow: 0 0 30px rgba(34, 211, 238, 0.8);
    transition: transform 0.3s ease;
  }
  .movie-card:hover .play-overlay {
    opacity: 1;
  }
  .movie-card:hover .play-overlay i {
    transform: scale(1.15);
  }
  .movie-info {
    padding: 1rem;
    text-align: left;
  }
  .movie-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .movie-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(232, 234, 246, 0.6);
  }
  .rating-badge {
    background: linear-gradient(135deg, #f6b93b, #e58e26);
    color: #0f1020;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
  }
  /* 排行榜 */
  .rank-section {
    background: linear-gradient(180deg, rgba(109, 93, 252, 0.08), transparent);
  }
  .rank-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .rank-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-md);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .rank-item:hover {
    background: rgba(109, 93, 252, 0.15);
    border-left-color: var(--primary);
    transform: translateX(8px);
  }
  .rank-medal {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .rank-medal.gold { background: linear-gradient(135deg, #f9d423, #ff4e50); color: #0f1020; }
  .rank-medal.silver { background: linear-gradient(135deg, #bdc3c7, #ecf0f1); color: #0f1020; }
  .rank-medal.bronze { background: linear-gradient(135deg, #e67e22, #d35400); color: #0f1020; }
  .rank-item .rank-title {
    font-weight: 600;
    flex: 1;
  }
  .rank-item .rank-score {
    font-weight: 700;
    color: var(--accent);
  }
  /* 分类胶囊 */
  .filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2.5rem;
  }
  .pill-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
  }
  .pill-btn:hover, .pill-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(109, 93, 252, 0.4);
  }
  /* 对比表格 */
  .comparison-table {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
  }
  .comparison-table table {
    width: 100%;
    border-collapse: collapse;
  }
  .comparison-table th, .comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .comparison-table th {
    background: rgba(109, 93, 252, 0.2);
    font-weight: 700;
    font-size: 1.1rem;
  }
  .comparison-table tr:hover td {
    background: rgba(109, 93, 252, 0.05);
  }
  .check-icon { color: var(--accent); }
  .cross-icon { color: #ff6b6b; }
  /* 编号清单 */
  .numbered-list {
    counter-reset: tip-counter;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1.2rem;
  }
  .numbered-list li {
    counter-increment: tip-counter;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
  }
  .numbered-list li:hover {
    background: rgba(109, 93, 252, 0.1);
    transform: translateX(6px);
  }
  .numbered-list li::before {
    content: counter(tip-counter, decimal-leading-zero);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.7;
    line-height: 1;
  }
  /* 底部抽屉弹窗 */
  .drawer-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }
  .drawer-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .movie-drawer {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    max-height: 80vh;
    background: #1a1b3a;
    border-radius: 28px 28px 0 0;
    padding: 2.5rem 2rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 -20px 60px rgba(0,0,0,0.6);
    overflow-y: auto;
  }
  .movie-drawer.active {
    transform: translateY(0);
  }
  .drawer-close {
    position: absolute;
    top: 1.2rem; right: 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
  }
  .drawer-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
  }
  .drawer-poster {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
  }
  .drawer-poster img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: var(--radius-lg);
  }
  .drawer-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  .drawer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.8rem 0;
  }
  .drawer-tags span {
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(109, 93, 252, 0.2);
    font-size: 0.85rem;
    font-weight: 500;
  }
  .drawer-plot {
    margin-top: 1rem;
    color: rgba(232, 234, 246, 0.8);
    line-height: 1.8;
  }
  /* 友情链接 */
  .friend-links {
    background: rgba(255,255,255,0.02);
    padding: 2.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .friend-links h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: rgba(232, 234, 246, 0.8);
    font-weight: 600;
  }
  .friend-links-content {
    color: var(--text);
    font-size: 0.95rem;
    opacity: 0.7;
    letter-spacing: 0.5px;
  }
  /* 页脚 */
  footer {
    background: #0a0b1a;
    padding: 3rem 2rem 2rem;
    text-align: center;
  }
  .footer-brand {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 0.5rem;
    display: inline-block;
  }
  .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 1.5rem 0;
  }
  .footer-links a {
    color: rgba(232, 234, 246, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
  }
  .footer-links a:hover {
    color: var(--accent);
  }
  .copyright {
    color: rgba(232, 234, 246, 0.4);
    font-size: 0.85rem;
    margin-top: 2rem;
  }
  /* 卡片延迟显示 */
  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }
  .delay-4 { transition-delay: 0.4s; }
  .delay-5 { transition-delay: 0.5s; }
  .delay-6 { transition-delay: 0.6s; }
  .delay-7 { transition-delay: 0.7s; }
  .delay-8 { transition-delay: 0.8s; }
  .delay-9 { transition-delay: 0.9s; }
  .delay-10 { transition-delay: 1s; }
  /* 按钮 */
  .btn-custom {
    background: linear-gradient(135deg, var(--primary), #8f7bff);
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  .btn-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(109, 93, 252, 0.5);
    color: white;
  }
  /* 响应式 */
  @media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .section-padding { padding: 3rem 1rem; }
    .movie-card { width: 160px; }
    .poster-wrapper { height: 220px; }
    .movie-drawer { padding: 2rem 1.5rem 1.5rem; }
  }

/* --- 子页面追加 --- */
/* 本页专属微调 */
    .about-hero { padding: 120px 0 60px; background: radial-gradient(ellipse at 20% 50%, rgba(109,93,252,0.15), transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(34,211,238,0.08), transparent 50%); }
.about-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 24px; transition: transform .3s, box-shadow .3s; }
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.about-card i { font-size: 2rem; color: var(--accent); margin-bottom: 16px; }
.about-card h3 { font-family: var(--font-sans); font-weight: 700; font-size: 1.3rem; color: var(--text); margin-bottom: 12px; }
.about-card p { color: rgba(232,234,246,0.75); line-height: 1.8; font-size: 0.95rem; }
.section-tag { display: inline-block; background: rgba(109,93,252,0.15); color: var(--accent); padding: 4px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 16px; }
.timeline { position: relative; padding-left: 28px; border-left: 2px solid rgba(109,93,252,0.3); margin-left: 12px; }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before { content: ''; position: absolute; left: -35px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 12px rgba(109,93,252,0.5); }
.timeline-item h4 { font-weight: 600; color: var(--text); margin-bottom: 8px; font-size: 1.1rem; }
.timeline-item p { color: rgba(232,234,246,0.7); font-size: 0.9rem; line-height: 1.7; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; margin-top: 30px; }
.stat-item { text-align: center; padding: 24px 16px; background: rgba(109,93,252,0.08); border-radius: var(--radius-md); border: 1px solid rgba(109,93,252,0.15); }
.stat-item .num { font-size: 2.2rem; font-weight: 800; color: var(--primary); font-family: var(--font-sans); }
.stat-item .label { color: rgba(232,234,246,0.6); font-size: 0.85rem; margin-top: 8px; }
.feature-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; color: rgba(232,234,246,0.8); font-size: 0.95rem; }
.feature-list li i { color: var(--accent); font-size: 0.9rem; }
.faq-item { background: rgba(255,255,255,0.03); border-radius: var(--radius-md); padding: 20px 24px; margin-bottom: 16px; border-left: 3px solid var(--primary); }
.faq-item h4 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.faq-item p { color: rgba(232,234,246,0.7); font-size: 0.9rem; line-height: 1.7; }
.about-hero { padding: 100px 0 40px; }
.about-card { padding: 24px; }

/* --- 子页面追加 --- */
.disclaimer-section {
            padding: 80px 0 60px;
        }
.disclaimer-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-md);
            padding: 35px 40px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-soft);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.disclaimer-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-glow);
        }
.disclaimer-card h3 {
            color: var(--primary);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 2px solid rgba(109, 93, 252, 0.2);
            padding-bottom: 12px;
        }
.disclaimer-card h3 i {
            color: var(--accent);
            font-size: 1.2rem;
        }
.disclaimer-card p, .disclaimer-card li {
            color: var(--text);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 12px;
        }
.disclaimer-card ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
.disclaimer-card li {
            margin-bottom: 8px;
        }
.highlight-text {
            color: var(--accent);
            font-weight: 600;
        }
.warning-box {
            background: rgba(255, 193, 7, 0.1);
            border: 1px solid rgba(255, 193, 7, 0.3);
            border-radius: var(--radius-md);
            padding: 20px 25px;
            margin: 20px 0;
        }
.warning-box p {
            color: #ffc107;
            margin-bottom: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.update-date {
            text-align: center;
            color: rgba(232, 234, 246, 0.6);
            font-size: 0.9rem;
            margin-top: 40px;
            padding: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
.disclaimer-card {
                padding: 25px 20px;
            }

/* --- 子页面追加 --- */
.privacy-content {
            max-width: 900px;
            margin: 0 auto;
        }
.privacy-content h2 {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-top: 3rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.privacy-content h2 i {
            font-size: 1.2rem;
            color: var(--accent);
        }
.privacy-content p {
            color: var(--text);
            line-height: 1.9;
            margin-bottom: 1.2rem;
            font-size: 0.95rem;
        }
.privacy-content ul {
            color: var(--text);
            line-height: 1.9;
            margin-bottom: 1.2rem;
            padding-left: 1.5rem;
        }
.privacy-content li {
            margin-bottom: 0.5rem;
        }
.privacy-badge {
            display: inline-block;
            background: rgba(109, 93, 252, 0.15);
            color: var(--accent);
            border: 1px solid rgba(109, 93, 252, 0.3);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
        }
.privacy-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            padding: 1.8rem;
            margin-bottom: 1.5rem;
        }
.privacy-card:hover {
            border-color: rgba(109, 93, 252, 0.4);
            box-shadow: var(--shadow-glow);
        }
.privacy-card h3 {
            color: var(--accent);
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }
.privacy-card h3 i {
            margin-right: 8px;
            color: var(--primary);
        }
.privacy-card p, .privacy-card ul {
            font-size: 0.9rem;
        }
.privacy-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 3rem;
        }
.privacy-footer p {
            font-size: 0.85rem;
            color: rgba(232, 234, 246, 0.7);
        }

/* --- 子页面追加 --- */
/* 排行榜专属样式 */
        .rank-hero {
            background: linear-gradient(135deg, rgba(109,93,252,0.15) 0%, rgba(34,211,238,0.08) 50%, rgba(15,16,32,0.9) 100%);
            padding: 60px 0 40px;
            border-bottom: 1px solid rgba(109,93,252,0.2);
        }
.rank-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }
.rank-hero p {
            color: rgba(232,234,246,0.7);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
.rank-tabs {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
            margin: 30px 0 40px;
        }
.rank-tab-btn {
            padding: 10px 28px;
            border-radius: 50px;
            border: 1px solid rgba(109,93,252,0.3);
            background: rgba(109,93,252,0.08);
            color: var(--text);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
.rank-tab-btn:hover, .rank-tab-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            box-shadow: var(--shadow-glow);
        }
.rank-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(109,93,252,0.15);
            border-radius: var(--radius-lg);
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
.rank-card:hover {
            border-color: rgba(109,93,252,0.4);
            box-shadow: var(--shadow-soft);
        }
.rank-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(109,93,252,0.15);
        }
.rank-card-header h2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.rank-card-header h2 i {
            color: var(--primary);
            font-size: 1.3rem;
        }
.rank-update-time {
            font-size: 0.8rem;
            color: rgba(232,234,246,0.5);
            display: flex;
            align-items: center;
            gap: 6px;
        }
.rank-number {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 800;
            color: rgba(232,234,246,0.4);
            flex-shrink: 0;
            margin-right: 18px;
            border-radius: 12px;
            background: rgba(255,255,255,0.03);
        }
.rank-number.top-1 {
            color: #ffd700;
            background: rgba(255,215,0,0.1);
            border: 1px solid rgba(255,215,0,0.3);
            box-shadow: 0 0 20px rgba(255,215,0,0.15);
        }
.rank-number.top-2 {
            color: #c0c0c0;
            background: rgba(192,192,192,0.08);
            border: 1px solid rgba(192,192,192,0.2);
        }
.rank-number.top-3 {
            color: #cd7f32;
            background: rgba(205,127,50,0.1);
            border: 1px solid rgba(205,127,50,0.25);
        }
.rank-poster {
            width: 80px;
            height: 110px;
            object-fit: cover;
            border-radius: 10px;
            margin-right: 20px;
            flex-shrink: 0;
            box-shadow: var(--shadow-soft);
        }
.rank-item-info {
            flex: 1;
            min-width: 0;
        }
.rank-item-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.rank-item-meta {
            font-size: 0.85rem;
            color: rgba(232,234,246,0.6);
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
.rank-item-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
.rank-item-meta i {
            color: var(--accent);
            font-size: 0.8rem;
        }
.rank-badge {
            display: inline-block;
            padding: 3px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            background: rgba(109,93,252,0.2);
            color: var(--primary);
            border: 1px solid rgba(109,93,252,0.3);
        }
.rank-badge.hot {
            background: rgba(255,107,107,0.15);
            color: #ff6b6b;
            border-color: rgba(255,107,107,0.3);
        }
.rank-badge.new {
            background: rgba(34,211,238,0.15);
            color: var(--accent);
            border-color: rgba(34,211,238,0.3);
        }
.rank-note {
            font-size: 0.9rem;
            color: rgba(232,234,246,0.5);
            text-align: center;
            padding: 20px 0 40px;
            border-top: 1px solid rgba(109,93,252,0.1);
            margin-top: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
.rank-note i {
            color: var(--primary);
        }
.rank-hero h1 {
                font-size: 2rem;
            }
.rank-card {
                padding: 20px;
            }
.rank-poster {
                width: 60px;
                height: 85px;
                margin-right: 12px;
            }
.rank-number {
                width: 36px;
                height: 36px;
                font-size: 1rem;
                margin-right: 12px;
            }
.rank-item-title {
                font-size: 0.95rem;
            }
.rank-item-meta {
                font-size: 0.75rem;
                gap: 8px;
            }

/* --- 子页面追加 --- */
/* 本页专属样式 - 观影指南 */
        .guide-hero {
            background: linear-gradient(135deg, rgba(109, 93, 252, 0.15) 0%, rgba(34, 211, 238, 0.08) 50%, transparent 100%);
            border-bottom: 1px solid rgba(109, 93, 252, 0.15);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }
.guide-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(109, 93, 252, 0.12) 0%, transparent 70%);
            border-radius: 50%;
        }
.guide-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
.guide-hero h1 .gradient-text {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.guide-hero .lead {
            font-size: 1.2rem;
            color: rgba(232, 234, 246, 0.75);
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
.guide-section {
            padding: 60px 0;
        }
.guide-section:nth-child(even) {
            background: rgba(109, 93, 252, 0.03);
        }
.guide-card {
            background: rgba(109, 93, 252, 0.06);
            border: 1px solid rgba(109, 93, 252, 0.15);
            border-radius: var(--radius-md);
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
        }
.guide-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-soft);
            border-color: rgba(109, 93, 252, 0.4);
        }
.guide-card .icon-wrapper {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #fff;
        }
.guide-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text);
        }
.guide-card p {
            color: rgba(232, 234, 246, 0.75);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
.guide-card ul {
            padding-left: 20px;
            color: rgba(232, 234, 246, 0.75);
            font-size: 0.95rem;
            line-height: 1.9;
        }
.guide-card ul li {
            margin-bottom: 4px;
        }
.guide-card ul li::marker {
            color: var(--accent);
        }
.steps-wrapper {
            counter-reset: step;
        }
.step-item {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            align-items: flex-start;
        }
.step-number {
            counter-increment: step;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            color: #fff;
            flex-shrink: 0;
            box-shadow: var(--shadow-glow);
        }
.step-number::before {
            content: counter(step);
        }
.step-content {
            flex: 1;
        }
.step-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text);
        }
.step-content p {
            color: rgba(232, 234, 246, 0.75);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
.tip-box {
            background: rgba(34, 211, 238, 0.08);
            border: 1px solid rgba(34, 211, 238, 0.2);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            margin: 20px 0;
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }
.tip-box i {
            color: var(--accent);
            font-size: 1.2rem;
            margin-top: 3px;
        }
.tip-box p {
            color: rgba(232, 234, 246, 0.85);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }
.faq-item:hover {
            border-color: rgba(109, 93, 252, 0.4);
            box-shadow: var(--shadow-soft);
        }
.faq-item h4 i {
            color: var(--primary);
            font-size: 0.9rem;
        }
.guide-hero h1 {
                font-size: 2rem;
            }
.guide-card {
                padding: 20px;
            }

/* --- 子页面追加 --- */
/* 本页专属微调 */
    .sitemap-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
.sitemap-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-md);
      padding: 24px 22px;
      transition: all .3s ease;
      height: 100%;
    }
.sitemap-card:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-glow);
      transform: translateY(-4px);
      background: rgba(109, 93, 252, 0.06);
    }
.sitemap-card h3 {
      font-size: 1.15rem;
      color: var(--text);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
    }
.sitemap-card h3 i {
      color: var(--primary);
      font-size: 1.1rem;
      width: 22px;
      text-align: center;
    }
.sitemap-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
.sitemap-card li {
      padding: 7px 0;
      border-bottom: 1px dashed rgba(255,255,255,0.06);
    }
.sitemap-card li:last-child { border-bottom: none; }
.sitemap-card a {
      color: rgba(232,234,246,0.75);
      text-decoration: none;
      font-size: 0.93rem;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
    }
.sitemap-card a:hover { color: var(--primary); }
.sitemap-card a i {
      font-size: 0.75rem;
      color: var(--accent);
      opacity: 0.6;
    }
.quick-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(109,93,252,0.1);
      border: 1px solid rgba(109,93,252,0.2);
      border-radius: 50px;
      padding: 8px 18px;
      color: var(--text);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all .3s;
    }
.quick-link:hover {
      background: var(--primary);
      color: #fff;
      box-shadow: var(--shadow-glow);
      transform: translateY(-2px);
    }
.quick-link i { font-size: 0.85rem; }
.quick-links-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 16px;
    }