:root {
      --primary: #06b6d4;
      --accent: #ec4899;
      --bg: #0c0a1a;
      --text: #e0f2fe;
      --text-muted: rgba(224, 242, 254, 0.6);
      --card-bg: rgba(255, 255, 255, 0.04);
      --border-light: rgba(6, 182, 212, 0.2);
      --shadow: 0 8px 20px rgba(0,0,0,0.6);
      --radius: 8px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Inter', system-ui, -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
      overflow-x: hidden;
    }
    h1,h2,h3,h4,.serif-title {
      font-family: 'Inter', 'Source Han Serif SC', 'Noto Serif SC', serif;
    }

    /* 导航 */
    .navbar-cool {
      background: rgba(12, 10, 26, 0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-light);
      padding: 12px 0;
      z-index: 999;
    }
    .navbar-cool .navbar-brand {
      font-weight: 800;
      font-size: 1.8rem;
      color: var(--text) !important;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
    }
    .navbar-cool .navbar-brand i {
      color: var(--primary);
      margin-right: 8px;
    }
    .navbar-cool .nav-link {
      color: rgba(224, 242, 254, 0.8) !important;
      font-weight: 500;
      padding: 0.5rem 1rem;
      border-radius: 30px;
      transition: all 0.2s;
    }
    .navbar-cool .nav-link:hover {
      color: var(--primary) !important;
      background: rgba(6, 182, 212, 0.1);
    }
    .navbar-toggler {
      border-color: var(--primary);
    }
    .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(6,182,212,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* hero 打字机 */
    .hero-section {
      padding: 120px 0 60px;
      background: radial-gradient(circle at 30% 20%, rgba(6,182,212,0.2), transparent 50%),
                  radial-gradient(circle at 80% 70%, rgba(236,72,153,0.2), transparent 40%);
      border-bottom: 1px solid var(--border-light);
    }
    .typewriter {
      display: inline-block;
      font-weight: 800;
      font-size: 3.5rem;
      color: var(--text);
      border-right: 3px solid var(--primary);
      white-space: nowrap;
      overflow: hidden;
      width: 15ch;
      animation: typing 3.5s steps(15, end), blink 0.75s step-end infinite;
    }
    @keyframes typing {
      from { width: 0 }
      to { width: 15ch }
    }
    @keyframes blink {
      50% { border-color: transparent }
    }
    .hero-sub {
      color: var(--text-muted);
      max-width: 700px;
      font-size: 1.2rem;
      margin-top: 20px;
    }

    /* 区块通用 */
    .section-block {
      padding: 70px 0;
    }
    .section-title {
      font-size: 2.4rem;
      font-weight: 800;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .section-title i {
      color: var(--primary);
    }
    .section-sub {
      color: var(--text-muted);
      margin-bottom: 40px;
      font-size: 1.1rem;
    }

    /* 卡片网格 */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 24px;
    }
    .movie-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.3s;
      border: 1px solid rgba(255,255,255,0.03);
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      cursor: pointer;
      position: relative;
      animation: fadeSlide 0.5s ease forwards;
      opacity: 0;
    }
    @keyframes fadeSlide {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .movie-card:nth-child(1) { animation-delay: 0.02s; }
    .movie-card:nth-child(2) { animation-delay: 0.07s; }
    .movie-card:nth-child(3) { animation-delay: 0.12s; }
    .movie-card:nth-child(4) { animation-delay: 0.17s; }
    .movie-card:nth-child(5) { animation-delay: 0.22s; }
    .movie-card:nth-child(6) { animation-delay: 0.27s; }
    .movie-card:nth-child(7) { animation-delay: 0.32s; }
    .movie-card:nth-child(8) { animation-delay: 0.37s; }
    .movie-card:nth-child(9) { animation-delay: 0.42s; }
    .movie-card:nth-child(10) { animation-delay: 0.47s; }
    .movie-card:nth-child(11) { animation-delay: 0.52s; }
    .movie-card:nth-child(12) { animation-delay: 0.57s; }

    .movie-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 15px 30px rgba(6, 182, 212, 0.2);
    }
    .poster-wrapper {
      position: relative;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #1a1a2e;
    }
    .poster-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .movie-card:hover .poster-wrapper img {
      transform: scale(1.08);
    }
    .badge-update {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0,0,0,0.8);
      color: #fff;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.7rem;
      font-weight: 600;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255,255,255,0.2);
    }
    .badge-score {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(236, 72, 153, 0.9);
      color: #fff;
      padding: 4px 8px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 0.8rem;
    }
    .rating-stars {
      color: #ffc107;
      font-size: 0.8rem;
      letter-spacing: 2px;
      margin-bottom: 4px;
    }
    .card-body {
      padding: 14px;
    }
    .card-body .movie-title {
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .card-body .meta {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    /* 分类入口 */
    .category-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
    }
    .cat-pill {
      background: rgba(6,182,212,0.1);
      border: 1px solid var(--border-light);
      padding: 10px 26px;
      border-radius: 50px;
      font-weight: 600;
      color: var(--text);
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .cat-pill:hover {
      background: rgba(6,182,212,0.25);
      border-color: var(--primary);
      color: white;
      transform: scale(1.05);
    }

    /* 排行榜 */
    .rank-item {
      display: flex;
      align-items: center;
      padding: 16px 20px;
      background: rgba(255,255,255,0.02);
      border-radius: var(--radius);
      margin-bottom: 12px;
      border-left: 4px solid var(--primary);
      transition: background 0.2s;
    }
    .rank-item:hover {
      background: rgba(6,182,212,0.1);
    }
    .rank-num {
      font-size: 2rem;
      font-weight: 800;
      color: var(--accent);
      width: 60px;
    }
    .rank-info {
      flex: 1;
    }
    .rank-info h5 {
      font-weight: 600;
      margin-bottom: 4px;
    }

    /* 步骤条 */
    .steps-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 30px;
    }
    .step-item {
      flex: 1;
      min-width: 200px;
      background: rgba(0,0,0,0.2);
      padding: 24px;
      border-radius: var(--radius);
      border-top: 4px solid var(--primary);
    }
    .step-num {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--primary);
    }

    /* FAQ */
    .faq-item {
      background: rgba(255,255,255,0.03);
      padding: 20px 24px;
      border-radius: var(--radius);
      margin-bottom: 12px;
      border-left: 4px solid var(--accent);
    }
    .faq-item h5 {
      font-weight: 600;
      margin-bottom: 8px;
    }

    /* 友链 */
    .friend-links {
      background: rgba(0,0,0,0.2);
      border-radius: var(--radius);
      padding: 30px;
      margin-top: 40px;
      border: 1px solid var(--border-light);
    }

    /* footer */
    .footer {
      background: rgba(0,0,0,0.4);
      padding: 40px 0 20px;
      border-top: 1px solid var(--border-light);
      color: var(--text-muted);
    }

    /* 弹窗全屏沉浸 */
    .modal-full {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: rgba(12, 10, 26, 0.95);
      backdrop-filter: blur(20px);
      overflow-y: auto;
    }
    .modal-full.show {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .modal-content-box {
      max-width: 800px;
      background: rgba(20, 15, 40, 0.9);
      border-radius: 20px;
      border: 1px solid rgba(6,182,212,0.3);
      padding: 40px;
      margin: 20px;
      position: relative;
      color: var(--text);
      box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    }
    .modal-close {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 2rem;
      background: none;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
    }
    .modal-close:hover {
      color: var(--primary);
    }
    .modal-score {
      font-size: 3rem;
      font-weight: 800;
      color: var(--primary);
      text-shadow: 0 0 30px var(--primary);
    }

    @media (max-width: 768px) {
      .typewriter {
        font-size: 2rem;
        white-space: normal;
        width: 100%;
        animation: none;
        border-right: none;
      }
      .section-title {
        font-size: 2rem;
      }
    }

/* --- 子页面追加 --- */
/* 关于我们页专属样式 */
        .about-hero {
            padding: 100px 0 60px;
            background: radial-gradient(ellipse at 30% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 60%),
                        radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
        }
.about-hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 16px;
            line-height: 1.2;
        }
