:root{
  --primary: #e50914;
  --accent: #f5c518;
  --bg: #0b0b0f;
  --text: #f5f5f7;
  --card-bg: #14141a;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
}
*{margin:0;padding:0;box-sizing:border-box;font-family:'Inter',sans-serif;}
body{background:var(--bg);color:var(--text);overflow-x:hidden;}
a{text-decoration:none;color:inherit;}

/* 滚动进度条 */
#scroll-progress{
  position:fixed;top:0;left:0;height:3px;background:linear-gradient(90deg,var(--primary),var(--accent));
  z-index:9999;width:0%;transition:width 0.1s;
}

/* 导航 */
.navbar{
  background:rgba(11,11,15,0.85);backdrop-filter:blur(20px);border-bottom:1px solid rgba(255,255,255,0.05);
  padding:12px 0;position:sticky;top:0;z-index:1000;
}
.navbar-brand{font-size:1.5rem;font-weight:900;letter-spacing:-0.5px;display:flex;align-items:center;gap:8px;}
.navbar-brand .brand-icon{color:var(--accent);}
.navbar-brand .brand-text{color:var(--text);}
.navbar-brand .brand-text span{color:var(--primary);}
.navbar-nav .nav-link{
  color:rgba(255,255,255,0.75);font-weight:500;margin:0 8px;padding:8px 12px;border-radius:var(--radius-md);
  transition:all 0.3s;font-size:0.95rem;
}
.navbar-nav .nav-link:hover{color:var(--accent);background:rgba(255,255,255,0.05);}
.navbar-toggler{border-color:rgba(255,255,255,0.2);}
.navbar-toggler:focus{box-shadow:none;}

/* Hero 关键词云 */
.hero{
  padding:60px 0 30px;text-align:center;position:relative;overflow:hidden;
}
.hero h1{
  font-size:3.2rem;font-weight:900;letter-spacing:-1px;margin-bottom:16px;
}
.hero h1 .gradient-text{
  background:linear-gradient(135deg,var(--accent),var(--primary));-webkit-background-clip:text;-webkit-text-fill-color:transparent;
}
.hero p.sub{color:rgba(255,255,255,0.6);font-size:1.1rem;max-width:600px;margin:0 auto 30px;}
.keyword-cloud{
  display:flex;flex-wrap:wrap;justify-content:center;gap:12px;padding:0 20px;max-width:900px;margin:0 auto;
}
.keyword-cloud .tag{
  padding:8px 20px;background:var(--card-bg);border:1px solid rgba(255,255,255,0.08);border-radius:50px;
  font-size:0.9rem;color:rgba(255,255,255,0.8);transition:all 0.3s;cursor:pointer;
}
.keyword-cloud .tag:hover{border-color:var(--accent);color:var(--accent);transform:translateY(-2px);box-shadow:0 4px 20px rgba(245,197,24,0.15);}
.keyword-cloud .tag.hot{color:var(--accent);border-color:rgba(245,197,24,0.4);}

/* 通用区块 */
.section{padding:50px 0;}
.section-header{
  display:flex;align-items:center;justify-content:space-between;margin-bottom:30px;
}
.section-title{
  font-size:1.8rem;font-weight:900;letter-spacing:-0.5px;position:relative;display:inline-block;
}
.section-title::after{
  content:'';position:absolute;bottom:-6px;left:0;width:40px;height:4px;background:var(--primary);border-radius:4px;
}
.section-title .accent{color:var(--accent);}
.see-more{color:rgba(255,255,255,0.6);font-size:0.9rem;transition:color 0.3s;display:flex;align-items:center;gap:6px;}
.see-more:hover{color:var(--accent);}

