:root {
    --primary: #6d5dfc;
    --accent: #22d3ee;
    --bg: #0f1020;
    --text: #e8eaf6;
    --border-color: rgba(232, 234, 246, 0.15);
  }
  * { font-family: 'Inter', sans-serif; }
  body {
    background-color: var(--bg);
    color: var(--text);
    letter-spacing: 0.2px;
  }
  h1,h2,h3,h4,.display-5,.navbar-brand { font-weight: 800; }
  p { line-height: 1.8; }
  .font-mono { font-family: 'Courier New', monospace; }

  /* 极简描边，无阴影 */
  .no-shadow { box-shadow: none !important; }
  .border-soft { border: 1px solid var(--border-color); }

  /* 导航 */
  .navbar {
    background: rgba(15, 16, 32, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s;
  }
  .navbar-scrolled {
    background: rgba(15, 16, 32, 0.95);
  }
  .navbar .nav-link { color: var(--text); font-weight: 500; }
  .navbar .nav-link:hover { color: var(--accent); }

  /* 胶囊分类按钮 */
  .category-pill {
    display: inline-block;
    padding: 0.3rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    transition: 0.2s;
  }
  .category-pill:hover, .category-pill.active {
    border-color: var(--primary);
    color: var(--accent);
  }

  /* 影片卡片 */
  .movie-card {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: border 0.2s;
    cursor: pointer;
  }
  .movie-card:hover { border-color: var(--primary); }
  .movie-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: #1a1c2e;
  }
  .movie-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
  }
  .movie-card:hover .movie-thumb img { transform: scale(1.05); }
  .movie-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,16,32,0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .movie-card:hover .movie-overlay { opacity: 1; }
  .movie-info { padding: 0.75rem; }
  .movie-title { font-weight: 600; font-size: 1rem; margin-bottom: 2px; }
  .movie-meta { font-size: 0.8rem; color: rgba(232, 234, 246, 0.7); }
  .rating-badge { color: var(--accent); font-weight: 700; }

  /* 排行榜奖牌 */
  .medal { font-size: 1.2rem; display: inline-block; width: 1.8rem; }
  .medal-gold { color: #ffd700; }
  .medal-silver { color: #c0c0c0; }
  .medal-bronze { color: #cd7f32; }

  /* 手风琴定制 */
  .accordion-item {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 0;
  }
  .accordion-button {
    background: transparent !important;
    color: var(--text);
    box-shadow: none;
  }
  .accordion-button:not(.collapsed) {
    background: rgba(109, 93, 252, 0.1) !important;
    color: var(--accent);
  }

  /* 数字动画 */
  .counter { font-family: 'Courier New', monospace; }

  /* Hero */
  .hero-section {
    padding: 8rem 0 4rem;
    border-bottom: 1px solid var(--border-color);
  }
  .btn-outline-accent {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
  }
  .btn-outline-accent:hover {
    background: var(--accent);
    color: var(--bg);
  }
  .btn-primary-custom {
    background: var(--primary);
    border: none;
    color: white;
  }
  .btn-primary-custom:hover { background: #5a4be0; }

  /* 区块间距 */
  .section-block { padding: 4rem 0; border-bottom: 1px solid var(--border-color); }

  /* 等宽字体数据 */
  .stat-num { font-family: 'Courier New', monospace; font-size: 1.2rem; }

  footer a { color: var(--text); text-decoration: none; }
  footer a:hover { color: var(--accent); }

  /* 弹窗全屏沉浸 */
  .movie-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999;
    background: rgba(15,16,32,0.92);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
  }
  .movie-modal.show { display: flex; }
  .modal-backdrop-img {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(15px) brightness(0.4);
    z-index: -1;
  }
  .modal-card {
    max-width: 640px;
    width: 90%;
    background: rgba(20, 22, 40, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
  }
  .modal-close {
    position: absolute; top: 1rem; right: 1.2rem;
    font-size: 1.5rem; color: var(--text); cursor: pointer;
    background: none; border: none;
  }

/* --- 子页面追加 --- */
/* 本页专属样式 —— 仅补充关于页布局，不覆盖站点根变量 */
        .about-hero {
            padding: 5rem 0 3rem;
            border-bottom: 1px solid var(--border-color);
        }
.about-hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
.about-hero .lead {
            color: rgba(232, 234, 246, 0.7);
            max-width: 720px;
            font-size: 1.05rem;
            font-weight: 400;
        }
.about-hero .highlight {
            color: var(--accent);
        }
.about-hero .primary-word {
            color: var(--primary);
        }
.about-section {
            padding: 4rem 0;
            border-bottom: 1px solid var(--border-color);
        }
.about-section:last-of-type {
            border-bottom: none;
        }
.about-section h2 {
            font-size: 1.75rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin-bottom: 1.2rem;
        }
.about-section h2 i {
            color: var(--accent);
            margin-right: 0.6rem;
        }
.about-section p {
            color: rgba(232, 234, 246, 0.78);
            line-height: 1.9;
            font-size: 0.98rem;
            margin-bottom: 1rem;
        }
.about-section p strong {
            color: var(--text);
            font-weight: 600;
        }
.about-section .accent-text {
            color: var(--accent);
            font-weight: 500;
        }
.about-section .primary-text {
            color: var(--primary);
            font-weight: 500;
        }
.about-section .stat-row {
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            margin-top: 2rem;
        }
.about-section .stat-item {
            text-align: left;
        }
.about-section .stat-num {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--text);
            font-family: 'Inter', sans-serif;
            line-height: 1.2;
        }
.about-section .stat-label {
            font-size: 0.85rem;
            color: rgba(232, 234, 246, 0.5);
            margin-top: 0.3rem;
            letter-spacing: 0.02em;
        }
.about-section .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
.about-section .feature-card {
            background: rgba(109, 93, 252, 0.06);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1.8rem 1.6rem;
            transition: transform 0.2s ease, border-color 0.2s ease;
        }
.about-section .feature-card:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
        }
.about-section .feature-card i {
            font-size: 1.8rem;
            color: var(--accent);
            margin-bottom: 1rem;
            display: block;
        }
.about-section .feature-card h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.5rem;
        }
.about-section .feature-card p {
            font-size: 0.9rem;
            color: rgba(232, 234, 246, 0.65);
            margin-bottom: 0;
            line-height: 1.7;
        }
.about-section .milestone-list {
            list-style: none;
            padding-left: 0;
            margin-top: 1.5rem;
        }
.about-section .milestone-list li {
            position: relative;
            padding-left: 1.8rem;
            margin-bottom: 1.2rem;
            color: rgba(232, 234, 246, 0.75);
            line-height: 1.7;
            font-size: 0.96rem;
        }
.about-section .milestone-list li::before {
            content: '\f0da';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--primary);
            font-size: 1rem;
        }