.about-hero h1 span {
            color: var(--accent);
        }
.about-section {
            padding: 60px 0;
        }
.about-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 32px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.about-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
        }
.about-card i {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 16px;
        }
.about-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text);
        }
.about-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.8;
        }
.timeline-section {
            padding: 60px 0;
            position: relative;
        }
.timeline-item {
            position: relative;
            padding-left: 40px;
            margin-bottom: 40px;
            border-left: 2px solid var(--border-light);
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 4px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 12px rgba(6, 182, 212, 0.5);
        }
.timeline-item .timeline-date {
            font-size: 0.85rem;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 6px;
        }
.timeline-item h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
.timeline-item p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.8;
        }
.stats-row {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(236, 72, 153, 0.08));
            border-radius: var(--radius);
            padding: 40px 20px;
            margin: 40px 0;
        }
.stat-item {
            text-align: center;
            padding: 16px;
        }
.stat-item .stat-num {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--primary);
            display: block;
        }
.stat-item .stat-label {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 8px;
        }
.feature-list {
            list-style: none;
            padding: 0;
            margin: 20px 0 0;
        }
.feature-list li {
            padding: 10px 0;
            display: flex;
            align-items: flex-start;
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }
.feature-list li i {
            color: var(--accent);
            margin-right: 12px;
            margin-top: 5px;
            flex-shrink: 0;
        }
