/* ============================================
   公共基础
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif; background: #0a0e1a; color: #e0e0e0; line-height: 1.6; }
a { color: #ff4d00; text-decoration: none; }
a:hover { color: #ff8c00; }
img { max-width: 100%; height: auto; }

.fl-body { background: #0a0e1a; }
.fl-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }

/* 快讯栏 */
.fl-ticker { background: rgba(255,77,0,0.06); padding: 12px 20px; display: flex; align-items: center; gap: 16px; overflow: hidden; border-bottom: 1px solid rgba(255,77,0,0.1); position: relative; z-index: 3; }
.fl-ticker-label { background: #ff4d00; color: #fff; padding: 4px 14px; border-radius: 4px; font-size: 12px; font-weight: 700; flex-shrink: 0; letter-spacing: 2px; }
.fl-ticker-track { flex: 1; overflow: hidden; }
.fl-ticker-track p { animation: flScroll 30s linear infinite; white-space: nowrap; color: #666; font-size: 13px; }
@keyframes flScroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

/* 面包屑 */
.fl-crumb { background: rgba(255,77,0,0.04); padding: 12px 20px; border-bottom: 1px solid rgba(255,77,0,0.1); position: relative; z-index: 3; }
.fl-crumb-inner { max-width: 1200px; margin: 0 auto; font-size: 13px; color: #555; }
.fl-crumb-sep { margin: 0 8px; color: #333; }
.fl-crumb-cur { color: #ff8c00; font-weight: 600; }
.fl-crumb a { color: #ff4d00; text-decoration: none; }

/* 区块标题 */
.fl-section { margin-bottom: 30px; position: relative; z-index: 3; }
.fl-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.fl-section-title { font-size: 20px; font-weight: 800; color: #ff8c00; }
.fl-section-title::before { content: ""; display: inline-block; width: 4px; height: 20px; background: #ff4d00; border-radius: 2px; margin-right: 10px; vertical-align: middle; }
.fl-section-more { color: #ff4d00; font-size: 13px; font-weight: 500; }
.fl-section-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.fl-tab-pill { display: inline-block; padding: 5px 14px; background: rgba(255,77,0,0.1); color: #ff4d00; text-decoration: none; border-radius: 4px; font-size: 12px; border: 1px solid rgba(255,77,0,0.2); transition: 0.2s; }
.fl-tab-pill:hover { background: rgba(255,77,0,0.25); border-color: #ff4d00; }

/* 通用卡片 */
.fl-card { background: #111827; border: 1px solid #1e293b; border-radius: 16px; overflow: hidden; transition: 0.3s; }
.fl-card:hover { border-color: #ff4d00; box-shadow: 0 0 20px rgba(255,77,0,0.2); transform: translateY(-4px); }
.fl-card-link { text-decoration: none; color: inherit; display: block; }
.fl-card-poster { position: relative; padding-bottom: 140%; overflow: hidden; background: #111; }
.fl-card-poster img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.fl-card:hover .fl-card-poster img { transform: scale(1.05); }
.fl-card-badge { position: absolute; top: 8px; left: 8px; background: #ff4d00; color: #fff; padding: 3px 10px; border-radius: 4px; font-size: 10px; font-weight: 600; }
.fl-card-score { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,0.7); color: #ff8c00; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; border: 1px solid rgba(255,140,0,0.3); }
.fl-card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; transition: 0.25s; }
.fl-card:hover .fl-card-overlay { background: rgba(255,77,0,0.15); }
.fl-card-play { font-size: 36px; color: #ff8c00; opacity: 0; transition: 0.25s; text-shadow: 0 0 16px rgba(255,77,0,0.6); }
.fl-card:hover .fl-card-play { opacity: 1; }
.fl-card-body { padding: 12px; }
.fl-card-title { font-size: 14px; font-weight: 600; color: #e0e0e0; margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fl-card-desc { font-size: 12px; color: #666; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-bottom: 4px; }
.fl-card-meta { font-size: 11px; color: #555; }
.fl-card-meta span { margin-right: 8px; }

/* 特色区块 */
.fl-features { padding: 0 0 20px; }
.fl-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fl-feature-item { text-align: center; padding: 24px 16px; background: rgba(255,77,0,0.04); border: 1px solid #1e293b; border-radius: 16px; transition: 0.2s; }
.fl-feature-item:hover { border-color: #ff4d00; box-shadow: 0 0 16px rgba(255,77,0,0.15); }
.fl-feature-icon { font-size: 28px; margin-bottom: 12px; }
.fl-feature-item h3 { font-size: 14px; font-weight: 700; color: #ff8c00; margin-bottom: 8px; }
.fl-feature-item p { font-size: 12px; color: #666; }

/* 列表页头部 */
.fl-list-hero { background: linear-gradient(135deg, #0a0e1a 0%, #111827 100%); padding: 40px 20px; position: relative; border-bottom: 1px solid #1e293b; z-index: 3; }
.fl-list-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.fl-list-hero-title { font-size: 32px; font-weight: 800; color: #ff8c00; margin-bottom: 10px; }
.fl-list-hero-desc { font-size: 14px; color: #666; }
.fl-list-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.fl-list-title { font-size: 18px; font-weight: 700; color: #e0e0e0; }
.fl-list-count { font-size: 13px; color: #555; }

/* 筛选条（水平） */
.fl-filter { background: rgba(255,77,0,0.03); padding: 20px; border-bottom: 1px solid #1e293b; position: relative; z-index: 3; }
.fl-filter-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.fl-filter-row:last-child { margin-bottom: 0; }
.fl-filter-key { font-weight: 600; color: #ff8c00; min-width: 50px; font-size: 13px; }
.fl-filter-pill { display: inline-block; padding: 5px 14px; background: rgba(255,255,255,0.04); color: #888; text-decoration: none; border-radius: 4px; font-size: 12px; transition: 0.2s; border: 1px solid #1e293b; }
.fl-filter-pill:hover { border-color: #ff4d00; color: #ff8c00; }
.fl-filter-pill.active { background: #ff4d00; color: #fff; border-color: transparent; }

/* 分页 */
.fl-pager { display: flex; gap: 6px; margin-top: 20px; justify-content: center; flex-wrap: wrap; }
.fl-page-item { display: inline-block; padding: 8px 14px; background: rgba(255,255,255,0.04); color: #888; text-decoration: none; border-radius: 4px; font-size: 13px; transition: 0.2s; border: 1px solid #1e293b; }
.fl-page-item:hover { border-color: #ff4d00; color: #ff8c00; }
.fl-page-item.active { background: #ff4d00; color: #fff; border-color: transparent; }

/* SEO文字区 */
.fl-seo { background: rgba(255,255,255,0.03); border: 1px solid #1e293b; padding: 24px; border-radius: 16px; margin-top: 20px; }
.fl-seo-title { font-size: 16px; font-weight: 700; color: #ff8c00; margin-bottom: 12px; }
.fl-seo p { font-size: 13px; color: #555; line-height: 1.8; margin-bottom: 12px; }

/* 播放器 */
.fl-player-block { background: #111827; border: 1px solid #1e293b; border-radius: 16px; overflow: hidden; margin-bottom: 24px; }
.fl-player-frame { position: relative; padding-bottom: 56.25%; overflow: hidden; background: #050510; }
.fl-player-mask { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; }
.fl-player-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3) saturate(0.5); }
.fl-player-shade { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); }
.fl-player-bigplay { position: relative; z-index: 10; background: rgba(255,77,0,0.3); border: 2px solid rgba(255,77,0,0.5); color: #ff8c00; font-size: 36px; cursor: pointer; width: 72px; height: 72px; border-radius: 50%; transition: 0.2s; }
.fl-player-bigplay:hover { background: rgba(255,77,0,0.5); box-shadow: 0 0 30px rgba(255,77,0,0.4); }
.fl-player-info { position: relative; z-index: 10; text-align: center; color: #e0e0e0; margin-top: 12px; }
.fl-player-info h3 { font-size: 18px; margin-bottom: 6px; }
.fl-player-info p { font-size: 13px; color: #555; }
.fl-player-bar { background: rgba(255,77,0,0.04); padding: 12px 20px; display: flex; gap: 20px; font-size: 12px; color: #555; border-top: 1px solid #1e293b; }

/* 线路和选集 */
.fl-line-tabs { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.fl-line-tab { display: inline-block; padding: 8px 18px; background: rgba(255,255,255,0.04); color: #888; border-radius: 4px; font-size: 13px; cursor: pointer; transition: 0.2s; border: 1px solid #1e293b; font-weight: 500; }
.fl-line-tab.active { background: #ff4d00; color: #fff; border-color: transparent; }
.fl-eps-section { margin-bottom: 24px; }
.fl-eps-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.fl-eps-title { font-size: 14px; font-weight: 600; color: #ff8c00; }
.fl-eps-tools { display: flex; gap: 8px; }
.fl-eps-tool { padding: 6px 14px; background: rgba(255,77,0,0.1); border: 1px solid rgba(255,77,0,0.2); border-radius: 4px; cursor: pointer; font-size: 12px; color: #ff8c00; transition: 0.2s; }
.fl-eps-tool:hover { background: rgba(255,77,0,0.2); }
.fl-eps-search { padding: 6px 14px; border: 1px solid rgba(255,77,0,0.2); border-radius: 4px; background: rgba(255,255,255,0.04); color: #e0e0e0; font-size: 12px; }
.fl-eps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); gap: 6px; }
.fl-ep-item { display: block; padding: 8px; background: rgba(255,255,255,0.04); color: #888; text-decoration: none; border-radius: 4px; text-align: center; font-size: 12px; transition: 0.2s; cursor: pointer; border: 1px solid rgba(255,77,0,0.08); }
.fl-ep-item:hover { border-color: #ff4d00; color: #ff8c00; }
.fl-ep-item.active { background: #ff4d00; color: #fff; border-color: transparent; }

/* 按钮 */
.fl-btn-play { display: inline-block; padding: 10px 28px; border-radius: 6px; text-decoration: none; font-size: 14px; font-weight: 600; background: #ff4d00; color: #fff; box-shadow: 0 0 16px rgba(255,77,0,0.3); transition: 0.25s; }
.fl-btn-play:hover { box-shadow: 0 0 24px rgba(255,77,0,0.5); color: #fff; }
.fl-btn-ghost { display: inline-block; padding: 10px 28px; border-radius: 6px; text-decoration: none; font-size: 14px; font-weight: 600; background: rgba(255,77,0,0.1); color: #ff8c00; border: 1px solid rgba(255,77,0,0.3); transition: 0.25s; }
.fl-btn-ghost:hover { background: rgba(255,77,0,0.2); border-color: #ff4d00; }

/* 详情页通用 */
.fl-chip { display: inline-block; padding: 5px 14px; background: rgba(255,77,0,0.1); color: #ff8c00; border-radius: 4px; font-size: 12px; text-decoration: none; border: 1px solid rgba(255,77,0,0.2); }
.fl-chip-pri { background: #ff4d00; color: #fff; border-color: transparent; text-decoration: none; display: inline-block; padding: 5px 14px; border-radius: 4px; font-size: 12px; }
.fl-show-meta { list-style: none; font-size: 13px; color: #777; }
.fl-show-meta li { margin-bottom: 8px; }
.fl-show-meta span { font-weight: 600; color: #ff8c00; min-width: 60px; display: inline-block; }
.fl-show-meta a { color: #ff4d00; text-decoration: none; }
.fl-show-meta a:hover { text-decoration: underline; }
.fl-status { color: #ff4d00; font-weight: 600; }

/* 简介/标签/上下篇 */
.fl-block { background: #111827; border: 1px solid #1e293b; border-radius: 16px; padding: 28px; margin-bottom: 24px; position: relative; z-index: 3; }
.fl-block-title { font-size: 18px; font-weight: 700; color: #ff8c00; margin-bottom: 16px; }
.fl-block-title::before { content: ""; display: inline-block; width: 4px; height: 18px; background: #ff4d00; border-radius: 2px; margin-right: 10px; vertical-align: middle; }
.fl-body-text { font-size: 14px; color: #777; line-height: 1.8; margin-bottom: 20px; }
.fl-tags { margin-bottom: 20px; }
.fl-tags-label { font-weight: 600; color: #ff8c00; }
.fl-tag-link { display: inline-block; margin: 4px 6px 4px 0; padding: 4px 14px; background: rgba(255,77,0,0.1); color: #ff8c00; text-decoration: none; border-radius: 4px; font-size: 12px; border: 1px solid rgba(255,77,0,0.15); }
.fl-tag-link:hover { background: #ff4d00; color: #fff; }
.fl-prev-next { display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid #1e293b; font-size: 13px; color: #555; }
.fl-prev-next a { color: #ff4d00; text-decoration: none; }
.fl-grid-related { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }

/* FAQ */
.fl-faq-item { margin-bottom: 16px; padding: 16px; background: rgba(255,77,0,0.04); border: 1px solid #1e293b; border-radius: 8px; }
.fl-faq-item:last-child { margin-bottom: 0; }
.fl-faq-q { font-size: 14px; font-weight: 600; color: #ff8c00; margin-bottom: 8px; }
.fl-faq-a { font-size: 13px; color: #666; line-height: 1.6; }
.fl-faq-a p { margin: 0; }
.fl-faq-a a { color: #ff4d00; text-decoration: none; }

/* 侧栏 */
.fl-sidebar { }
.fl-sb-card { background: #111827; border: 1px solid #1e293b; border-radius: 16px; padding: 20px; margin-bottom: 20px; }
.fl-sb-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.fl-sb-title { font-size: 14px; font-weight: 700; color: #e0e0e0; }
.fl-sb-tag { background: #ff4d00; color: #fff; padding: 2px 10px; border-radius: 4px; font-size: 10px; font-weight: 600; }
.fl-sb-more { color: #ff4d00; text-decoration: none; font-size: 12px; }
.fl-rank { list-style: none; }
.fl-rank-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(255,77,0,0.06); font-size: 12px; }
.fl-rank-item:last-child { border-bottom: none; }
.fl-rank-num { display: inline-flex; width: 22px; height: 22px; background: rgba(255,77,0,0.15); color: #ff8c00; align-items: center; justify-content: center; border-radius: 4px; font-weight: 700; flex-shrink: 0; font-size: 11px; }
.fl-rank-item:nth-child(1) .fl-rank-num { background: #ff4d00; color: #fff; }
.fl-rank-item:nth-child(2) .fl-rank-num { background: #ff8c00; color: #fff; }
.fl-rank-item:nth-child(3) .fl-rank-num { background: #ff6b35; color: #fff; }
.fl-rank-title { flex: 1; color: #e0e0e0; text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fl-rank-title:hover { color: #ff8c00; }
.fl-rank-heat { color: #444; font-size: 11px; }
.fl-sb-mini { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.fl-mini-card { display: block; text-decoration: none; color: inherit; }
.fl-mini-poster { position: relative; padding-bottom: 150%; overflow: hidden; background: #111; border-radius: 6px; border: 1px solid #1e293b; }
.fl-mini-poster img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.fl-mini-score { position: absolute; bottom: 4px; right: 4px; background: rgba(0,0,0,0.7); color: #ff8c00; padding: 2px 6px; border-radius: 4px; font-size: 10px; font-weight: 700; }
.fl-mini-title { font-size: 12px; font-weight: 600; color: #e0e0e0; margin-top: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fl-mini-meta { font-size: 11px; color: #555; }
.fl-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.fl-tag { display: inline-block; padding: 5px 14px; background: rgba(255,77,0,0.08); color: #888; text-decoration: none; border-radius: 4px; font-size: 12px; transition: 0.2s; border: 1px solid #1e293b; }
.fl-tag:hover { background: #ff4d00; color: #fff; border-color: #ff4d00; }
.fl-friend-list { list-style: none; }
.fl-friend-list li { margin-bottom: 8px; }
.fl-friend-list a { color: #ff4d00; text-decoration: none; font-size: 12px; }
.fl-friend-list a:hover { text-decoration: underline; }

/* 底部 */
.fl-footer { background: rgba(10,14,26,0.95); border-top: 1px solid #1e293b; padding: 40px 20px; margin-top: 30px; position: relative; z-index: 3; }
.fl-footer-inner { max-width: 1200px; margin: 0 auto; }
.fl-footer-content { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #1e293b; }
.fl-footer-content p { font-size: 12px; color: #444; margin-bottom: 6px; }
.fl-footer-content a { color: #ff8c00; text-decoration: none; }
.fl-footer-tip { color: #333; line-height: 1.6; font-size: 12px; }
.fl-footer-nav { text-align: center; }
.fl-footer-nav a { color: #ff4d00; text-decoration: none; font-size: 12px; }

/* ============================================
   模板1: 流量洪峰 - 独特布局
   ============================================ */

/* 导航: 全宽透明 Logo左+搜索中+菜单右 */
.fl-header { position: sticky; top: 0; z-index: 100; background: rgba(10,14,26,0.88); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,77,0,0.15); }
.fl-header-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 64px; }
.fl-logo { margin: 0; flex-shrink: 0; }
.fl-logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.fl-logo img { height: 34px; width: auto; }
.fl-logo-text { font-size: 18px; font-weight: 800; background: linear-gradient(90deg, #ff4d00, #ff8c00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.fl-search { display: flex; align-items: center; margin: 0 auto; }
.fl-search-input { width: 280px; padding: 9px 16px; border: 1px solid rgba(255,77,0,0.25); border-radius: 24px; font-size: 14px; background: rgba(255,255,255,0.04); color: #e0e0e0; transition: 0.2s; }
.fl-search-input:focus { outline: none; border-color: #ff4d00; box-shadow: 0 0 16px rgba(255,77,0,0.2); }
.fl-search-input::placeholder { color: #555; }
.fl-search-btn { background: none; border: none; cursor: pointer; color: #ff4d00; padding: 4px; margin-left: -36px; }
.fl-nav { display: flex; gap: 24px; flex-shrink: 0; }
.fl-nav-link { text-decoration: none; color: #888; font-size: 14px; font-weight: 500; transition: 0.2s; position: relative; }
.fl-nav-link:hover { color: #ff8c00; }
.fl-nav-link:hover::after { content: ""; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #ff4d00, #ff8c00); border-radius: 1px; }
.fl-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.fl-burger span { width: 24px; height: 2px; background: #ff8c00; transition: 0.3s; border-radius: 2px; }
.fl-mobile-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: rgba(10,14,26,0.96); border-bottom: 1px solid rgba(255,77,0,0.15); flex-direction: column; backdrop-filter: blur(14px); z-index: 99; }
.fl-mn-link { display: block; padding: 14px 24px; text-decoration: none; color: #888; border-bottom: 1px solid rgba(255,77,0,0.08); }
.fl-mn-link:hover { color: #ff8c00; background: rgba(255,77,0,0.06); }

/* 首页: 全宽Banner */
.fl-banner { background: linear-gradient(135deg, #0a0e1a 0%, #1a0a00 50%, #0a0e1a 100%); padding: 60px 24px; position: relative; overflow: hidden; border-bottom: 1px solid rgba(255,77,0,0.12); z-index: 3; }
.fl-banner::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 30% 50%, rgba(255,77,0,0.1) 0%, transparent 60%); }
.fl-banner-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 2; }
.fl-banner-text { flex: 1; }
.fl-banner-title { font-size: 40px; font-weight: 900; background: linear-gradient(90deg, #ff4d00, #ff8c00, #ff4d00); background-size: 200% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: flShimmer 4s ease-in-out infinite; margin-bottom: 16px; }
@keyframes flShimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.fl-banner-desc { font-size: 16px; color: rgba(224,224,224,0.6); margin-bottom: 24px; }
.fl-banner-stats { display: flex; gap: 32px; }
.fl-stat strong { display: block; font-size: 24px; color: #ff8c00; font-weight: 800; }
.fl-stat { font-size: 12px; color: #555; }
.fl-banner-featured { flex-shrink: 0; width: 200px; }
.fl-banner-card { display: block; position: relative; border-radius: 16px; overflow: hidden; border: 2px solid rgba(255,77,0,0.3); }
.fl-banner-card img { width: 100%; display: block; }
.fl-banner-card-title { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff; font-size: 13px; font-weight: 600; }

/* 首页: 全宽无侧栏 */
.fl-fullwidth { max-width: 1400px; margin: 0 auto; padding: 30px 24px; position: relative; z-index: 3; }
.fl-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* 列表页: 左侧筛选栏 + 右主内容 */
.fl-layout-reverse { max-width: 1400px; margin: 0 auto; padding: 30px 24px; display: grid; grid-template-columns: 240px 1fr; gap: 30px; position: relative; z-index: 3; }
.fl-filter-sidebar { }
.fl-filter-card { background: #111827; border: 1px solid #1e293b; border-radius: 16px; padding: 20px; margin-bottom: 20px; position: sticky; top: 80px; }
.fl-filter-title { font-size: 14px; font-weight: 700; color: #ff8c00; margin-bottom: 12px; }
.fl-filter-group { display: flex; flex-direction: column; gap: 6px; }
.fl-filter-item { display: block; padding: 8px 14px; color: #888; text-decoration: none; border-radius: 8px; font-size: 13px; transition: 0.2s; border: 1px solid transparent; }
.fl-filter-item:hover { background: rgba(255,77,0,0.06); color: #ff8c00; }
.fl-filter-item.active { background: rgba(255,77,0,0.12); color: #ff4d00; border-color: rgba(255,77,0,0.3); font-weight: 600; }
.fl-list-main { }

/* 详情页: 全宽播放器置顶 + 下方双栏 */
.fl-show-wrap { max-width: 1400px; margin: 0 auto; padding: 30px 24px; display: grid; grid-template-columns: 1fr 300px; gap: 30px; position: relative; z-index: 3; }
.fl-show-main { }
.fl-info-card { background: #111827; border: 1px solid #1e293b; border-radius: 16px; padding: 28px; margin-bottom: 24px; }
.fl-info-top { display: flex; gap: 28px; }
.fl-info-poster { flex-shrink: 0; width: 180px; position: relative; }
.fl-info-poster img { width: 100%; border-radius: 12px; border: 1px solid rgba(255,77,0,0.2); }
.fl-info-mark { position: absolute; top: 10px; right: 10px; background: #ff4d00; color: #fff; padding: 4px 12px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.fl-info-detail { flex: 1; }
.fl-info-title { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.fl-info-score { margin-bottom: 12px; }
.fl-info-score strong { font-size: 28px; color: #ff8c00; font-weight: 800; }
.fl-info-score em { font-size: 12px; color: #555; font-style: normal; margin-left: 6px; }
.fl-info-chips { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.fl-info-actions { display: flex; gap: 12px; margin-top: 20px; }

/* 响应式 */
@media (max-width: 1100px) {
    .fl-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .fl-layout-reverse { grid-template-columns: 1fr; }
    .fl-filter-sidebar { display: none; }
    .fl-show-wrap { grid-template-columns: 1fr; }
    .fl-banner-inner { flex-direction: column; text-align: center; }
    .fl-banner-stats { justify-content: center; }
    .fl-banner-featured { display: none; }
    .fl-grid-related { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .fl-nav { display: none; }
    .fl-search { display: none; }
    .fl-burger { display: flex; }
    .fl-mobile-nav.active { display: flex; }
    .fl-banner-title { font-size: 26px; }
    .fl-banner { padding: 40px 16px; }
    .fl-info-top { flex-direction: column; }
    .fl-info-poster { width: 120px; }
    .fl-info-actions { flex-direction: column; }
    .fl-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .fl-grid-related { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .fl-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .fl-banner-title { font-size: 20px; }
    .fl-info-title { font-size: 20px; }
    .fl-eps-grid { grid-template-columns: repeat(4, 1fr); }
    .fl-feature-grid { grid-template-columns: 1fr; }
    .fl-grid-related { grid-template-columns: repeat(2, 1fr); }
}