.about-section .milestone-list li strong {
            color: var(--text);
            font-weight: 600;
        }
.about-section .milestone-list li .year {
            color: var(--accent);
            font-weight: 600;
            margin-right: 0.4rem;
        }
.about-section .text-block {
            max-width: 780px;
        }
.footer-link {
            color: rgba(232, 234, 246, 0.5);
            text-decoration: none;
            transition: color 0.2s;
        }
.footer-link:hover {
            color: var(--accent);
        }

/* --- 子页面追加 --- */
/* 本页专属微调样式 */
        .privacy-section {
            padding: 60px 0;
        }
.privacy-card {
            background: rgba(15, 16, 32, 0.6);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 24px;
            backdrop-filter: blur(4px);
            transition: border-color 0.3s ease;
        }
.privacy-card:hover {
            border-color: var(--accent);
        }
.privacy-card h2 {
            color: var(--accent);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.privacy-card h2 i {
            font-size: 1.25rem;
            color: var(--primary);
        }
.privacy-card p, .privacy-card li {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.95rem;
        }
.privacy-card ul, .privacy-card ol {
            padding-left: 20px;
            margin-bottom: 12px;
        }
.privacy-card li {
            margin-bottom: 6px;
        }
.privacy-card strong {
            color: var(--accent);
        }
.last-updated {
            color: rgba(232, 234, 246, 0.6);
            font-size: 0.9rem;
            font-style: italic;
            margin-bottom: 30px;
        }
.back-to-top {
            display: inline-block;
            color: var(--accent);
            text-decoration: none;
            font-size: 0.9rem;
            margin-top: 10px;
            transition: color 0.3s ease;
        }
.back-to-top:hover {
            color: var(--primary);
        }
.privacy-card {
                padding: 20px;
            }
.privacy-card h2 {
                font-size: 1.25rem;
            }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.accordion-body { background:transparent !important; color:#e8eaf6 !important; }
.accordion-header { background:transparent !important; }