/* 榜单区 */
.rank-section{
  background:linear-gradient(180deg,transparent,rgba(229,9,20,0.03),transparent);
}
.rank-card{
  background:var(--card-bg);border-radius:var(--radius-lg);padding:20px;margin-bottom:16px;display:flex;align-items:center;gap:16px;
  transition:transform 0.3s,box-shadow 0.3s;border:1px solid transparent;
}
.rank-card:hover{transform:translateY(-2px);box-shadow:var(--shadow);border-color:rgba(245,197,24,0.2);}
.rank-num{
  font-family:'Courier New',monospace;font-size:2rem;font-weight:900;color:rgba(255,255,255,0.15);min-width:50px;text-align:center;
}
.rank-num.top{color:var(--accent);}
.rank-info{flex:1;}
.rank-info h5{font-weight:700;margin-bottom:4px;}
.rank-info p{color:rgba(255,255,255,0.6);font-size:0.85rem;margin:0;}
.rank-score{
  background:var(--accent);color:#0b0b0f;font-weight:800;padding:6px 12px;border-radius:12px;font-family:'Courier New',monospace;font-size:0.9rem;
}

/* 海报卡片 */
.movie-card{
  position:relative;border-radius:var(--radius-lg);overflow:hidden;background:var(--card-bg);border:1px solid rgba(255,255,255,0.05);
  transition:transform 0.4s ease,box-shadow 0.4s ease,border-color 0.4s;cursor:pointer;height:100%;
}
.movie-card:hover{
  transform:scale(1.02);box-shadow:0 12px 40px rgba(0,0,0,0.5);border-color:rgba(245,197,24,0.4);
}
.movie-poster{position:relative;aspect-ratio:2/3;overflow:hidden;}
.movie-poster img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s;}
.movie-card:hover .movie-poster img{transform:scale(1.05);}
.movie-overlay{
  position:absolute;bottom:0;left:0;right:0;height:60%;background:linear-gradient(transparent,rgba(0,0,0,0.95));display:flex;flex-direction:column;justify-content:flex-end;padding:16px;
}
.movie-overlay .play-btn{
  width:44px;height:44px;border-radius:50%;background:rgba(229,9,20,0.9);display:flex;align-items:center;justify-content:center;margin-bottom:10px;
  opacity:0;transform:translateY(10px);transition:all 0.3s;
}
.movie-card:hover .play-btn{opacity:1;transform:translateY(0);}
.movie-overlay h6{font-weight:700;font-size:0.95rem;margin-bottom:4px;}
.movie-overlay .meta{font-size:0.75rem;color:rgba(255,255,255,0.7);display:flex;gap:8px;flex-wrap:wrap;}
.movie-overlay .rating{color:var(--accent);font-weight:700;}

/* 分类筛选 */
.filter-section .filter-tabs{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:30px;}
.filter-tab{
  padding:8px 24px;border-radius:50px;background:var(--card-bg);border:1px solid rgba(255,255,255,0.08);cursor:pointer;
  transition:all 0.3s;font-size:0.9rem;font-weight:500;
}
.filter-tab.active,.filter-tab:hover{background:var(--primary);border-color:var(--primary);color:#fff;}

/* 步骤条 */
.steps-container{display:flex;gap:20px;flex-wrap:wrap;}
.step-card{
  flex:1;min-width:220px;background:var(--card-bg);border-radius:var(--radius-lg);padding:30px;position:relative;overflow:hidden;
  border:1px solid rgba(255,255,255,0.05);transition:transform 0.3s;
}
.step-card:hover{transform:translateY(-4px);}
.step-num{
  width:48px;height:48px;border-radius:14px;background:linear-gradient(135deg,var(--primary),var(--accent));
  display:flex;align-items:center;justify-content:center;font-weight:900;font-size:1.4rem;margin-bottom:20px;color:#fff;
}
.step-card h6{font-weight:700;font-size:1.1rem;margin-bottom:10px;}
.step-card p{color:rgba(255,255,255,0.65);font-size:0.9rem;line-height:1.7;margin:0;}

/* 心情选片 */
.mood-tags{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:24px;}
.mood-tag{
  padding:10px 24px;border-radius:50px;background:var(--card-bg);border:1px solid rgba(255,255,255,0.08);cursor:pointer;
  transition:all 0.3s;font-weight:600;
}
.mood-tag:hover,.mood-tag.active{border-color:var(--accent);color:var(--accent);box-shadow:0 4px 20px rgba(245,197,24,0.1);}
.mood-grid{display:none;}
.mood-grid.active{display:block;}

/* 片单盘点 */
.list-item{
  display:flex;gap:16px;background:var(--card-bg);border-radius:var(--radius-md);padding:16px;margin-bottom:12px;border:1px solid rgba(255,255,255,0.03);
  transition:background 0.3s;
}
.list-item:hover{background:rgba(255,255,255,0.03);}
.list-item .num{font-family:'Courier New',monospace;font-size:1.4rem;font-weight:900;color:var(--accent);min-width:36px;}
.list-item .content h6{font-weight:700;margin-bottom:4px;}
.list-item .content p{color:rgba(255,255,255,0.65);font-size:0.9rem;margin:0;line-height:1.6;}

/* 友情链接 */
.friend-links{
  background:var(--card-bg);border-radius:var(--radius-lg);padding:30px;margin:40px 0;border:1px solid rgba(255,255,255,0.05);
}
.friend-links h5{font-weight:700;margin-bottom:16px;display:flex;align-items:center;gap:10px;}
.friend-links .links{display:flex;flex-wrap:wrap;gap:10px;}

/* 页脚 */
.footer{
  background:rgba(0,0,0,0.4);border-top:1px solid rgba(255,255,255,0.05);padding:30px 0;margin-top:60px;
}
.footer .footer-inner{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px;}
.footer .copyright{color:rgba(255,255,255,0.5);font-size:0.9rem;}
.footer .footer-links{display:flex;gap:20px;flex-wrap:wrap;}
.footer .footer-links a{color:rgba(255,255,255,0.6);font-size:0.9rem;transition:color 0.3s;}
.footer .footer-links a:hover{color:var(--accent);}

/* 弹窗 */
.movie-modal{
  position:fixed;top:0;left:0;right:0;bottom:0;z-index:10000;display:none;align-items:center;justify-content:center;
}
.movie-modal.active{display:flex;}
.modal-backdrop{
  position:absolute;inset:0;background:rgba(0,0,0,0.9);backdrop-filter:blur(20px);
}
.modal-content{
  position:relative;width:90%;max-width:700px;background:rgba(20,20,26,0.95);border-radius:var(--radius-lg);padding:40px;
  border:1px solid rgba(255,255,255,0.1);max-height:85vh;overflow-y:auto;z-index:2;
}
.modal-close{
  position:absolute;top:16px;right:16px;width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,0.1);
  display:flex;align-items:center;justify-content:center;cursor:pointer;border:none;color:#fff;font-size:1.2rem;transition:background 0.3s;z-index:3;
}
.modal-close:hover{background:rgba(255,255,255,0.2);}
.modal-header-info{display:flex;gap:20px;margin-bottom:20px;flex-wrap:wrap;}
.modal-poster{width:120px;height:180px;border-radius:var(--radius-md);overflow:hidden;flex-shrink:0;}
.modal-poster img{width:100%;height:100%;object-fit:cover;}
.modal-title{font-size:2rem;font-weight:900;margin-bottom:8px;}
.modal-meta{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:16px;}
.modal-meta span{background:rgba(255,255,255,0.1);padding:4px 12px;border-radius:8px;font-size:0.8rem;}
.modal-rating{
  display:flex;align-items:center;gap:8px;background:rgba(245,197,24,0.1);padding:8px 16px;border-radius:12px;width:fit-content;margin-bottom:16px;
}
.modal-rating .score{font-size:1.8rem;font-weight:900;color:var(--accent);font-family:'Courier New',monospace;}
.modal-plot{color:rgba(255,255,255,0.8);line-height:1.8;font-size:0.95rem;margin-bottom:16px;}
.modal-actors{color:rgba(255,255,255,0.6);font-size:0.9rem;}

/* 数据滚动 */
.stat-item .num{font-family:'Courier New',monospace;font-size:2.5rem;font-weight:900;color:var(--accent);}
.stat-item .label{color:rgba(255,255,255,0.6);font-size:0.9rem;}

/* 滚动条 */
::-webkit-scrollbar{width:6px;}
::-webkit-scrollbar-track{background:var(--bg);}
::-webkit-scrollbar-thumb{background:rgba(255,255,255,0.15);border-radius:10px;}
::-webkit-scrollbar-thumb:hover{background:rgba(255,255,255,0.3);}

@media (max-width:768px){
  .hero h1{font-size:2.2rem;}
  .section-title{font-size:1.5rem;}
  .modal-content{padding:24px;}
  .modal-header-info{flex-direction:column;}
}

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

/* --- 子页面追加 --- */
/* 关于页专属样式(与首页风格融合) */
        .about-hero { padding: 120px 0 80px; text-align: center; position: relative; }
.about-hero h1 { font-size: 3.2rem; font-weight: 800; margin-bottom: 20px; }
.about-hero h1 span { color: var(--accent); }
.about-hero p { font-size: 1.2rem; color: rgba(245,245,247,.75); max-width: 720px; margin: 0 auto; line-height: 1.8; }
.about-section { padding: 70px 0; }
.about-section:nth-child(even) { background: rgba(255,255,255,.02); }
.about-section h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 30px; color: var(--text); }
.about-section h2 i { color: var(--accent); margin-right: 12px; }
.about-card { background: var(--card-bg); border-radius: var(--radius-md); padding: 30px; height: 100%; border: 1px solid rgba(255,255,255,.06); transition: all .3s ease; }
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(245,197,24,.3); }
.about-card .icon-wrap { width: 52px; height: 52px; border-radius: 12px; background: rgba(229,9,20,.15); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.about-card .icon-wrap i { font-size: 1.4rem; color: var(--accent); }
.about-card h4 { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; }
.about-card p { font-size: .92rem; color: rgba(245,245,247,.7); line-height: 1.7; margin: 0; }
.timeline-item { position: relative; padding-left: 30px; padding-bottom: 36px; border-left: 2px solid rgba(255,255,255,.1); }
.timeline-item::before { content: ''; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }
.timeline-item:last-child { border-left-color: transparent; }
.timeline-item .year { color: var(--accent); font-weight: 700; font-size: 1.1rem; }
.timeline-item .desc { color: rgba(245,245,247,.75); font-size: .95rem; line-height: 1.7; margin-top: 6px; }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #ff6b6b); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.stat-number { font-size: 2.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { font-size: .9rem; color: rgba(245,245,247,.6); margin-top: 8px; }
.quote-block { background: linear-gradient(135deg, rgba(229,9,20,.12), rgba(245,197,24,.08)); border-radius: var(--radius-lg); padding: 40px; border-left: 4px solid var(--accent); }
.quote-block p { font-size: 1.15rem; line-height: 1.9; font-style: italic; color: rgba(245,245,247,.9); margin: 0; }
.about-hero h1 { font-size: 2.2rem; }
.about-section h2 { font-size: 1.7rem; }
.about-hero { padding: 80px 0 50px; }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
        .disclaimer-hero {
            padding: 60px 0 30px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
.disclaimer-section {
            margin-bottom: 40px;
        }
.disclaimer-section h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
            padding-left: 16px;
            border-left: 4px solid var(--primary);
        }
.disclaimer-section h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
            margin: 20px 0 10px;
        }
.disclaimer-section p {
            font-size: 0.95rem;
            line-height: 1.8;
            color: rgba(245,245,247,0.85);
            margin-bottom: 12px;
        }
.disclaimer-section ul {
            padding-left: 20px;
            margin-bottom: 12px;
        }
.disclaimer-section ul li {
            font-size: 0.95rem;
            line-height: 1.8;
            color: rgba(245,245,247,0.85);
            margin-bottom: 6px;
        }
.disclaimer-note {
            background: rgba(229,9,20,0.08);
            border: 1px solid rgba(229,9,20,0.25);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            margin: 24px 0;
        }
.disclaimer-note p {
            color: rgba(245,245,247,0.9);
            margin-bottom: 0;
        }
.update-date {
            display: inline-block;
            background: rgba(245,197,24,0.12);
            color: var(--accent);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-top: 8px;
        }

/* --- 子页面追加 --- */
.privacy-content { max-width: 900px; margin: 0 auto; padding: 60px 20px; }
.privacy-content h1 { color: var(--text); font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; }
.privacy-content h2 { color: var(--accent); font-size: 1.5rem; font-weight: 700; margin-top: 40px; margin-bottom: 15px; border-left: 4px solid var(--primary); padding-left: 15px; }
.privacy-content p { color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 15px; }
.privacy-content ul { color: rgba(255,255,255,0.8); line-height: 1.8; padding-left: 20px; }
.privacy-content li { margin-bottom: 8px; }
.privacy-content .highlight { background: rgba(229,9,20,0.1); border: 1px solid rgba(229,9,20,0.3); padding: 15px; border-radius: 8px; margin: 20px 0; }
.privacy-content .highlight p { color: var(--accent); margin: 0; }
.privacy-meta { background: var(--card-bg); padding: 20px; border-radius: var(--radius-md); margin: 30px 0; border: 1px solid rgba(255,255,255,0.1); }
.privacy-meta p { margin: 5px 0; color: rgba(255,255,255,0.7); }
.privacy-meta span { color: var(--accent); font-weight: 600; }
.contact-email { color: var(--accent); text-decoration: none; border-bottom: 1px dashed var(--accent); }
.contact-email:hover { color: var(--primary); border-bottom-color: var(--primary); }

/* --- 子页面追加 --- */
/* 本页专属小范围样式 */
        .guide-hero {
            background: linear-gradient(135deg, rgba(229, 9, 20, 0.15) 0%, rgba(11, 11, 15, 0.8) 50%, rgba(245, 197, 24, 0.08) 100%);
            border-radius: var(--radius-lg);
            padding: 60px 40px;
            margin: 40px 0 30px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
        }
.guide-hero h1 {
            font-size: 2.6rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text);
        }
.guide-hero h1 span {
            color: var(--accent);
        }
.guide-hero p {
            color: rgba(245, 245, 247, 0.75);
            font-size: 1.05rem;
            max-width: 650px;
            line-height: 1.7;
        }
.guide-section {
            margin-bottom: 50px;
        }
.guide-card {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            padding: 28px 30px;
            height: 100%;
            border: 1px solid rgba(255,255,255,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.guide-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
            border-color: rgba(229, 9, 20, 0.4);
        }
.guide-card .icon-wrap {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 16px;
            background: rgba(229, 9, 20, 0.15);
            color: var(--primary);
        }
.guide-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }
.guide-card p, .guide-card li {
            color: rgba(245, 245, 247, 0.7);
            font-size: 0.95rem;
            line-height: 1.7;
        }
.guide-card ul {
            padding-left: 18px;
            margin-bottom: 0;
        }
.guide-card ul li {
            margin-bottom: 6px;
        }
.steps-wrap {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 40px;
            border: 1px solid rgba(255,255,255,0.05);
            margin-bottom: 30px;
        }
.steps-wrap .step-item {
            display: flex;
            gap: 20px;
            margin-bottom: 28px;
            position: relative;
        }
.steps-wrap .step-item:last-child {
            margin-bottom: 0;
        }
.steps-wrap .step-num {
            width: 40px;
            height: 40px;
            min-width: 40px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            position: relative;
            z-index: 2;
        }
.steps-wrap .step-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 19px;
            top: 45px;
            bottom: -20px;
            width: 2px;
            background: rgba(255,255,255,0.08);
        }
.steps-wrap .step-content {
            padding-bottom: 10px;
        }
.steps-wrap .step-content h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }
.steps-wrap .step-content p {
            color: rgba(245, 245, 247, 0.7);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
.tip-box {
            background: rgba(245, 197, 24, 0.08);
            border-left: 3px solid var(--accent);
            border-radius: 0 12px 12px 0;
            padding: 16px 20px;
            margin-top: 24px;
            color: rgba(245, 245, 247, 0.8);
            font-size: 0.95rem;
            line-height: 1.7;
        }
.tip-box i {
            color: var(--accent);
            margin-right: 8px;
        }
.guide-hero {
                padding: 40px 20px;
            }
.guide-hero h1 {
                font-size: 1.9rem;
            }
.steps-wrap {
                padding: 24px 20px;
            }