/* ============================================
   公共基础
   ============================================ */
* { 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: #000000; color: #d4d4d8; line-height: 1.6; }
a { color: #8b5cf6; text-decoration: none; }
a:hover { color: #a78bfa; }
img { max-width: 100%; height: auto; }

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

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

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

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

/* 通用卡片 */
.bh-card { background: #0d0d1a; border: 1px solid #1a1a2e; border-radius: 8px; overflow: hidden; transition: 0.3s; }
.bh-card:hover { border-color: #8b5cf6; box-shadow: 0 0 20px rgba(139,92,246,0.2); transform: translateY(-4px); }
.bh-card-link { text-decoration: none; color: inherit; display: block; }
.bh-card-poster { position: relative; padding-bottom: 140%; overflow: hidden; background: #111; }
.bh-card-poster img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.bh-card:hover .bh-card-poster img { transform: scale(1.05); }
.bh-card-badge { position: absolute; top: 8px; left: 8px; background: #8b5cf6; color: #fff; padding: 3px 10px; border-radius: 4px; font-size: 10px; font-weight: 600; }
.bh-card-score { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,0.7); color: #a78bfa; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; border: 1px solid rgba(167,139,250,0.3); }
.bh-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; }
.bh-card:hover .bh-card-overlay { background: rgba(139,92,246,0.15); }
.bh-card-play { font-size: 36px; color: #a78bfa; opacity: 0; transition: 0.25s; text-shadow: 0 0 16px rgba(139,92,246,0.6); }
.bh-card:hover .bh-card-play { opacity: 1; }
.bh-card-body { padding: 12px; }
.bh-card-title { font-size: 14px; font-weight: 600; color: #d4d4d8; margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bh-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; }
.bh-card-meta { font-size: 11px; color: #555; }
.bh-card-meta span { margin-right: 8px; }

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

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

/* 筛选条（水平） */
.bh-filter { background: rgba(139,92,246,0.03); padding: 20px; border-bottom: 1px solid #1a1a2e; position: relative; z-index: 3; }
.bh-filter-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.bh-filter-row:last-child { margin-bottom: 0; }
.bh-filter-key { font-weight: 600; color: #a78bfa; min-width: 50px; font-size: 13px; }
.bh-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 #1a1a2e; }
.bh-filter-pill:hover { border-color: #8b5cf6; color: #a78bfa; }
.bh-filter-pill.active { background: #8b5cf6; color: #fff; border-color: transparent; }

/* 分页 */
.bh-pager { display: flex; gap: 6px; margin-top: 20px; justify-content: center; flex-wrap: wrap; }
.bh-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 #1a1a2e; }
.bh-page-item:hover { border-color: #8b5cf6; color: #a78bfa; }
.bh-page-item.active { background: #8b5cf6; color: #fff; border-color: transparent; }

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

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

/* 线路和选集 */
.bh-line-tabs { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.bh-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 #1a1a2e; font-weight: 500; }
.bh-line-tab.active { background: #8b5cf6; color: #fff; border-color: transparent; }
.bh-eps-section { margin-bottom: 24px; }
.bh-eps-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.bh-eps-title { font-size: 14px; font-weight: 600; color: #a78bfa; }
.bh-eps-tools { display: flex; gap: 8px; }
.bh-eps-tool { padding: 6px 14px; background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.2); border-radius: 4px; cursor: pointer; font-size: 12px; color: #a78bfa; transition: 0.2s; }
.bh-eps-tool:hover { background: rgba(139,92,246,0.2); }
.bh-eps-search { padding: 6px 14px; border: 1px solid rgba(139,92,246,0.2); border-radius: 4px; background: rgba(255,255,255,0.04); color: #d4d4d8; font-size: 12px; }
.bh-eps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); gap: 6px; }
.bh-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(139,92,246,0.08); }
.bh-ep-item:hover { border-color: #8b5cf6; color: #a78bfa; }
.bh-ep-item.active { background: #8b5cf6; color: #fff; border-color: transparent; }

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

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

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

/* FAQ */
.bh-faq-item { margin-bottom: 16px; padding: 16px; background: rgba(139,92,246,0.04); border: 1px solid #1a1a2e; border-radius: 8px; }
.bh-faq-item:last-child { margin-bottom: 0; }
.bh-faq-q { font-size: 14px; font-weight: 600; color: #a78bfa; margin-bottom: 8px; }
.bh-faq-a { font-size: 13px; color: #666; line-height: 1.6; }
.bh-faq-a p { margin: 0; }
.bh-faq-a a { color: #8b5cf6; text-decoration: none; }

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

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

/* ============================================
   模板2: 黑洞吞噬 - 独特布局
   ============================================ */

/* 导航: 居中Logo上层 + 下方菜单条（双层） */
.bh-header { position: sticky; top: 0; z-index: 100; }
.bh-header-top { background: rgba(0,0,0,0.95); padding: 16px 20px; display: flex; align-items: center; justify-content: center; gap: 30px; border-bottom: 1px solid rgba(139,92,246,0.1); }
.bh-logo { margin: 0; }
.bh-logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.bh-logo img { height: 36px; width: auto; }
.bh-logo-text { font-size: 20px; font-weight: 800; background: linear-gradient(90deg, #8b5cf6, #c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bh-search { display: flex; align-items: center; }
.bh-search-input { width: 220px; padding: 8px 14px; border: 1px solid rgba(139,92,246,0.25); border-radius: 6px; font-size: 14px; background: rgba(255,255,255,0.04); color: #d4d4d8; transition: 0.2s; }
.bh-search-input:focus { outline: none; border-color: #8b5cf6; box-shadow: 0 0 12px rgba(139,92,246,0.2); }
.bh-search-input::placeholder { color: #555; }
.bh-search-btn { background: none; border: none; cursor: pointer; color: #8b5cf6; padding: 4px; }
.bh-nav-bar { background: rgba(13,13,26,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(139,92,246,0.15); }
.bh-nav-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; gap: 32px; padding: 10px 20px; }
.bh-nav-link { text-decoration: none; color: #777; font-size: 14px; font-weight: 500; transition: 0.2s; padding: 4px 0; }
.bh-nav-link:hover { color: #a78bfa; }
.bh-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 4px; position: absolute; right: 20px; top: 20px; }
.bh-burger span { width: 22px; height: 2px; background: #a78bfa; transition: 0.3s; border-radius: 2px; }
.bh-mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.96); flex-direction: column; z-index: 200; padding-top: 80px; }
.bh-mn-link { display: block; padding: 16px 24px; text-decoration: none; color: #777; border-bottom: 1px solid rgba(139,92,246,0.08); font-size: 16px; text-align: center; }
.bh-mn-link:hover { color: #a78bfa; }

/* 首页: 经典两栏，窄侧栏240px */
.bh-hero { background: radial-gradient(ellipse at 50% 50%, rgba(139,92,246,0.08) 0%, transparent 60%); padding: 50px 20px; text-align: center; border-bottom: 1px solid rgba(139,92,246,0.1); position: relative; z-index: 3; }
.bh-hero-inner { max-width: 1200px; margin: 0 auto; }
.bh-hero-title { font-size: 36px; font-weight: 900; background: linear-gradient(90deg, #a78bfa, #c084fc, #a78bfa); background-size: 200% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: bhShimmer 4s ease-in-out infinite; margin-bottom: 12px; }
@keyframes bhShimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.bh-hero-desc { font-size: 15px; color: rgba(212,212,216,0.5); }
.bh-layout-classic { max-width: 1200px; margin: 0 auto; padding: 30px 20px; display: grid; grid-template-columns: 1fr 240px; gap: 24px; position: relative; z-index: 3; }
.bh-content-main { }
.bh-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }

/* 正方形1:1卡片 */
.bh-card .bh-card-poster { padding-bottom: 100%; }
.bh-card-score { border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; padding: 0; font-size: 10px; }

/* 列表页: 全宽无侧栏，5列紧凑 */
.bh-fullwidth { max-width: 1200px; margin: 0 auto; padding: 30px 20px; position: relative; z-index: 3; }

/* 详情页: 信息在上，播放器在下 */
.bh-show-info { max-width: 1200px; margin: 0 auto; padding: 30px 20px; display: grid; grid-template-columns: 200px 1fr; gap: 30px; position: relative; z-index: 3; }
.bh-show-poster { position: relative; }
.bh-show-poster img { width: 100%; border-radius: 8px; border: 2px solid rgba(139,92,246,0.3); }
.bh-show-mark { position: absolute; top: 10px; right: 10px; background: linear-gradient(90deg, #8b5cf6, #c084fc); color: #fff; padding: 4px 12px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.bh-show-detail { }
.bh-show-title { font-size: 28px; font-weight: 800; color: #e0e0ff; margin-bottom: 12px; }
.bh-show-score { margin-bottom: 12px; }
.bh-show-score strong { font-size: 28px; color: #c084fc; font-weight: 800; }
.bh-show-score em { font-size: 12px; color: #555; font-style: normal; margin-left: 6px; }
.bh-show-chips { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.bh-show-actions { display: flex; gap: 12px; margin-top: 20px; }
.bh-show-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px 30px; display: grid; grid-template-columns: 1fr 300px; gap: 30px; position: relative; z-index: 3; }
.bh-show-main { }

/* 响应式 */
@media (max-width: 1100px) {
    .bh-grid-5 { grid-template-columns: repeat(4, 1fr); }
    .bh-layout-classic { grid-template-columns: 1fr; }
    .bh-show-wrap { grid-template-columns: 1fr; }
    .bh-grid-related { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .bh-nav-bar { display: none; }
    .bh-burger { display: flex; }
    .bh-mobile-nav.active { display: flex; }
    .bh-grid-5 { grid-template-columns: repeat(3, 1fr); }
    .bh-hero-title { font-size: 24px; }
    .bh-show-info { grid-template-columns: 140px 1fr; gap: 16px; }
    .bh-show-title { font-size: 22px; }
    .bh-show-actions { flex-direction: column; }
    .bh-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .bh-grid-related { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .bh-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .bh-hero-title { font-size: 20px; }
    .bh-show-info { grid-template-columns: 100px 1fr; }
    .bh-show-title { font-size: 18px; }
    .bh-eps-grid { grid-template-columns: repeat(4, 1fr); }
    .bh-feature-grid { grid-template-columns: 1fr; }
    .bh-grid-related { grid-template-columns: repeat(2, 1fr); }
}

/* 列表页双栏布局 */
.bh-layout-list { max-width: 1200px; margin: 0 auto; padding: 30px 20px; display: grid; grid-template-columns: 1fr 240px; gap: 24px; position: relative; z-index: 3; }
@media (max-width: 1100px) { .bh-layout-list { grid-template-columns: 1fr; } }
