:root {
  --ww-primary: #06b6d4;
  --ww-accent: #ec4899;
  --ww-bg: #0c0a1a;
  --ww-text: #e0f2fe;
  --ww-card-bg: rgba(14, 16, 30, 0.8);
  --ww-border: rgba(6, 182, 212, 0.25);
  --ww-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --ww-radius: 1.25rem;
}
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--ww-bg); color: var(--ww-text); line-height: 1.7; overflow-x: hidden; }
a { color: var(--ww-primary); text-decoration: none; }
a:hover { color: var(--ww-accent); }
.container-custom { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

/* 导航 */
.navbar-wow { background: rgba(12, 10, 26, 0.9); backdrop-filter: blur(16px); padding: 1rem 0; border-bottom: 1px solid rgba(6, 182, 212, 0.2); position: sticky; top: 0; z-index: 1000; }
.navbar-brand { font-size: 1.8rem; font-weight: 900; letter-spacing: -0.5px; color: #fff; }
.navbar-brand i { color: var(--ww-primary); margin-right: 0.5rem; }
.navbar-brand span { color: var(--ww-accent); }
.nav-link { color: var(--ww-text); font-weight: 500; padding: 0.5rem 1rem; border-radius: 2rem; transition: all 0.3s; }
.nav-link:hover { color: #fff; background: rgba(6, 182, 212, 0.15); }
.navbar-toggler { border-color: var(--ww-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%28224, 242, 254, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* Hero 关键词云 */
.hero-cloud { padding: 4rem 0 2rem; text-align: center; position: relative; }
.hero-cloud h1 { font-size: 3.5rem; font-weight: 900; letter-spacing: -1px; margin-bottom: 0.5rem; background: linear-gradient(135deg, var(--ww-primary), var(--ww-accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-cloud p { font-size: 1.25rem; color: rgba(224, 242, 254, 0.7); margin-bottom: 2rem; }
.tag-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; padding: 0 1rem; }
.tag-item { padding: 0.5rem 1.25rem; border-radius: 2rem; font-size: 0.9rem; font-weight: 600; background: rgba(6, 182, 212, 0.1); border: 1px solid var(--ww-border); color: var(--ww-text); transition: all 0.3s; }
.tag-item:hover { background: var(--ww-primary); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3); }
.tag-item:nth-child(even) { background: rgba(236, 72, 153, 0.1); border-color: rgba(236, 72, 153, 0.3); }
.tag-item:nth-child(even):hover { background: var(--ww-accent); }

/* 轮播 */
.hero-banner { padding: 2rem 0; }
.carousel-item { border-radius: 2rem; overflow: hidden; position: relative; height: 480px; }
.carousel-item img { width: 100%; height: 100%; object-fit: cover; }
.carousel-caption { position: absolute; bottom: 2rem; left: 2rem; right: 2rem; text-align: left; background: rgba(12, 10, 26, 0.7); backdrop-filter: blur(8px); padding: 1.5rem 2rem; border-radius: 1.5rem; border-left: 4px solid var(--ww-primary); }
.carousel-caption h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.carousel-caption p { font-size: 1rem; opacity: 0.8; }
.carousel-indicators [data-bs-target] { width: 12px; height: 12px; border-radius: 50%; background: var(--ww-primary); }

/* 区块通用 */
.section-title { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.section-title h2 { font-size: 2rem; font-weight: 800; margin: 0; }
.section-title i { font-size: 1.8rem; color: var(--ww-accent); }
.section-title .line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--ww-primary), transparent); }

/* 海报网格 */
.movie-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
.movie-card { position: relative; background: var(--ww-card-bg); border-radius: var(--ww-radius); overflow: hidden; cursor: pointer; transition: all 0.4s ease; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.movie-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--ww-shadow); border-color: var(--ww-primary); }
.movie-card .poster-wrap { position: relative; overflow: hidden; aspect-ratio: 2/3; }
.movie-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.movie-card:hover img { transform: scale(1.05); }
.badge-quality { position: absolute; top: 0.75rem; right: 0.75rem; background: rgba(236, 72, 153, 0.9); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 2rem; }
.badge-rate { position: absolute; top: 0.75rem; left: 0.75rem; background: rgba(6, 182, 212, 0.9); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 2rem; }
.movie-info { padding: 1rem; }
.movie-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.movie-info p { font-size: 0.85rem; color: rgba(224, 242, 254, 0.7); margin-bottom: 0.25rem; }
.movie-info .meta { font-size: 0.8rem; display: flex; gap: 0.5rem; color: rgba(224, 242, 254, 0.5); }

/* 翻转卡片 */
.flip-card { perspective: 1000px; }
.flip-card-inner { position: relative; width: 100%; height: 100%; transition: transform 0.8s; transform-style: preserve-3d; }
.flip-card.flipped .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front, .flip-card-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: var(--ww-radius); overflow: hidden; }
.flip-card-back { transform: rotateY(180deg); background: linear-gradient(135deg, rgba(6,182,212,0.2), rgba(236,72,153,0.2)); backdrop-filter: blur(12px); display: flex; flex-direction: column; justify-content: center; padding: 1.25rem; }
.flip-card-back h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.flip-card-back .detail-row { font-size: 0.85rem; margin-bottom: 0.5rem; }
.flip-card-back .detail-row strong { color: var(--ww-primary); }
.close-detail { position: absolute; top: 0.75rem; right: 0.75rem; background: rgba(0,0,0,0.5); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; }

/* 对比表格 */
.compare-table { background: var(--ww-card-bg); border-radius: var(--ww-radius); overflow: hidden; margin: 2rem 0; }
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 1rem 1.5rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); }
.compare-table th { background: rgba(6, 182, 212, 0.15); font-weight: 700; }
.compare-table tr:hover td { background: rgba(6, 182, 212, 0.05); }

