:root {
    --primary: #2563eb;
    --accent: #06b6d4;
    --bg: #f4f8ff;
    --text: #0f1e3d;
    --border-w: 3px;
    --shadow-hard: 6px 6px 0 var(--text);
    --shadow-hard-sm: 4px 4px 0 var(--text);
  }
  * { border-radius: 0 !important; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', 'Source Han Sans SC', 'Noto Sans SC', sans-serif;
    font-size: 14px;
    letter-spacing: 0.2px;
  }
  h1, h2, h3, h4, h5, .font-song {
    font-family: 'Source Han Serif SC', 'Noto Serif SC', 'Inter', serif;
    font-weight: 800;
  }
  /* 滚动进度条 */
  #progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 99999;
    transition: width 0.15s;
  }
  /* 硬朗直角风格 */
  .sharp-card {
    border: var(--border-w) solid var(--text);
    box-shadow: var(--shadow-hard);
    background: #fff;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .sharp-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0 var(--text);
  }
  .sharp-btn {
    border: 3px solid var(--text);
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    box-shadow: 4px 4px 0 var(--text);
    transition: all 0.2s;
  }
  .sharp-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--text);
    background: var(--accent);
    color: var(--text);
  }
  /* 导航 */
  .navbar-bj {
    background: var(--bg);
    border-bottom: 4px solid var(--text);
    box-shadow: 0 4px 0 rgba(15,30,61,0.1);
    padding: 10px 0;
  }
  .navbar-bj .navbar-brand {
    font-family: 'Source Han Serif SC', serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text);
    border: 3px solid var(--text);
    background: #fff;
    padding: 4px 14px;
    box-shadow: var(--shadow-hard-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .navbar-bj .nav-link {
    font-weight: 600;
    color: var(--text);
    margin: 0 6px;
    padding: 6px 12px;
    border: 2px solid transparent;
    transition: all 0.15s;
  }
  .navbar-bj .nav-link:hover {
    border-color: var(--text);
    background: var(--accent);
    color: var(--text);
    box-shadow: 3px 3px 0 var(--text);
  }
  /* Hero 视差 */
  .hero-section {
    position: relative;
    min-height: 480px;
    background: url('{随机图片}') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 4px solid var(--text);
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,30,61,0.7) 0%, rgba(15,30,61,0.5) 50%, rgba(15,30,61,0.8) 100%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 20px;
  }
  .hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    text-shadow: 4px 4px 0 var(--text);
    margin-bottom: 10px;
    border-bottom: 4px solid var(--accent);
    display: inline-block;
    padding-bottom: 8px;
  }
  .hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 300;
  }
  /* 区块标题 */
  .section-title {
    border-left: 8px solid var(--primary);
    padding-left: 14px;
    font-size: 28px;
    font-weight: 800;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .section-title .icon {
    background: var(--text);
    color: #fff;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--text);
    box-shadow: 3px 3px 0 var(--primary);
  }
  /* 电影卡片 */
  .movie-card {
    position: relative;
    background: #fff;
    border: 3px solid var(--text);
    box-shadow: var(--shadow-hard-sm);
    margin-bottom: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    overflow: hidden;
    height: 100%;
  }
  .movie-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--text);
  }
  .movie-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
    background: #e2e8f0;
  }
  .movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }
  .movie-card:hover .movie-poster img {
    transform: scale(1.05);
  }
  .movie-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15,30,61,0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .movie-card:hover .movie-overlay {
    opacity: 1;
  }
  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(37,99,235,0.9);
    border: 3px solid #fff;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 0 var(--text);
  }
  .movie-info {
    padding: 10px 10px 6px;
  }
  .movie-title {
    font-weight: 800;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .movie-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #555;
    margin-top: 4px;
  }
  .rating-badge {
    background: var(--accent);
    color: var(--text);
    font-weight: 800;
    padding: 1px 6px;
    border: 2px solid var(--text);
    font-size: 12px;
  }
  /* 榜单 */
  .rank-list {
    background: #fff;
    border: 3px solid var(--text);
    box-shadow: var(--shadow-hard-sm);
    padding: 0;
  }
  .rank-item {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 2px solid var(--text);
    transition: background 0.15s;
    cursor: pointer;
  }
  .rank-item:last-child { border-bottom: none; }
  .rank-item:hover { background: var(--bg); }
  .rank-num {
    font-size: 24px;
    font-weight: 900;
    width: 44px;
    color: var(--primary);
    font-family: 'Source Han Serif SC', serif;
  }
  .rank-info { flex: 1; }
  .rank-info h5 { font-size: 15px; font-weight: 700; margin: 0; }
  .rank-info span { font-size: 12px; color: #555; }
  .rank-score {
    font-weight: 800;
    color: var(--text);
    background: var(--accent);
    padding: 2px 8px;
    border: 2px solid var(--text);
  }
  /* 表格 */
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 3px solid var(--text);
    box-shadow: var(--shadow-hard-sm);
  }
  .compare-table th {
    background: var(--primary);
    color: #fff;
    padding: 12px;
    border: 2px solid var(--text);
    font-weight: 700;
  }
  .compare-table td {
    padding: 10px 12px;
    border: 2px solid var(--text);
    font-size: 14px;
  }
  .compare-table tr:nth-child(even) td { background: var(--bg); }
  /* 编号清单 */
  .numbered-list {
    counter-reset: step;
    list-style: none;
    padding-left: 0;
  }
  .numbered-list li {
    counter-increment: step;
    position: relative;
    padding-left: 48px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
  }
  .numbered-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 2px;
    width: 32px;
    height: 32px;
    background: var(--text);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    box-shadow: 2px 2px 0 var(--accent);
    font-size: 15px;
  }
  /* 友链 */
  .friend-links {
    background: var(--text);
    color: #fff;
    padding: 30px 0;
    border-top: 4px solid var(--primary);
    margin-top: 50px;
  }
  .friend-links a {
    color: #fff;
    text-decoration: underline;
    margin-right: 20px;
  }
  /* 抽屉弹窗 */
  .drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,30,61,0.7);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
  }
  .drawer-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .drawer-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 4px solid var(--text);
    box-shadow: 0 -8px 0 rgba(15,30,61,0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    max-height: 80vh;
    overflow-y: auto;
  }
  .drawer-panel.active {
    transform: translateY(0);
  }
  .drawer-content {
    padding: 24px;
    position: relative;
  }
  .drawer-close {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    font-weight: 800;
    color: var(--text);
  }
  .drawer-close:hover { color: var(--primary); }
  /* 底部页脚 */
  .site-footer {
    background: var(--text);
    color: #cbd5e1;
    padding: 30px 0 20px;
    border-top: 4px solid var(--primary);
  }
  .site-footer a {
    color: #fff;
    text-decoration: none;
  }
  .site-footer a:hover { text-decoration: underline; }
  /* 小工具 */
  .badge-cat {
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border: 2px solid var(--text);
    font-weight: 600;
  }
  .category-block {
    margin-bottom: 20px;
  }
  .category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    border-bottom: 3px solid var(--text);
    padding-bottom: 8px;
  }
  .category-header h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .category-header h3 i {
    background: var(--primary);
    color: #fff;
    padding: 4px;
    border: 2px solid var(--text);
  }
  .see-more {
    margin-left: auto;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    border: 2px solid var(--text);
    padding: 2px 10px;
    background: #fff;
  }
  .see-more:hover { background: var(--accent); color: var(--text); }
  @media (max-width: 768px) {
    .hero-section { min-height: 320px; background-attachment: scroll; }
    .hero-content h1 { font-size: 2.2rem; }
    .movie-card { margin-bottom: 12px; }
  }