.about-hero h1 {
                font-size: 2rem;
            }
.about-hero {
                padding: 80px 0 40px;
            }
.about-card {
                padding: 24px;
                margin-bottom: 20px;
            }
.stats-row {
                padding: 24px 16px;
            }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
        .disclaimer-section { padding: 60px 0; }
.disclaimer-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 32px;
            margin-bottom: 28px;
            transition: transform .2s ease, box-shadow .2s ease;
        }
.disclaimer-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
.disclaimer-card h2 {
            color: var(--primary);
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.disclaimer-card h2 i { color: var(--accent); }
.disclaimer-card p {
            color: var(--text);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 14px;
        }
.disclaimer-card ul {
            color: var(--text);
            padding-left: 20px;
            margin-bottom: 12px;
        }
.disclaimer-card li {
            margin-bottom: 8px;
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--text);
        }
.disclaimer-card li strong { color: var(--primary); }
.disclaimer-updated {
            display: inline-block;
            background: rgba(236, 72, 153, 0.15);
            color: var(--accent);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 40px;
            border: 1px solid rgba(236, 72, 153, 0.3);
        }
.contact-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px dashed var(--primary);
            transition: color .2s;
        }
.contact-link:hover { color: var(--accent); border-bottom-color: var(--accent); }
.page-hero {
            background: linear-gradient(135deg, rgba(6,182,212,0.08) 0%, rgba(236,72,153,0.06) 100%);
            border-bottom: 1px solid var(--border-light);
            padding: 50px 0 40px;
        }
.page-hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.02em;
        }
.page-hero h1 span { color: var(--primary); }
.page-hero .hero-sub {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 640px;
            margin-top: 8px;
        }
.disclaimer-card { padding: 24px; }
.page-hero h1 { font-size: 1.7rem; }

/* --- 子页面追加 --- */
.privacy-hero { padding: 80px 0 40px; text-align: center; }
.privacy-content { padding: 40px 0 80px; }
.privacy-block { margin-bottom: 50px; }
.privacy-block h2 { color: var(--primary); font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; }
.privacy-block h3 { color: var(--text); font-size: 1.2rem; font-weight: 600; margin: 20px 0 15px; }
.privacy-block p { color: var(--text-muted); line-height: 1.8; margin-bottom: 15px; }
.privacy-block ul { color: var(--text-muted); line-height: 1.8; padding-left: 20px; margin-bottom: 15px; }
.privacy-block ul li { margin-bottom: 8px; }
.privacy-block ul li::marker { color: var(--primary); }
.privacy-note { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 20px; margin: 30px 0; }
.privacy-note p { margin: 0; }
.update-date { color: var(--accent); font-weight: 600; }
.privacy-hero { padding: 60px 0 30px; }
.privacy-content { padding: 30px 0 60px; }
.privacy-block h2 { font-size: 1.3rem; }