/* 编号清单 */
.numbered-list { counter-reset: item; list-style: none; padding: 0; }
.numbered-list li { counter-increment: item; position: relative; padding: 0.75rem 0 0.75rem 3rem; margin-bottom: 0.5rem; background: var(--ww-card-bg); border-radius: 1rem; border-left: 3px solid var(--ww-primary); }
.numbered-list li::before { content: counter(item); position: absolute; left: 1rem; top: 0.75rem; width: 1.5rem; height: 1.5rem; background: var(--ww-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; }

/* 榜单 */
.rank-list { list-style: none; padding: 0; }
.rank-list li { display: flex; align-items: center; padding: 1rem 1.5rem; background: var(--ww-card-bg); border-radius: 1rem; margin-bottom: 0.75rem; transition: all 0.3s; border-left: 4px solid transparent; }
.rank-list li:hover { background: rgba(6, 182, 212, 0.1); border-left-color: var(--ww-primary); transform: translateX(8px); }
.rank-num { font-size: 1.5rem; font-weight: 900; color: var(--ww-accent); width: 3rem; text-align: center; margin-right: 1rem; }
.rank-info { flex: 1; }
.rank-info h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.rank-info p { font-size: 0.85rem; color: rgba(224, 242, 254, 0.7); margin: 0; }
.rank-score { color: #ffd700; font-weight: 700; }

/* 页脚 */
.footer-wow { background: rgba(12, 10, 26, 0.95); border-top: 1px solid rgba(6, 182, 212, 0.2); padding: 4rem 0 2rem; margin-top: 4rem; }
.footer-brand { font-size: 2rem; font-weight: 900; }
.footer-links a { display: block; padding: 0.25rem 0; color: rgba(224, 242, 254, 0.7); }
.footer-links a:hover { color: var(--ww-primary); }
.friend-links { background: rgba(255,255,255,0.03); padding: 1.5rem; border-radius: 1rem; margin-top: 2rem; }
.friend-links h5 { margin-bottom: 1rem; color: var(--ww-primary); }

/* 冷知识 */
.tips-box { background: rgba(236, 72, 153, 0.08); border: 1px solid rgba(236, 72, 153, 0.3); border-radius: 1.5rem; padding: 2rem; margin-top: 3rem; }

/* 滚动渐显 */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* 响应式 */
@media (max-width: 768px) {
  .hero-cloud h1 { font-size: 2.5rem; }
  .carousel-item { height: 320px; }
  .movie-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
  .movie-info h3 { font-size: 0.9rem; }
  .section-title h2 { font-size: 1.5rem; }
}

/* --- 子页面追加 --- */
/* 关于页专用细节微调，不影响全局 */
        .about-hero {
            background: linear-gradient(135deg, rgba(6,182,212,0.12) 0%, rgba(236,72,153,0.08) 100%);
            border: 1px solid var(--ww-border);
            border-radius: var(--ww-radius);
            padding: 2.5rem 2rem;
            box-shadow: var(--ww-shadow);
        }
.about-highlight {
            border-left: 4px solid var(--ww-primary);
            padding-left: 1rem;
            margin: 1.5rem 0;
            background: rgba(6,182,212,0.05);
            border-radius: 0 0.5rem 0.5rem 0;
        }
.brand-marker {
            color: var(--ww-accent);
            font-weight: 600;
        }
.section-title.about-section-title {
            font-size: 1.9rem;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
.section-title.about-section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--ww-accent);
            margin-top: 0.5rem;
            border-radius: 3px;
        }
.icon-badge {
            color: var(--ww-primary);
            font-size: 1.8rem;
            margin-right: 0.75rem;
        }
.feature-box {
            background: var(--ww-card-bg);
            border: 1px solid var(--ww-border);
            border-radius: var(--ww-radius);
            padding: 1.5rem 1.25rem;
            height: 100%;
            transition: transform 0.2s ease, border-color 0.2s;
        }
.feature-box:hover {
            transform: translateY(-4px);
            border-color: var(--ww-primary);
        }
.stats-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--ww-primary);
        }