/* --- 子页面追加 --- */
/* 本页专属小样式：关于页的排版增强 */
        .about-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #fff;
            padding: 80px 0 60px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
            border-bottom: var(--border-w) solid var(--text);
        }
.about-hero h1 {
            font-weight: 900;
            font-size: 2.8rem;
            letter-spacing: -0.02em;
            text-shadow: 3px 3px 0 rgba(0,0,0,0.25);
        }
.about-hero p {
            font-size: 1.15rem;
            max-width: 640px;
            opacity: 0.95;
        }
.about-section {
            margin-bottom: 50px;
        }
.about-section .section-title {
            margin-bottom: 24px;
        }
.about-content {
            background: #fff;
            border: var(--border-w) solid var(--text);
            box-shadow: var(--shadow-hard);
            padding: 36px 40px;
            border-radius: 16px;
        }
.about-content p {
            font-size: 1rem;
            line-height: 1.9;
            color: var(--text);
            margin-bottom: 1.2rem;
        }
.about-content ul {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
.about-content li {
            margin-bottom: 0.5rem;
            line-height: 1.8;
        }
.feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 16px;
            box-shadow: 3px 3px 0 var(--text);
        }
.feature-col {
            margin-bottom: 30px;
        }
.feature-col h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text);
        }
.feature-col p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #3a4a6b;
        }
.timeline-item {
            position: relative;
            padding-left: 28px;
            margin-bottom: 24px;
            border-left: 3px solid var(--primary);
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 4px;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: var(--accent);
            border: 3px solid #fff;
            box-shadow: 0 0 0 2px var(--primary);
        }
.timeline-item h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text);
        }
.timeline-item p {
            font-size: 0.92rem;
            color: #3a4a6b;
            line-height: 1.7;
            margin-bottom: 0;
        }
.stat-number {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
            line-height: 1.1;
            margin-bottom: 4px;
        }
