:root {
      --main: #06b6d4;
      --accent: #ec4899;
      --bg: #0c0a1a;
      --text: #e0f2fe;
      --card-bg: #1a152e;
      --radius-lg: 24px;
      --radius-md: 18px;
      --shadow-glow: 0 20px 40px rgba(6, 182, 212, 0.15), 0 8px 24px rgba(0, 0, 0, 0.6);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
    }
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: #0c0a1a; }
    ::-webkit-scrollbar-thumb { background: #06b6d4; border-radius: 10px; }

    /* 滚动进度条 */
    #scrollProgress {
      position: fixed; top: 0; left: 0; height: 4px; width: 0%;
      background: linear-gradient(90deg, var(--main), var(--accent));
      z-index: 2000; border-radius: 4px; transition: width 0.1s;
    }
    /* 导航 */
    .navbar-bw { background: rgba(12, 10, 26, 0.8); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(6,182,212,0.2); }
    .navbar-bw .navbar-brand { font-weight: 900; font-size: 1.8rem; color: var(--text) !important; }
    .navbar-bw .nav-link { color: #b9dcec; font-weight: 500; margin: 0 8px; border-radius: 40px; padding: 6px 16px; transition: all 0.2s; }
    .navbar-bw .nav-link:hover, .navbar-bw .nav-link.active { background: rgba(6,182,212,0.2); color: #fff; }
    .btn-primary-custom { background: var(--main); border: none; border-radius: 40px; padding: 6px 22px; font-weight: 600; }

    /* 海报卡片 */
    .movie-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--card-bg); transition: all 0.3s ease; box-shadow: 0 10px 20px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.04); }
    .movie-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-glow); border-color: var(--main); }
    .poster-wrapper { position: relative; aspect-ratio: 2/3; background: #221d3a; overflow: hidden; }
    .poster-wrapper img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: opacity 0.5s, transform 0.5s; }
    .movie-card:hover .poster-wrapper img { opacity: 1; transform: scale(1.05); }
    .play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(12,10,26,0.4); opacity: 0; transition: 0.3s; }
    .movie-card:hover .play-overlay { opacity: 1; }
    .play-btn-icon { width: 60px; height: 60px; background: rgba(6,182,212,0.85); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff; backdrop-filter: blur(4px); box-shadow: 0 0 30px var(--main); }
    .movie-info { padding: 12px 12px 14px; }
    .movie-title { font-weight: 800; font-size: 1rem; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .movie-meta { font-size: 0.75rem; color: #94a3b8; display: flex; justify-content: space-between; font-family: 'Courier New', monospace; }
    .rating { color: #facc15; font-weight: 800; font-size: 0.9rem; }
    .badge-type { background: rgba(236,72,153,0.2); color: #fbcfe8; padding: 2px 10px; border-radius: 30px; font-size: 0.7rem; font-weight: 600; }

    /* 区块标题 */
    .section-title { font-weight: 900; font-size: 2rem; letter-spacing: -0.03em; margin-bottom: 1rem; display: flex; align-items: center; }
    .section-title i { color: var(--accent); margin-right: 12px; }
    .chip-capsule { background: rgba(6,182,212,0.15); border-radius: 40px; padding: 4px 16px; font-weight: 600; font-size: 0.8rem; color: #cffafe; border: 1px solid rgba(6,182,212,0.3); }

    /* hero打字机效果 */
    .hero-zone { min-height: 75vh; display: flex; align-items: center; justify-content: center; text-align: center; background-image: url('{随机图片}'); background-size: cover; background-position: center; position: relative; }
    .hero-zone::before { content: ''; position: absolute; inset: 0; background: rgba(12,10,26,0.7); backdrop-filter: blur(4px); }
    .hero-content { position: relative; z-index: 2; max-width: 800px; }
    .typing-title { font-weight: 900; font-size: 4.2rem; line-height: 1.1; letter-spacing: -0.02em; color: white; text-shadow: 0 0 40px rgba(6,182,212,0.5); }
    .typing-cursor { display: inline-block; width: 8px; background: var(--main); animation: blink 0.8s infinite; }
    @keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }

    /* 奖牌 */
    .medal { font-weight: 900; font-size: 1.2rem; width: 32px; display: inline-block; text-align: center; }
    .gold { color: #fbbf24; } .silver { color: #cbd5e1; } .bronze { color: #d97706; }

    /* 时间线（说明） */
    .timeline { border-left: 3px solid var(--main); padding-left: 24px; }
    .timeline-item { position: relative; margin-bottom: 20px; }
    .timeline-item::before { content: ''; width: 14px; height: 14px; background: var(--accent); border-radius: 50%; position: absolute; left: -32px; top: 5px; box-shadow: 0 0 15px var(--accent); }

    /* 模态弹窗 */
    .modal-mask { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(6px); display: none; z-index: 4000; align-items: center; justify-content: center; }
    .modal-card { background: #1c1730; border-radius: var(--radius-lg); max-width: 750px; width: 90%; display: flex; flex-wrap: wrap; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.8); }
    .modal-card img { width: 100%; max-width: 250px; min-height: 300px; object-fit: cover; }
    .modal-content { flex: 1; padding: 28px; min-width: 260px; }
    .modal-close { position: absolute; top: 16px; right: 16px; font-size: 28px; cursor: pointer; color: #aaa; transition: 0.2s; }
    .modal-close:hover { color: #fff; }

    /* 今天看什么 widget */
    .random-pick { background: linear-gradient(145deg, #16122c, #0f0b1f); border: 1px solid rgba(6,182,212,0.3); border-radius: var(--radius-lg); padding: 30px; }
    .btn-dice { background: var(--accent); border: none; border-radius: 50px; padding: 10px 30px; font-weight: 700; transition: 0.2s; }
    .btn-dice:hover { transform: scale(1.05); background: #db2777; }

    footer { border-top: 1px solid rgba(255,255,255,0.05); background: #0a0817; }
    footer a { color: var(--main); text-decoration: none; }
    .friend-links a { color: #7dd3fc; margin-right: 18px; }

    /* 图片渐显占位 */
    .poster-wrapper img { background: linear-gradient(110deg, #2a2340 8%, #3a2d55 18%, #2a2340 33%); background-size: 200% 100%; animation: shimmer 1.8s infinite; }
    @keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
    .poster-wrapper img.loaded { animation: none; }

    .nav-tabs-bw .nav-link { background: transparent; border: none; color: #aaa; font-weight: 600; padding: 8px 18px; border-radius: 40px; }
    .nav-tabs-bw .nav-link.active { background: var(--main); color: #0c0a1a; }

    /* 大圆角 */
    .rounded-4 { border-radius: var(--radius-lg) !important; }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
        .guide-hero {
            background: linear-gradient(135deg, rgba(6,182,212,0.15) 0%, rgba(236,72,153,0.08) 100%);
            border: 1px solid rgba(6,182,212,0.15);
        }
.guide-step-card {
            background: var(--card-bg);
            border: 1px solid rgba(6,182,212,0.12);
            border-radius: var(--radius-md);
            padding: 28px 24px;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
        }
.guide-step-card:hover {
            border-color: rgba(6,182,212,0.4);
            box-shadow: var(--shadow-glow);
            transform: translateY(-4px);
        }
.guide-step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--main), var(--accent));
            color: #fff;
            font-weight: 800;
            font-size: 1.15rem;
            border-radius: 14px;
            margin-bottom: 16px;
            box-shadow: 0 8px 20px rgba(6,182,212,0.25);
        }
.guide-tip-box {
            background: rgba(6,182,212,0.08);
            border-left: 4px solid var(--main);
            padding: 20px 24px;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            margin-bottom: 20px;
        }
.guide-tip-box .tip-title {
            color: var(--main);
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 6px;
        }
.guide-tip-box p {
            margin: 0;
            color: var(--text);
            opacity: 0.85;
            font-size: 0.95rem;
            line-height: 1.7;
        }
.guide-badge {
            display: inline-block;
            background: rgba(236,72,153,0.15);
            color: var(--accent);
            border: 1px solid rgba(236,72,153,0.3);
            font-size: 0.78rem;
            font-weight: 600;
            padding: 3px 12px;
            border-radius: 30px;
            margin-bottom: 12px;
        }
.guide-table-wrap {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            padding: 20px;
            border: 1px solid rgba(6,182,212,0.1);
        }
.guide-table-wrap table {
            width: 100%;
            color: var(--text);
            border-collapse: separate;
            border-spacing: 0 8px;
        }
.guide-table-wrap table th {
            color: var(--main);
            font-weight: 600;
            font-size: 0.9rem;
            padding: 8px 16px;
            border-bottom: 1px solid rgba(6,182,212,0.2);
        }
.guide-table-wrap table td {
            padding: 10px 16px;
            font-size: 0.92rem;
            opacity: 0.9;
            border-bottom: 1px solid rgba(6,182,212,0.05);
        }
.guide-table-wrap table tr:hover td {
            background: rgba(6,182,212,0.04);
            border-radius: 10px;
        }
.faq-item {
            background: var(--card-bg);
            border: 1px solid rgba(6,182,212,0.1);
            border-radius: var(--radius-md);
            padding: 24px 28px;
            margin-bottom: 16px;
            transition: all 0.3s;
        }
.faq-item:hover {
            border-color: rgba(236,72,153,0.3);
        }
.faq-item h4 {
            color: var(--accent);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.faq-item h4 i {
            font-size: 0.9rem;
            color: var(--main);
        }
.faq-item p {
            color: var(--text);
            opacity: 0.8;
            font-size: 0.95rem;
            line-height: 1.8;
            margin: 0;
            padding-left: 26px;
        }
.section-badge {
            display: inline-block;
            background: rgba(6,182,212,0.12);
            color: var(--main);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 6px 18px;
            border-radius: 30px;
            margin-bottom: 16px;
            border: 1px solid rgba(6,182,212,0.2);
        }
.faq-item { padding: 20px; }
.faq-item p { padding-left: 0; }

/* --- 子页面追加 --- */
/* 本页专属样式 */
    .disclaimer-hero {
      padding: 120px 0 60px;
      position: relative;
      overflow: hidden;
    }
.disclaimer-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(6,182,212,.15) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
.disclaimer-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }
.disclaimer-card {
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      padding: 40px 50px;
      margin-bottom: 30px;
      box-shadow: var(--shadow-glow);
      border: 1px solid rgba(6,182,212,.15);
      position: relative;
      overflow: hidden;
    }
.disclaimer-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--main), var(--accent));
      border-radius: 4px;
    }
.disclaimer-card h2 {
      color: var(--main);
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
.disclaimer-card h2 i {
      color: var(--accent);
      font-size: 1.3rem;
    }
.disclaimer-card p {
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 16px;
      font-size: 0.95rem;
      opacity: .9;
    }
.disclaimer-card ul {
      color: var(--text);
      padding-left: 20px;
      margin-bottom: 16px;
    }
.disclaimer-card ul li {
      margin-bottom: 8px;
      line-height: 1.7;
      font-size: 0.95rem;
      opacity: .9;
    }
.disclaimer-card ul li strong {
      color: var(--main);
      font-weight: 600;
    }
.highlight-box {
      background: rgba(6,182,212,.08);
      border: 1px solid rgba(6,182,212,.2);
      border-radius: var(--radius-md);
      padding: 20px 24px;
      margin: 20px 0;
    }
.highlight-box p {
      margin-bottom: 0;
      color: var(--text);
      font-size: 0.95rem;
      line-height: 1.8;
    }
.highlight-box p i {
      color: var(--accent);
      margin-right: 8px;
    }
.update-date {
      display: inline-block;
      background: rgba(236,72,153,.15);
      color: var(--accent);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 500;
      margin-top: 16px;
      border: 1px solid rgba(236,72,153,.25);
    }
.disclaimer-hero { padding: 100px 0 40px; }
.disclaimer-card { padding: 30px 24px; }
.disclaimer-card h2 { font-size: 1.3rem; }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .privacy-hero {
            padding: 120px 0 60px;
            background: linear-gradient(135deg, rgba(6,182,212,0.08) 0%, rgba(236,72,153,0.06) 50%, rgba(12,10,26,0) 100%);
            position: relative;
            overflow: hidden;
        }
.privacy-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
.privacy-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
.privacy-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }
.privacy-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(6,182,212,0.12);
            border: 1px solid rgba(6,182,212,0.3);
            color: var(--main);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }
.privacy-header h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
            line-height: 1.2;
        }
.privacy-header h1 span {
            background: linear-gradient(135deg, var(--main), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.privacy-header p {
            color: rgba(224,242,254,0.7);
            font-size: 1.1rem;
            max-width: 650px;
            margin: 0 auto;
        }
.privacy-section {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 35px 40px;
            margin-bottom: 30px;
            border: 1px solid rgba(255,255,255,0.05);
            box-shadow: var(--shadow-glow);
            position: relative;
            overflow: hidden;
        }
.privacy-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--main), var(--accent));
            opacity: 0.6;
        }
.privacy-section .section-icon {
            width: 48px;
            height: 48px;
            background: rgba(6,182,212,0.12);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--main);
            margin-bottom: 20px;
        }
.privacy-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 18px;
            line-height: 1.3;
        }
.privacy-section h2 .highlight {
            color: var(--main);
        }
.privacy-section p {
            color: rgba(224,242,254,0.75);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 16px;
        }
.privacy-section p:last-child {
            margin-bottom: 0;
        }
.privacy-list {
            list-style: none;
            padding: 0;
            margin: 15px 0;
        }
.privacy-list li {
            padding: 12px 0;
            padding-left: 32px;
            position: relative;
            color: rgba(224,242,254,0.8);
            font-size: 0.95rem;
            line-height: 1.7;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }
.privacy-list li:last-child {
            border-bottom: none;
        }
.privacy-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 14px;
            color: var(--main);
            font-size: 0.9rem;
        }
.privacy-highlight-box {
            background: rgba(6,182,212,0.06);
            border-left: 3px solid var(--main);
            padding: 20px 24px;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            margin: 20px 0;
        }
.privacy-highlight-box p {
            margin-bottom: 0;
            font-size: 0.92rem;
            color: rgba(224,242,254,0.85);
        }
.privacy-highlight-box strong {
            color: var(--main);
        }
.privacy-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
.privacy-table th {
            background: rgba(6,182,212,0.1);
            color: var(--text);
            font-weight: 600;
            padding: 14px 18px;
            text-align: left;
            font-size: 0.9rem;
            border-bottom: 2px solid rgba(6,182,212,0.3);
        }
.privacy-table td {
            padding: 14px 18px;
            color: rgba(224,242,254,0.75);
            font-size: 0.88rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            line-height: 1.6;
        }
.privacy-table tr:last-child td {
            border-bottom: none;
        }
.privacy-table td strong {
            color: var(--text);
        }
.privacy-contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin-top: 20px;
        }
.privacy-contact-item {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius-md);
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
.privacy-contact-item:hover {
            border-color: rgba(6,182,212,0.3);
            transform: translateY(-3px);
        }
.privacy-contact-item i {
            font-size: 1.5rem;
            color: var(--main);
            margin-bottom: 12px;
        }
.privacy-contact-item h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
        }
.privacy-contact-item p {
            font-size: 0.82rem;
            color: rgba(224,242,254,0.6);
            margin-bottom: 0;
            line-height: 1.5;
        }
.privacy-update-date {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(236,72,153,0.1);
            color: var(--accent);
            border: 1px solid rgba(236,72,153,0.2);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 500;
            margin-top: 20px;
        }
.privacy-update-date i {
            font-size: 0.75rem;
        }
.back-home-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--text);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 12px 24px;
            background: rgba(6,182,212,0.1);
            border: 1px solid rgba(6,182,212,0.25);
            border-radius: 50px;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
.back-home-link:hover {
            background: rgba(6,182,212,0.2);
            border-color: rgba(6,182,212,0.5);
            color: var(--text);
            transform: translateX(-3px);
        }
.privacy-hero {
                padding: 100px 0 40px;
            }
.privacy-header h1 {
                font-size: 2rem;
            }
.privacy-section {
                padding: 28px 24px;
            }
.privacy-section h2 {
                font-size: 1.2rem;
            }
.privacy-table {
                display: block;
                overflow-x: auto;
            }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.card { background:rgba(255,255,255,.04) !important; color:#e0f2fe !important; border-color:rgba(255,255,255,.12) !important; }