/* 覆盖bootstrap默认白底卡片 (以防万一) */
        .feature-box, .about-hero, .about-highlight {
            background-color: var(--ww-card-bg);
            color: var(--ww-text);
        }
.feature-box, .about-hero {
            border-color: var(--ww-border);
        }
/* 任何潜在bootstrap卡片背景强制覆盖 */
        .card, .card-body, .list-group-item {
            background: var(--ww-card-bg) !important;
            color: var(--ww-text) !important;
            border-color: var(--ww-border) !important;
        }
/* 字体继承 */
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

/* --- 子页面追加 --- */
/* 本页专属微调，仅补充色彩变量与极少量布局，不覆盖主样式 */
    .disclaimer-hero { padding: 2.5rem 0 0.5rem; }
.legal-card { background: var(--ww-card-bg); border: 1px solid var(--ww-border); border-radius: var(--ww-radius); padding: 1.8rem 1.8rem; margin-bottom: 1.8rem; backdrop-filter: blur(6px); box-shadow: var(--ww-shadow); }
.legal-card h2 { color: var(--ww-primary); font-weight: 700; font-size: 1.5rem; margin-bottom: 1.2rem; border-left: 4px solid var(--ww-accent); padding-left: 0.8rem; }
.legal-card h3 { color: var(--ww-text); font-weight: 600; font-size: 1.2rem; margin-top: 1.5rem; margin-bottom: 0.6rem; }
.legal-card p, .legal-card li { color: rgba(224, 242, 254, 0.85); line-height: 1.7; font-size: 0.95rem; }
.legal-card ul { padding-left: 1.2rem; }
.legal-card a { color: var(--ww-primary); text-decoration: underline; text-underline-offset: 3px; }
.legal-card a:hover { color: var(--ww-accent); }
.highlight-note { background: rgba(236, 72, 153, 0.1); border-left: 3px solid var(--ww-accent); padding: 0.8rem 1.2rem; border-radius: 0.6rem; margin: 1.5rem 0; }
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--ww-border), transparent); margin: 2rem 0; }
.badge-legal { background: rgba(6, 182, 212, 0.15); color: var(--ww-primary); padding: 0.2rem 0.8rem; border-radius: 20px; font-size: 0.8rem; font-weight: 500; border: 1px solid var(--ww-border); }

/* --- 子页面追加 --- */
/* 本页专属小样式 */
        .contact-hero { padding: 3rem 0 1rem; }