.stat-label {
            font-size: 0.9rem;
            color: #3a4a6b;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }
.stat-col {
            text-align: center;
            padding: 20px 10px;
            border: 2px solid #e0e7f0;
            border-radius: 12px;
            margin-bottom: 20px;
            background: #f9fcff;
        }
.about-hero h1 {
                font-size: 1.8rem;
            }
.about-content {
                padding: 24px 20px;
            }

/* --- 子页面追加 --- */
/* 本页专属微调 —— 确保与站点硬阴影、圆角风格完全贴合 */
        .disclaimer-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-bottom: var(--border-w) solid var(--text);
            box-shadow: var(--shadow-hard);
            margin-bottom: 2.5rem;
            padding: 3rem 0;
        }
.disclaimer-hero h1 {
            color: #fff;
            font-weight: 900;
            letter-spacing: -0.02em;
            text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
        }
.disclaimer-hero p {
            color: rgba(255,255,255,0.9);
            max-width: 800px;
            font-weight: 500;
        }
.disclaimer-section {
            background: var(--bg);
            padding: 2rem 0 3rem;
        }
.disclaimer-card {
            background: #ffffff;
            border: var(--border-w) solid var(--text);
            border-radius: 1.25rem;
            box-shadow: var(--shadow-hard-sm);
            padding: 2rem 1.8rem;
            margin-bottom: 2.5rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
.disclaimer-card:hover {
            transform: translate(-2px, -2px);
            box-shadow: 8px 8px 0 var(--text);
        }
.disclaimer-card h2 {
            font-weight: 800;
            color: var(--text);
            border-left: 8px solid var(--accent);
            padding-left: 1rem;
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
            font-size: 1.7rem;
        }
.disclaimer-card h3 {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.3rem;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
.disclaimer-card p, .disclaimer-card li {
            color: #1e2a4a;
            font-weight: 500;
            line-height: 1.7;
        }
.disclaimer-card ul {
            padding-left: 1.2rem;
            list-style-type: square;
        }
.disclaimer-card a {
            color: var(--primary);
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
.disclaimer-card a:hover {
            color: var(--accent);
        }
.highlight-box {
            background: rgba(6, 182, 212, 0.08);
            border-left: 5px solid var(--accent);
            padding: 1.2rem 1.5rem;
            border-radius: 0.5rem;
            margin: 1.5rem 0;
            font-weight: 500;
        }
.badge-legal {
            background: var(--primary);
            color: white;
            font-weight: 700;
            padding: 0.2rem 1rem;
            border-radius: 50px;
            display: inline-block;
            font-size: 0.85rem;
            letter-spacing: 0.03em;
            border: 2px solid var(--text);
            box-shadow: 2px 2px 0 var(--text);
        }
.footer-note {
            font-size: 0.95rem;
            opacity: 0.9;
        }
/* 与首页导航/按钮完全一致的覆盖 */
        .navbar-bj {
            border-bottom: var(--border-w) solid var(--text);
            box-shadow: 0 4px 0 var(--shadow-hard);
        }

/* --- 子页面追加 --- */
/* 本页专属微调样式 */
        .privacy-section {
            padding: 60px 0;
        }
.privacy-content {
            background: var(--bg);
            border: var(--border-w) solid var(--text);
            box-shadow: var(--shadow-hard);
            padding: 40px 36px;
            border-radius: 0;
        }
.privacy-content h2 {
            font-weight: 800;
            color: var(--primary);
            font-size: 1.6rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            position: relative;
            padding-left: 1.2rem;
        }
.privacy-content h2::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.25rem;
            width: 6px;
            height: 1.4rem;
            background: var(--accent);
        }
.privacy-content h3 {
            font-weight: 700;
            color: var(--text);
            font-size: 1.2rem;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
        }
.privacy-content p {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 1rem;
            font-size: 0.98rem;
        }
.privacy-content ul {
            padding-left: 1.2rem;
            margin-bottom: 1rem;
        }
.privacy-content li {
            margin-bottom: 0.5rem;
            color: var(--text);
            line-height: 1.7;
        }
.privacy-content strong {
            color: var(--primary);
            font-weight: 600;
        }
.privacy-update {
            background: var(--text);
            color: #fff;
            display: inline-block;
            padding: 0.2rem 1rem;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
        }
.privacy-content .highlight-box {
            background: rgba(6, 182, 212, 0.08);
            border-left: 4px solid var(--accent);
            padding: 1rem 1.2rem;
            margin: 1.5rem 0;
        }
.privacy-content .highlight-box p {
            margin-bottom: 0.3rem;
        }
.friend-links .container {
            background: var(--bg);
            border: var(--border-w) solid var(--text);
            box-shadow: var(--shadow-hard);
            padding: 30px 36px;
        }
.friend-links h4 {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
        }
.friend-links a:hover {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }