/* ============================================
   公共基础
   ============================================ */
* { 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: #050510; color: #e2e8f0; line-height: 1.6; }
a { color: #3b82f6; text-decoration: none; }
a:hover { color: #60a5fa; }
img { max-width: 100%; height: auto; }

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

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

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

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

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

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

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

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

/* 分页 */
.ps-pager { display: flex; gap: 6px; margin-top: 20px; justify-content: center; flex-wrap: wrap; }
.ps-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 #1e1e4a; }
.ps-page-item:hover { border-color: #3b82f6; color: #60a5fa; }
.ps-page-item.active { background: #3b82f6; color: #fff; border-color: transparent; }

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

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

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

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

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

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

/* FAQ */
.ps-faq-item { margin-bottom: 16px; padding: 16px; background: rgba(59,130,246,0.04); border: 1px solid #1e1e4a; border-radius: 8px; }
.ps-faq-item:last-child { margin-bottom: 0; }
.ps-faq-q { font-size: 14px; font-weight: 600; color: #60a5fa; margin-bottom: 8px; }
.ps-faq-a { font-size: 13px; color: #666; line-height: 1.6; }
.ps-faq-a p { margin: 0; }
.ps-faq-a a { color: #3b82f6; text-decoration: none; }

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

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

/* ============================================
   模板5: 脉冲风暴 - 独特布局
   ============================================ */

/* 导航: 胶囊式悬浮 */
.ps-header { position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 100; width: calc(100% - 40px); max-width: 1200px; }
.ps-capsule { background: rgba(15,15,46,0.85); backdrop-filter: blur(16px); border: 1px solid rgba(59,130,246,0.2); border-radius: 50px; padding: 0 24px; display: flex; align-items: center; height: 56px; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.ps-logo { margin: 0; flex-shrink: 0; }
.ps-logo a { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #fff; }
.ps-logo img { height: 28px; width: auto; }
.ps-logo-text { font-size: 15px; font-weight: 800; background: linear-gradient(90deg, #3b82f6, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ps-nav { display: flex; gap: 20px; margin-left: 24px; flex: 1; }
.ps-nav-link { text-decoration: none; color: #888; font-size: 13px; font-weight: 500; transition: 0.2s; }
.ps-nav-link:hover { color: #60a5fa; }
.ps-search { display: flex; align-items: center; margin-left: auto; }
.ps-search-input { width: 160px; padding: 7px 14px; border: 1px solid rgba(59,130,246,0.2); border-radius: 20px; font-size: 13px; background: rgba(255,255,255,0.04); color: #e2e8f0; transition: 0.2s; }
.ps-search-input:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 12px rgba(59,130,246,0.2); }
.ps-search-input::placeholder { color: #444; }
.ps-search-btn { background: none; border: none; cursor: pointer; color: #3b82f6; padding: 4px; }
.ps-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 4px; margin-left: 12px; }
.ps-burger span { width: 20px; height: 2px; background: #60a5fa; transition: 0.3s; border-radius: 2px; }
.ps-mobile-nav { display: none; position: fixed; top: 80px; left: 20px; right: 20px; background: rgba(15,15,46,0.95); backdrop-filter: blur(16px); border: 1px solid rgba(59,130,246,0.2); border-radius: 24px; flex-direction: column; z-index: 99; padding: 10px 0; }
.ps-mn-link { display: block; padding: 14px 24px; text-decoration: none; color: #888; font-size: 14px; }
.ps-mn-link:hover { color: #60a5fa; }

/* 首页: 大Hero半屏 */
.ps-hero-big { height: 50vh; min-height: 400px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; z-index: 3; }
.ps-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 50% 50%, rgba(59,130,246,0.12) 0%, transparent 60%); }
.ps-hero-content { position: relative; z-index: 2; text-align: center; padding-top: 60px; }
.ps-hero-title { font-size: 48px; font-weight: 900; background: linear-gradient(90deg, #60a5fa, #3b82f6, #60a5fa); background-size: 200% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: psShimmer 4s ease-in-out infinite; margin-bottom: 16px; }
@keyframes psShimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.ps-hero-tagline { font-size: 16px; color: rgba(226,232,240,0.5); margin-bottom: 20px; }
.ps-hero-stats { display: flex; justify-content: center; gap: 32px; }
.ps-hero-stats span { font-size: 13px; color: #555; }
.ps-hero-stats strong { color: #60a5fa; }

/* 横向滚动推荐条 */
.ps-scroll-section { padding: 30px 20px; position: relative; z-index: 3; }
.ps-scroll-track { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.ps-scroll-track::-webkit-scrollbar { height: 4px; }
.ps-scroll-track::-webkit-scrollbar-track { background: rgba(59,130,246,0.05); }
.ps-scroll-track::-webkit-scrollbar-thumb { background: rgba(59,130,246,0.3); border-radius: 2px; }
.ps-scroll-card { flex-shrink: 0; width: 140px; scroll-snap-align: start; display: block; text-decoration: none; }
.ps-scroll-card img { width: 140px; height: 200px; object-fit: cover; border-radius: 16px; border: 1px solid rgba(59,130,246,0.15); transition: 0.3s; }
.ps-scroll-card:hover img { border-color: #3b82f6; box-shadow: 0 0 20px rgba(59,130,246,0.2); }
.ps-scroll-title { display: block; font-size: 12px; color: #e2e8f0; margin-top: 8px; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* 2列大图+侧栏 */
.ps-layout-2col { max-width: 1200px; margin: 0 auto; padding: 30px 20px; display: grid; grid-template-columns: 1fr 300px; gap: 30px; position: relative; z-index: 3; }
.ps-content-main { }
.ps-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* 毛玻璃卡片 */
.ps-card { background: rgba(15,15,46,0.6); backdrop-filter: blur(8px); border: 1px solid rgba(59,130,246,0.12); border-radius: 24px; box-shadow: 0 0 8px rgba(59,130,246,0.05); }
.ps-card:hover { border-color: #3b82f6; box-shadow: 0 0 24px rgba(59,130,246,0.2), inset 0 0 16px rgba(59,130,246,0.05); }
.ps-card-poster { border-radius: 24px 24px 0 0; }

/* 详情页: 海报全屏模糊背景+浮层 */
.ps-show-backdrop { position: relative; min-height: 400px; overflow: hidden; z-index: 3; }
.ps-backdrop-img { position: absolute; top: -10%; left: -10%; width: 120%; height: 120%; object-fit: cover; filter: blur(30px) brightness(0.3) saturate(0.6); }
.ps-backdrop-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(5,5,16,0.3) 0%, rgba(5,5,16,0.9) 100%); }
.ps-backdrop-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 60px 20px 40px; display: flex; gap: 30px; }
.ps-show-poster { flex-shrink: 0; width: 200px; position: relative; }
.ps-show-poster img { width: 100%; border-radius: 16px; border: 1px solid rgba(59,130,246,0.2); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.ps-show-detail { flex: 1; }
.ps-show-title { font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 12px; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.ps-show-score { margin-bottom: 12px; }
.ps-show-score strong { font-size: 28px; color: #60a5fa; font-weight: 800; }
.ps-show-score em { font-size: 12px; color: rgba(255,255,255,0.5); font-style: normal; margin-left: 6px; }
.ps-show-chips { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.ps-show-actions { display: flex; gap: 12px; margin-top: 20px; }

/* 响应式 */
@media (max-width: 1100px) {
    .ps-layout-2col { grid-template-columns: 1fr; }
    .ps-backdrop-content { flex-direction: column; align-items: center; text-align: center; padding-top: 80px; }
    .ps-show-poster { width: 160px; }
    .ps-show-chips { justify-content: center; }
    .ps-show-actions { justify-content: center; }
    .ps-grid-related { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .ps-nav { display: none; }
    .ps-search { display: none; }
    .ps-burger { display: flex; }
    .ps-mobile-nav.active { display: flex; }
    .ps-hero-big { height: 40vh; min-height: 300px; }
    .ps-hero-title { font-size: 30px; }
    .ps-grid-2 { grid-template-columns: 1fr; }
    .ps-show-title { font-size: 24px; }
    .ps-show-actions { flex-direction: column; }
    .ps-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .ps-grid-related { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .ps-capsule { border-radius: 16px; padding: 0 16px; }
    .ps-hero-title { font-size: 22px; }
    .ps-hero-big { height: 35vh; }
    .ps-show-poster { width: 120px; }
    .ps-show-title { font-size: 20px; }
    .ps-eps-grid { grid-template-columns: repeat(4, 1fr); }
    .ps-feature-grid { grid-template-columns: 1fr; }
    .ps-grid-related { grid-template-columns: repeat(2, 1fr); }
}
