/* ============================================
   公共基础
   ============================================ */
* { 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: #0d0d0d; color: #a8a29e; line-height: 1.6; }
a { color: #dc2626; text-decoration: none; }
a:hover { color: #ef4444; }
img { max-width: 100%; height: auto; }

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

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

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

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

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

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

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

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

/* 分页 */
.dn-pager { display: flex; gap: 6px; margin-top: 20px; justify-content: center; flex-wrap: wrap; }
.dn-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 #2d2d2d; }
.dn-page-item:hover { border-color: #dc2626; color: #ef4444; }
.dn-page-item.active { background: #dc2626; color: #fff; border-color: transparent; }

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

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

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

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

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

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

/* FAQ */
.dn-faq-item { margin-bottom: 16px; padding: 16px; background: rgba(220,38,38,0.04); border: 1px solid #2d2d2d; border-radius: 8px; }
.dn-faq-item:last-child { margin-bottom: 0; }
.dn-faq-q { font-size: 14px; font-weight: 600; color: #ef4444; margin-bottom: 8px; }
.dn-faq-a { font-size: 13px; color: #666; line-height: 1.6; }
.dn-faq-a p { margin: 0; }
.dn-faq-a a { color: #dc2626; text-decoration: none; }

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

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

/* ============================================
   模板6: 暗网迷踪 - 独特布局
   ============================================ */

/* 导航: 左上角汉堡 + 全屏覆盖导航 */
.dn-header { position: sticky; top: 0; z-index: 100; background: rgba(13,13,13,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid #2d2d2d; }
.dn-header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; height: 56px; gap: 20px; }
.dn-menu-trigger { background: none; border: 1px solid #2d2d2d; cursor: pointer; display: flex; flex-direction: column; gap: 5px; padding: 8px; border-radius: 4px; transition: 0.2s; }
.dn-menu-trigger:hover { border-color: #dc2626; }
.dn-menu-trigger span { width: 20px; height: 2px; background: #ef4444; transition: 0.3s; }
.dn-logo { margin: 0; }
.dn-logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #a8a29e; }
.dn-logo img { height: 32px; width: auto; }
.dn-logo-text { font-size: 17px; font-weight: 700; color: #dc2626; }
.dn-search { display: flex; align-items: center; margin-left: auto; }
.dn-search-input { width: 200px; padding: 8px 14px; border: 1px solid #2d2d2d; border-radius: 4px; font-size: 14px; background: rgba(255,255,255,0.03); color: #a8a29e; transition: 0.2s; }
.dn-search-input:focus { outline: none; border-color: #dc2626; }
.dn-search-input::placeholder { color: #444; }
.dn-search-btn { background: none; border: none; cursor: pointer; color: #dc2626; padding: 4px; }

/* 全屏覆盖导航 */
.dn-overlay-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(13,13,13,0.98); z-index: 200; align-items: center; justify-content: center; }
.dn-overlay-nav.active { display: flex; }
.dn-overlay-inner { text-align: center; }
.dn-overlay-link { display: block; padding: 20px; text-decoration: none; color: #555; font-size: 24px; font-weight: 700; transition: 0.2s; letter-spacing: 4px; }
.dn-overlay-link:hover { color: #dc2626; text-shadow: 0 0 20px rgba(220,38,38,0.4); }

/* 首页: 全屏分区 */
.dn-hero-full { background: radial-gradient(ellipse at 50% 50%, rgba(220,38,38,0.06) 0%, transparent 60%); padding: 60px 20px; text-align: center; border-bottom: 1px solid #2d2d2d; position: relative; z-index: 3; }
.dn-hero-inner { max-width: 1200px; margin: 0 auto; }
.dn-hero-title { font-size: 36px; font-weight: 900; color: #dc2626; margin-bottom: 12px; }
.dn-hero-desc { font-size: 15px; color: rgba(168,162,158,0.5); margin-bottom: 16px; }
.dn-hero-counter { display: flex; justify-content: center; gap: 24px; font-size: 13px; color: #555; }
.dn-hero-counter span { color: #ef4444; }

.dn-fullwidth { max-width: 1200px; margin: 0 auto; padding: 30px 20px; position: relative; z-index: 3; }
.dn-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* 分区交替背景 */
.dn-section-dark { background: rgba(0,0,0,0.3); padding: 30px 20px; margin: 0 -20px 30px; }
.dn-section-alt { background: rgba(220,38,38,0.02); padding: 30px 20px; margin: 0 -20px 30px; border-top: 1px solid #2d2d2d; border-bottom: 1px solid #2d2d2d; }

/* 极简卡片 + hover闪烁 */
.dn-card { border: 1px solid #2d2d2d; border-radius: 4px; }
.dn-card:hover { border-color: #dc2626; animation: dnBlink 0.6s ease-in-out; }
@keyframes dnBlink { 0%,100% { border-color: #dc2626; } 50% { border-color: transparent; } }

/* 列表页: 表格式列表 + 侧栏 */
.dn-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; }
.dn-content-main { }

.dn-table-list { border: 1px solid #2d2d2d; border-radius: 4px; overflow: hidden; }
.dn-table-header { display: grid; grid-template-columns: 60px 1fr 2fr 80px 60px; gap: 12px; padding: 12px 16px; background: rgba(220,38,38,0.06); border-bottom: 1px solid #2d2d2d; font-size: 12px; font-weight: 700; color: #ef4444; }
.dn-table-row { display: grid; grid-template-columns: 60px 1fr 2fr 80px 60px; gap: 12px; padding: 12px 16px; border-bottom: 1px solid rgba(45,45,45,0.5); text-decoration: none; color: #a8a29e; font-size: 13px; transition: 0.2s; align-items: center; }
.dn-table-row:hover { background: rgba(220,38,38,0.04); }
.dn-table-row:last-child { border-bottom: none; }
.dn-td-poster { width: 45px; height: 60px; overflow: hidden; border-radius: 2px; }
.dn-td-poster img { width: 100%; height: 100%; object-fit: cover; }
.dn-td-title { font-weight: 600; color: #a8a29e; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dn-td-info { color: #555; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dn-td-date { color: #555; font-size: 12px; }
.dn-td-score { color: #ef4444; font-weight: 700; }

/* 详情页: 终端代码风格 */
.dn-terminal-info { max-width: 1200px; margin: 0 auto; padding: 30px 20px; position: relative; z-index: 3; }
.dn-terminal-header { background: #1a1a1a; border: 1px solid #2d2d2d; border-bottom: none; border-radius: 4px 4px 0 0; padding: 10px 16px; display: flex; align-items: center; gap: 8px; }
.dn-terminal-dot { width: 12px; height: 12px; border-radius: 50%; }
.dn-dot-r { background: #ef4444; }
.dn-dot-y { background: #eab308; }
.dn-dot-g { background: #22c55e; }
.dn-terminal-path { margin-left: 12px; font-size: 12px; color: #555; font-family: "Courier New", monospace; }
.dn-terminal-body { background: rgba(0,0,0,0.5); border: 1px solid #2d2d2d; border-radius: 0 0 4px 4px; padding: 24px; }
.dn-terminal-row { display: flex; gap: 24px; }
.dn-show-poster { flex-shrink: 0; width: 180px; }
.dn-show-poster img { width: 100%; border: 1px solid #2d2d2d; border-radius: 2px; }
.dn-show-code { flex: 1; font-family: "Courier New", "Fira Code", monospace; }
.dn-show-title { font-size: 24px; font-weight: 800; color: #dc2626; margin-bottom: 16px; }
.dn-prompt { color: #ef4444; margin-right: 8px; }
.dn-code-line { margin-bottom: 6px; font-size: 13px; }
.dn-key { color: #ef4444; }
.dn-val { color: #a8a29e; }
.dn-val-link { color: #dc2626; text-decoration: none; }
.dn-val-link:hover { text-decoration: underline; }
.dn-blink { animation: dnStatusBlink 1.5s infinite; }
@keyframes dnStatusBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.dn-show-actions { display: flex; gap: 12px; margin-top: 20px; }

/* 响应式 */
@media (max-width: 1100px) {
    .dn-layout-2col { grid-template-columns: 1fr; }
    .dn-table-header, .dn-table-row { grid-template-columns: 50px 1fr 80px 60px; }
    .dn-th-info, .dn-td-info { display: none; }
    .dn-terminal-row { flex-direction: column; }
    .dn-show-poster { width: 140px; }
    .dn-grid-related { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .dn-search { display: none; }
    .dn-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .dn-hero-title { font-size: 24px; }
    .dn-overlay-link { font-size: 18px; padding: 16px; }
    .dn-show-title { font-size: 20px; }
    .dn-show-actions { flex-direction: column; }
    .dn-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .dn-grid-related { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .dn-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .dn-hero-title { font-size: 20px; }
    .dn-table-header, .dn-table-row { grid-template-columns: 1fr 60px; }
    .dn-th-poster, .dn-td-poster, .dn-th-date, .dn-td-date { display: none; }
    .dn-show-title { font-size: 18px; }
    .dn-eps-grid { grid-template-columns: repeat(4, 1fr); }
    .dn-feature-grid { grid-template-columns: 1fr; }
    .dn-grid-related { grid-template-columns: repeat(2, 1fr); }
}