.contact-card { background: var(--ww-card-bg); border: 1px solid var(--ww-border); border-radius: var(--ww-radius); padding: 2rem; box-shadow: var(--ww-shadow); margin-bottom: 2rem; transition: transform .3s ease, border-color .3s; }
.contact-card:hover { border-color: var(--ww-primary); transform: translateY(-4px); }
.contact-card .icon-box { width: 56px; height: 56px; border-radius: 16px; background: rgba(6,182,212,.15); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--ww-primary); margin-bottom: 1rem; }
.contact-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--ww-text); margin-bottom: .75rem; }
.contact-card p, .contact-card a { color: rgba(224,242,254,.8); font-size: .95rem; line-height: 1.7; }
.contact-card a:hover { color: var(--ww-primary); }
.contact-form-wrap { background: var(--ww-card-bg); border: 1px solid var(--ww-border); border-radius: var(--ww-radius); padding: 2rem; box-shadow: var(--ww-shadow); }
.contact-form-wrap .form-label { color: var(--ww-text); font-weight: 600; }
.contact-form-wrap .form-control { background: rgba(0,0,0,.35); border: 1px solid var(--ww-border); color: var(--ww-text); border-radius: .75rem; padding: .75rem 1rem; }
.contact-form-wrap .form-control:focus { border-color: var(--ww-primary); box-shadow: 0 0 0 .2rem rgba(6,182,212,.15); background: rgba(0,0,0,.45); }
.contact-form-wrap .form-control::placeholder { color: rgba(224,242,254,.4); }
.contact-form-wrap textarea.form-control { min-height: 140px; resize: vertical; }
.btn-send { background: linear-gradient(135deg, var(--ww-primary), var(--ww-accent)); border: none; color: #fff; font-weight: 600; padding: .75rem 2rem; border-radius: 2rem; transition: opacity .3s, transform .3s; }
.btn-send:hover { opacity: .9; transform: translateY(-2px); }
.faq-item { background: var(--ww-card-bg); border: 1px solid var(--ww-border); border-radius: 1rem; padding: 1.25rem 1.5rem; margin-bottom: 1rem; }
.faq-item h4 { color: var(--ww-primary); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.faq-item p { color: rgba(224,242,254,.75); font-size: .9rem; margin: 0; }

/* --- 子页面追加 --- */
.privacy-wrap {
            padding: 60px 0 80px;
        }
.privacy-hero {
            background: linear-gradient(135deg, rgba(6,182,212,0.12) 0%, rgba(236,72,153,0.12) 100%);
            border: 1px solid var(--ww-border);
            border-radius: var(--ww-radius);
            padding: 40px;
            margin-bottom: 40px;
            text-align: center;
        }
.privacy-hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--ww-text);
            margin-bottom: 12px;
        }
.privacy-hero h1 i {
            color: var(--ww-primary);
            margin-right: 10px;
        }
.privacy-hero p {
            color: rgba(224, 242, 254, 0.7);
            font-size: 1.05rem;
            max-width: 700px;
            margin: 0 auto;
        }
.privacy-section {
            background: var(--ww-card-bg);
            border: 1px solid var(--ww-border);
            border-radius: var(--ww-radius);
            padding: 30px 35px;
            margin-bottom: 30px;
            box-shadow: var(--ww-shadow);
        }
.privacy-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--ww-primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.privacy-section h2 i {
            font-size: 1.3rem;
        }
.privacy-section h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--ww-text);
            margin: 18px 0 10px;
        }
.privacy-section p {
            color: rgba(224, 242, 254, 0.8);
            line-height: 1.8;
            margin-bottom: 14px;
        }
.privacy-section ul, .privacy-section ol {
            color: rgba(224, 242, 254, 0.8);
            line-height: 1.8;
            margin-bottom: 14px;
            padding-left: 20px;
        }
.privacy-section li {
            margin-bottom: 6px;
        }
.privacy-section .highlight-box {
            background: rgba(6, 182, 212, 0.08);
            border-left: 4px solid var(--ww-primary);
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
.privacy-section .highlight-box p {
            margin-bottom: 0;
        }
.privacy-updated {
            text-align: center;
            color: rgba(224, 242, 254, 0.5);
            font-size: 0.9rem;
            margin-top: 40px;
        }
.privacy-hero {
                padding: 30px 20px;
            }
.privacy-hero h1 {
                font-size: 1.6rem;
            }
.privacy-section {
                padding: 20px;
            }

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