/* ================= 1. 全局变量与重置 (千站千面基石) ================= */
:root {
    --bg-main: #0a0c10;
    --bg-card: #161821;
    --bg-soft: #202020;
    --border-color: #2a2a2a;
    --text-main: #e1e6f0;
    --text-muted: #8b92a5;
    --accent: #00d6eb;
    --accent-2: #d4a64f;
    --accent-soft: rgba(255,255,255,0.06);
    --accent-gradient: linear-gradient(135deg, #e50914 0%, #d4a64f 100%);
    --surface-gradient: linear-gradient(180deg, #202020 0%, #181818 100%);
    --radius: 8px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; overflow-x: hidden; }
body { background-color: var(--bg-main); color: var(--text-main); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6, p, a, span, strong, div { overflow-wrap: break-word; word-break: break-word; }

/* ================= 2. 网站头部 (Header) 磐石稳定版 ================= */
.site-header_efffc, .global-head_efffc, .top-navbar_efffc { background: var(--surface-gradient); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.site-header_efffc::after, .global-head_efffc::after, .top-navbar_efffc::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: var(--accent-gradient); opacity: 0.65; pointer-events: none; }
.header-inner_efffc { max-width: 1400px; margin: 0 auto; padding: 0 4%; height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.site-logo_efffc { flex-shrink: 0; display: flex; align-items: center; }
.site-logo_efffc a { font-size: 22px; font-weight: 800; color: var(--text-main); display: flex; align-items: center; gap: 8px; }
.site-logo_efffc img { height: 34px; width: auto; display: block; }

.site-nav_efffc, .main-menu_efffc, .nav-container_efffc { flex: 1; display: flex; justify-content: center; }
.site-nav_efffc ul, .main-menu_efffc ul, .nav-container_efffc ul { display: flex; gap: 25px; align-items: center; margin: 0; padding: 0; }
.site-nav_efffc a, .main-menu_efffc a, .nav-container_efffc a { color: var(--text-main); font-size: 16px; font-weight: 500; transition: color 0.2s; white-space: nowrap; }
.site-nav_efffc a:hover, .main-menu_efffc a:hover, .nav-container_efffc a:hover { color: var(--accent); }

.site-search_efffc, .search-box_efffc, .head-search_efffc { flex-shrink: 0; display: flex; align-items: center; }
.site-search_efffc form, .search-box_efffc form, .head-search_efffc form { display: flex; background: var(--bg-main); border-radius: 20px; overflow: hidden; border: 1px solid var(--border-color); transition: all 0.3s; }
.site-search_efffc form:focus-within, .search-box_efffc form:focus-within, .head-search_efffc form:focus-within { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-soft); }
.site-search_efffc input, .search-box_efffc input, .head-search_efffc input { background: transparent; border: none; color: var(--text-main); padding: 8px 16px; width: 160px; outline: none; font-size: 14px; }
.site-search_efffc button, .search-box_efffc button, .head-search_efffc button { background: var(--accent-gradient); color: #fff; border: none; padding: 8px 18px; cursor: pointer; font-weight: 600; font-size: 14px; }

@media (max-width: 800px) {
    .site-header_efffc, .global-head_efffc, .top-navbar_efffc { height: auto; }
    .header-inner_efffc { display: flex; flex-wrap: wrap; gap: 12px 10px; padding: 12px 4%; height: auto; width: 100%; max-width: 100%; }
    .site-logo_efffc { order: 1; flex: 0 0 auto; align-self: center; margin: 0; }
    .site-logo_efffc img { height: 28px; }
    .site-search_efffc, .search-box_efffc, .head-search_efffc { order: 2; flex: 1 1 140px; min-width: 0; max-width: none; align-self: center; margin: 0; width: auto; }
    .site-search_efffc form, .search-box_efffc form, .head-search_efffc form { width: 100%; min-width: 0; display: flex; }
    .site-search_efffc input, .search-box_efffc input, .head-search_efffc input { flex: 1; min-width: 0; width: 0; padding: 6px 12px; }
    .site-search_efffc button, .search-box_efffc button, .head-search_efffc button { padding: 6px 12px; }
    .site-nav_efffc, .main-menu_efffc, .nav-container_efffc { order: 3; flex: 0 0 100%; width: 100%; min-width: 0; margin: 0; justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 5px; }
    .site-nav_efffc ul, .main-menu_efffc ul, .nav-container_efffc ul { display: flex; flex-wrap: nowrap; gap: 20px; }
    .site-nav_efffc li, .main-menu_efffc li, .nav-container_efffc li { flex-shrink: 0; } 
    .site-nav_efffc::-webkit-scrollbar, .main-menu_efffc::-webkit-scrollbar, .nav-container_efffc::-webkit-scrollbar { display: none; }
}

/* ================= 3. 核心容器与通用类 ================= */
.container_efffc { width: 100%; max-width: 1200px; margin: 30px auto; padding: 0 4%; min-height: 70vh; }
.home-block_efffc, .idx-section_efffc, .mod-wrap_efffc { margin-bottom: 40px; }
.section-title_efffc, .mod-title_efffc, .idx-h2_efffc { font-size: 20px; margin-bottom: 20px; color: var(--text-main); display: flex; align-items: center; gap: 10px; border:none; padding:0; }
.section-title_efffc::before, .mod-title_efffc::before, .idx-h2_efffc::before { content: ""; width: 4px; height: 18px; background: var(--accent); border-radius: 2px; display:none; }

/* ================= 4. 影视列表排版引擎 (Grid / List) ================= */
.post-card_efffc, .item-card_efffc, .vod-item_efffc, .list-item_efffc { background: var(--surface-gradient); border-radius: var(--radius); overflow: hidden; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
.post-thumb_efffc, .pic-box_efffc, .cover-wrap_efffc, .img-box_efffc { position: relative; background: var(--bg-soft); overflow: hidden; }
.theme-dark .post-thumb_efffc, .theme-dark .pic-box_efffc, .theme-dark .cover-wrap_efffc, .theme-dark .img-box_efffc { background: var(--bg-soft); }
.post-thumb_efffc img, .pic-box_efffc img, .cover-wrap_efffc img, .img-box_efffc img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }

.post-card_efffc:hover .post-thumb_efffc img, .post-card_efffc:hover .pic-box_efffc img, .post-card_efffc:hover .cover-wrap_efffc img, .post-card_efffc:hover .img-box_efffc img,
.item-card_efffc:hover .post-thumb_efffc img, .item-card_efffc:hover .pic-box_efffc img, .item-card_efffc:hover .cover-wrap_efffc img, .item-card_efffc:hover .img-box_efffc img,
.vod-item_efffc:hover .post-thumb_efffc img, .vod-item_efffc:hover .pic-box_efffc img, .vod-item_efffc:hover .cover-wrap_efffc img, .vod-item_efffc:hover .img-box_efffc img,
.list-item_efffc:hover .post-thumb_efffc img, .list-item_efffc:hover .pic-box_efffc img, .list-item_efffc:hover .cover-wrap_efffc img, .list-item_efffc:hover .img-box_efffc img { transform: scale(1.05); }

.post-info_efffc, .detail-box_efffc, .item-info_efffc, .text-wrap_efffc { display: flex; flex-direction: column; justify-content: center; }
.post-title_efffc, .item-name_efffc, .vod-title_efffc, .h-title_efffc { font-weight: 600; color: var(--text-main); transition: color 0.2s; }

.post-card_efffc:hover .post-title_efffc, .post-card_efffc:hover .item-name_efffc, .post-card_efffc:hover .vod-title_efffc, .post-card_efffc:hover .h-title_efffc,
.item-card_efffc:hover .post-title_efffc, .item-card_efffc:hover .item-name_efffc, .item-card_efffc:hover .vod-title_efffc, .item-card_efffc:hover .h-title_efffc,
.vod-item_efffc:hover .post-title_efffc, .vod-item_efffc:hover .item-name_efffc, .vod-item_efffc:hover .vod-title_efffc, .vod-item_efffc:hover .h-title_efffc,
.list-item_efffc:hover .post-title_efffc, .list-item_efffc:hover .item-name_efffc, .list-item_efffc:hover .vod-title_efffc, .list-item_efffc:hover .h-title_efffc { color: var(--accent); }

.post-meta_efffc, .item-meta_efffc, .vod-meta_efffc, .meta-info_efffc { font-size: 12px; color: var(--text-muted); display: flex; justify-content: space-between; align-items: center; }

.theme-dark .post-card_efffc, .theme-dark .item-card_efffc, .theme-dark .vod-item_efffc, .theme-dark .list-item_efffc { border: 1px solid var(--border-color); }
.theme-dark .post-card_efffc:hover, .theme-dark .item-card_efffc:hover, .theme-dark .vod-item_efffc:hover, .theme-dark .list-item_efffc:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 10px 20px rgba(0,0,0,0.42); }
.theme-light .post-card_efffc, .theme-light .item-card_efffc, .theme-light .vod-item_efffc, .theme-light .list-item_efffc { border: 1px solid var(--border-color); box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.theme-light .post-card_efffc:hover, .theme-light .item-card_efffc:hover, .theme-light .vod-item_efffc:hover, .theme-light .list-item_efffc:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }

.layout-grid_efffc .post-list_efffc, .layout-grid_efffc .movie-grid-wrap_efffc, .layout-grid_efffc .resource-list_efffc { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 24px 18px; }
.layout-grid_efffc .post-card_efffc a, .layout-grid_efffc .item-card_efffc a, .layout-grid_efffc .vod-item_efffc a, .layout-grid_efffc .list-item_efffc a { display: flex; flex-direction: column; height: 100%; }
.layout-grid_efffc .post-thumb_efffc, .layout-grid_efffc .pic-box_efffc, .layout-grid_efffc .cover-wrap_efffc, .layout-grid_efffc .img-box_efffc { width: 100%; aspect-ratio: 2 / 3; }
.layout-grid_efffc .post-info_efffc, .layout-grid_efffc .detail-box_efffc, .layout-grid_efffc .item-info_efffc, .layout-grid_efffc .text-wrap_efffc { padding: 14px 10px; }
.layout-grid_efffc .post-title_efffc, .layout-grid_efffc .item-name_efffc, .layout-grid_efffc .vod-title_efffc, .layout-grid_efffc .h-title_efffc { font-size: 15px; margin-bottom: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.layout-list_efffc .post-list_efffc, .layout-list_efffc .movie-grid-wrap_efffc, .layout-list_efffc .resource-list_efffc { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.layout-list_efffc .post-card_efffc, .layout-list_efffc .item-card_efffc, .layout-list_efffc .vod-item_efffc, .layout-list_efffc .list-item_efffc { height: 100%; } 
.layout-list_efffc .post-card_efffc a, .layout-list_efffc .item-card_efffc a, .layout-list_efffc .vod-item_efffc a, .layout-list_efffc .list-item_efffc a { display: flex; flex-direction: row; padding: 15px; gap: 18px; align-items: center; height: 100%; }
.layout-list_efffc .post-thumb_efffc, .layout-list_efffc .pic-box_efffc, .layout-list_efffc .cover-wrap_efffc, .layout-list_efffc .img-box_efffc { width: 120px; aspect-ratio: 3 / 4; flex-shrink: 0; border-radius: calc(var(--radius) * 0.8); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.layout-list_efffc .post-info_efffc, .layout-list_efffc .detail-box_efffc, .layout-list_efffc .item-info_efffc, .layout-list_efffc .text-wrap_efffc { padding: 5px 0; flex: 1; min-width: 0; display: flex; flex-direction: column; height: 100%; }
.layout-list_efffc .post-title_efffc, .layout-list_efffc .item-name_efffc, .layout-list_efffc .vod-title_efffc, .layout-list_efffc .h-title_efffc { font-size: 17px; line-height: 1.5; white-space: normal; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-bottom: 12px; }
.layout-list_efffc .post-meta_efffc, .layout-list_efffc .item-meta_efffc, .layout-list_efffc .vod-meta_efffc, .layout-list_efffc .meta-info_efffc { background: var(--bg-soft); padding: 4px 10px; border-radius: 4px; display: inline-flex; width: fit-content; gap: 15px; margin-top: auto; }

.movie-card-tags_efffc { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 10px; }
.movie-card-tag_efffc { color: var(--accent); background: var(--accent-soft); border: 1px solid var(--border-color); border-radius: 4px; padding: 2px 8px; font-size: 12px; line-height: 1.6; max-width: 120px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.movie-card-facts_efffc { display: grid; grid-template-columns: 1fr; gap: 5px; margin: 0 0 10px; color: var(--text-muted); font-size: 12px; line-height: 1.55; }
.movie-card-line_efffc { display: flex; align-items: baseline; gap: 6px; min-width: 0; }
.movie-card-label_efffc { flex: 0 0 auto; color: var(--text-main); opacity: 0.72; font-weight: 600; }
.movie-card-value_efffc { flex: 1; min-width: 0; color: var(--text-muted); font-style: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.movie-card-desc_efffc { margin: 0 0 12px; color: var(--text-muted); font-size: 13px; line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.layout-grid_efffc .movie-card-tags_efffc, .layout-grid_efffc .movie-card-facts_efffc, .layout-grid_efffc .movie-card-desc_efffc { display: none; }
.layout-list_efffc .post-card_efffc a, .layout-list_efffc .item-card_efffc a, .layout-list_efffc .vod-item_efffc a, .layout-list_efffc .list-item_efffc a { align-items: stretch; min-height: 178px; }

@media (max-width: 800px) {
    .layout-list_efffc .post-list_efffc, .layout-list_efffc .movie-grid-wrap_efffc, .layout-list_efffc .resource-list_efffc { grid-template-columns: 1fr; gap: 12px; }
    .layout-list_efffc .post-card_efffc a, .layout-list_efffc .item-card_efffc a, .layout-list_efffc .vod-item_efffc a, .layout-list_efffc .list-item_efffc a { padding: 10px; gap: 12px; }
    .layout-list_efffc .post-thumb_efffc, .layout-list_efffc .pic-box_efffc, .layout-list_efffc .cover-wrap_efffc, .layout-list_efffc .img-box_efffc { width: 90px; }
    .layout-list_efffc .post-title_efffc, .layout-list_efffc .item-name_efffc, .layout-list_efffc .vod-title_efffc, .layout-list_efffc .h-title_efffc { font-size: 15px; margin-bottom: 8px; }
    .layout-list_efffc .movie-card-tags_efffc, .layout-list_efffc .movie-card-facts_efffc, .layout-list_efffc .movie-card-desc_efffc { display: none; }
    .layout-list_efffc .post-card_efffc a, .layout-list_efffc .item-card_efffc a, .layout-list_efffc .vod-item_efffc a, .layout-list_efffc .list-item_efffc a { min-height: 0; }
}

/* ================= 4.5. 资讯纯文本板块优化 ================= */
.news-list_efffc, .txt-list-box_efffc, .article-feed_efffc { display: flex; flex-direction: column; background: var(--bg-card); border-radius: var(--radius); padding: 10px 20px; border: 1px solid transparent; }
.theme-dark .news-list_efffc, .theme-dark .txt-list-box_efffc, .theme-dark .article-feed_efffc { border-color: var(--border-color); }
.theme-light .news-list_efffc, .theme-light .txt-list-box_efffc, .theme-light .article-feed_efffc { border-color: var(--border-color); box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.news-item_efffc, .article-line_efffc, .list-row_efffc, .txt-item_efffc { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px dashed var(--border-color); }
.news-item_efffc:last-child, .article-line_efffc:last-child, .list-row_efffc:last-child, .txt-item_efffc:last-child { border-bottom: none; }
.news-title_efffc, .txt-title_efffc, .line-name_efffc, .feed-title_efffc { font-size: 15px; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; margin-right: 20px; transition: color 0.2s; }
.news-item_efffc:hover .news-title_efffc, .article-line_efffc:hover .txt-title_efffc, .list-row_efffc:hover .line-name_efffc, .txt-item_efffc:hover .feed-title_efffc { color: var(--accent); padding-left: 5px; }
.news-title_efffc::before, .txt-title_efffc::before, .line-name_efffc::before, .feed-title_efffc::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; margin-right: 12px; vertical-align: middle; }
.news-date_efffc, .txt-time_efffc, .line-date_efffc, .feed-time_efffc { font-size: 13px; color: var(--text-muted); flex-shrink: 0; font-family: monospace; }

@media (max-width: 768px) {
    .header-inner_efffc { padding: 10px 4%; }
    .site-nav_efffc, .main-menu_efffc, .nav-container_efffc { order: 3; width: 100%; margin-top: 10px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .site-nav_efffc ul, .main-menu_efffc ul, .nav-container_efffc ul { width: max-content; gap: 15px; }
    .site-nav_efffc a, .main-menu_efffc a, .nav-container_efffc a { font-size: 14px; white-space: nowrap; }
    .site-search_efffc input, .search-box_efffc input, .head-search_efffc input { width: 120px; }
    
    .container_efffc { margin: 15px auto; }
    .section-title_efffc, .mod-title_efffc, .idx-h2_efffc { font-size: 18px; }

    .layout-grid_efffc .post-list_efffc, .layout-grid_efffc .movie-grid-wrap_efffc, .layout-grid_efffc .resource-list_efffc { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .layout-grid_efffc .post-info_efffc, .layout-grid_efffc .detail-box_efffc, .layout-grid_efffc .item-info_efffc, .layout-grid_efffc .text-wrap_efffc { padding: 8px; }
    .layout-grid_efffc .post-title_efffc, .layout-grid_efffc .item-name_efffc, .layout-grid_efffc .vod-title_efffc, .layout-grid_efffc .h-title_efffc { font-size: 13px; }
    .layout-grid_efffc .post-meta_efffc, .layout-grid_efffc .item-meta_efffc, .layout-grid_efffc .vod-meta_efffc, .layout-grid_efffc .meta-info_efffc { font-size: 11px; }

    .layout-list_efffc .post-card_efffc a, .layout-list_efffc .item-card_efffc a, .layout-list_efffc .vod-item_efffc a, .layout-list_efffc .list-item_efffc a { height: 110px; }
    .layout-list_efffc .post-thumb_efffc, .layout-list_efffc .pic-box_efffc, .layout-list_efffc .cover-wrap_efffc, .layout-list_efffc .img-box_efffc { width: 75px; }
    .layout-list_efffc .post-title_efffc, .layout-list_efffc .item-name_efffc, .layout-list_efffc .vod-title_efffc, .layout-list_efffc .h-title_efffc { font-size: 14px; }
    .article-related_efffc .post-list_efffc, .article-related_efffc .movie-grid-wrap_efffc, .article-related_efffc .resource-list_efffc { grid-template-columns: 1fr !important; gap: 10px; }
    .article-related_efffc .post-card_efffc a, .article-related_efffc .item-card_efffc a, .article-related_efffc .vod-item_efffc a, .article-related_efffc .list-item_efffc a { min-height: 96px !important; padding: 9px !important; gap: 10px !important; }
    .article-related_efffc .post-thumb_efffc, .article-related_efffc .pic-box_efffc, .article-related_efffc .cover-wrap_efffc, .article-related_efffc .img-box_efffc { width: 68px !important; max-width: 68px !important; flex-basis: 68px !important; }
}

@media (max-width: 480px) {
    .header-inner_efffc { gap: 10px; padding: 10px 16px; }
    .site-logo_efffc { flex: 0 0 auto; }
    .site-logo_efffc a { font-size: 18px; gap: 6px; }
    .site-logo_efffc img { height: 26px; }
    .site-search_efffc, .search-box_efffc, .head-search_efffc { min-width: 0; max-width: 240px; width: auto; flex: 1 1 170px; margin-left: auto; justify-self: stretch; }
    .site-search_efffc form, .search-box_efffc form, .head-search_efffc form { min-width: 0; width: 100%; }
    .site-search_efffc input, .search-box_efffc input, .head-search_efffc input { min-width: 0; width: 0; flex: 1; padding: 6px 8px; }
    .site-search_efffc button, .search-box_efffc button, .head-search_efffc button { width: 42px; padding: 6px 0; flex: 0 0 42px; }
}

@media (max-width: 360px) {
    .site-logo_efffc { flex-basis: 100%; }
    .site-logo_efffc a { font-size: 16px; }
    .site-search_efffc, .search-box_efffc, .head-search_efffc { max-width: none; flex-basis: 100%; margin-left: 0; }
    .site-search_efffc button, .search-box_efffc button, .head-search_efffc button { width: 38px; flex-basis: 38px; }
}

.article-page_efffc { width: 100%; margin-left: auto; margin-right: auto; }
.article-shell_efffc { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; align-items: start; }
.article-card_efffc { background: var(--surface-gradient); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 34px; box-shadow: 0 18px 42px rgba(0,0,0,0.18); }
.fx-flat .article-card_efffc { background: var(--bg-card); }
.article-kicker_efffc { border-bottom: 1px solid var(--border-color); padding-bottom: 14px; }
.article-card_efffc .article-header_efffc, .article-card_efffc .post-header_efffc, .article-card_efffc .detail-head_efffc { text-align: left; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--border-color); }
.article-card_efffc .article-meta_efffc, .article-card_efffc .post-meta-info_efffc, .article-card_efffc .detail-meta_efffc { display: flex; flex-wrap: wrap; gap: 14px; color: var(--text-muted); font-size: 14px; }
.article-side_efffc { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 18px; }
.article-side-block_efffc { background: var(--surface-gradient); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 20px; box-shadow: 0 14px 34px rgba(0,0,0,0.14); }
.fx-flat .article-side-block_efffc { background: var(--bg-card); }
.article-side-block_efffc h2 { font-size: 16px; margin: 0 0 14px; padding-left: 10px; border-left: 4px solid var(--accent); color: var(--text-main); }
.article-side-list_efffc { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.article-side-list_efffc li { display: grid; gap: 4px; padding-bottom: 10px; border-bottom: 1px dashed var(--border-color); }
.article-side-list_efffc li:last-child { border-bottom: 0; padding-bottom: 0; }
.article-side-list_efffc a { color: var(--text-main); font-size: 14px; line-height: 1.55; }
.article-side-list_efffc time { color: var(--text-muted); font-size: 12px; }
.article-side-block_efffc div.article-side-list_efffc { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.article-side-block_efffc div.article-side-list_efffc a { background: var(--bg-soft); border: 1px solid var(--border-color); border-radius: 6px; color: var(--text-muted); padding: 8px 10px; text-align: center; }
.article-side-block_efffc div.article-side-list_efffc a:hover { color: #fff; border-color: var(--accent); background: var(--accent-gradient); }
.article-related_efffc { width: 100%; }
.article-related_efffc .section-title_efffc, .article-related_efffc .mod-title_efffc, .article-related_efffc .idx-h2_efffc { margin-bottom: 16px; }
.article-related_efffc .post-list_efffc, .article-related_efffc .movie-grid-wrap_efffc, .article-related_efffc .resource-list_efffc { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important; gap: 14px; width: 100%; }
.article-related_efffc .post-card_efffc, .article-related_efffc .item-card_efffc, .article-related_efffc .vod-item_efffc, .article-related_efffc .list-item_efffc { background: var(--surface-gradient) !important; border: 1px solid var(--border-color) !important; box-shadow: 0 8px 18px rgba(0,0,0,0.08) !important; }
.fx-flat .article-related_efffc .post-card_efffc, .fx-flat .article-related_efffc .item-card_efffc, .fx-flat .article-related_efffc .vod-item_efffc, .fx-flat .article-related_efffc .list-item_efffc { background: var(--bg-card) !important; }
.article-related_efffc .post-card_efffc a, .article-related_efffc .item-card_efffc a, .article-related_efffc .vod-item_efffc a, .article-related_efffc .list-item_efffc a { display: flex !important; flex-direction: row !important; align-items: center !important; gap: 12px !important; min-height: 112px !important; height: 100% !important; padding: 10px !important; }
.article-related_efffc .post-thumb_efffc, .article-related_efffc .pic-box_efffc, .article-related_efffc .cover-wrap_efffc, .article-related_efffc .img-box_efffc { width: 78px !important; max-width: 78px !important; aspect-ratio: 3 / 4 !important; flex: 0 0 78px !important; border-radius: 6px !important; box-shadow: none !important; }
.article-related_efffc .post-info_efffc, .article-related_efffc .detail-box_efffc, .article-related_efffc .item-info_efffc, .article-related_efffc .text-wrap_efffc { min-width: 0; padding: 0 !important; min-height: 0; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.article-related_efffc .post-title_efffc, .article-related_efffc .item-name_efffc, .article-related_efffc .vod-title_efffc, .article-related_efffc .h-title_efffc { white-space: normal !important; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.45; min-height: 0; font-size: 14px !important; }
.article-related_efffc .post-meta_efffc, .article-related_efffc .item-meta_efffc, .article-related_efffc .vod-meta_efffc, .article-related_efffc .meta-info_efffc { margin-top: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.article-related_efffc .post-meta_efffc span, .article-related_efffc .post-meta_efffc em, .article-related_efffc .post-meta_efffc b, .article-related_efffc .post-meta_efffc small,
.article-related_efffc .item-meta_efffc span, .article-related_efffc .item-meta_efffc em, .article-related_efffc .item-meta_efffc b, .article-related_efffc .item-meta_efffc small,
.article-related_efffc .vod-meta_efffc span, .article-related_efffc .vod-meta_efffc em, .article-related_efffc .vod-meta_efffc b, .article-related_efffc .vod-meta_efffc small,
.article-related_efffc .meta-info_efffc span, .article-related_efffc .meta-info_efffc em, .article-related_efffc .meta-info_efffc b, .article-related_efffc .meta-info_efffc small { display: inline-flex; align-items: center; min-width: 0; padding: 3px 7px; border-radius: 6px; background: var(--bg-soft); color: var(--text-muted); font-size: 12px; line-height: 1.2; }
@media (max-width: 768px) {
    .article-related_efffc .post-list_efffc, .article-related_efffc .movie-grid-wrap_efffc, .article-related_efffc .resource-list_efffc { grid-template-columns: 1fr !important; gap: 10px !important; }
    .article-related_efffc .post-card_efffc a, .article-related_efffc .item-card_efffc a, .article-related_efffc .vod-item_efffc a, .article-related_efffc .list-item_efffc a { min-height: 96px !important; padding: 9px !important; gap: 10px !important; }
    .article-related_efffc .post-thumb_efffc, .article-related_efffc .pic-box_efffc, .article-related_efffc .cover-wrap_efffc, .article-related_efffc .img-box_efffc { width: 68px !important; max-width: 68px !important; flex-basis: 68px !important; }
}

.movie-news-links_efffc { width: 100%; }
.movie-news-list_efffc { display: grid; gap: 16px; width: 100%; }
.movie-news-card_efffc { background: var(--surface-gradient); border: 1px solid var(--border-color); border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 28px rgba(0,0,0,0.12); transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.fx-flat .movie-news-card_efffc { background: var(--bg-card); }
.movie-news-card_efffc:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: 0 16px 34px rgba(0,0,0,0.16); }
.movie-news-card_efffc a { display: grid; gap: 10px; height: 100%; padding: 18px; }
.movie-news-card_efffc h3 { color: var(--text-main); font-size: 16px; line-height: 1.5; margin: 0; font-weight: 700; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.movie-news-card_efffc p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.movie-news-card_efffc time { color: var(--text-muted); font-size: 12px; background: var(--bg-soft); border: 1px solid var(--border-color); border-radius: 4px; padding: 3px 8px; width: fit-content; }
@media (max-width: 768px) { .movie-news-list_efffc[style] { grid-template-columns: 1fr !important; } .movie-news-card_efffc a { padding: 15px; } .movie-news-card_efffc h3 { font-size: 15px; } }

.article-header_efffc { text-align: center; margin-bottom: 30px; }
.article-header_efffc h1 { font-size: 28px; color: var(--text-main); margin-bottom: 10px; }
.article-content { font-size: 16px; color: var(--text-muted); line-height: 1.8; text-align: justify; }
.article-content p { margin-bottom: 20px; }
.article-content h3 { color: var(--text-main); margin: 30px 0 15px; border-left: 4px solid var(--accent); padding-left: 12px; }
.article-content img { border-radius: var(--radius); margin: 20px auto; }
@media (max-width: 1024px) { .article-shell_efffc { grid-template-columns: 1fr; } .article-side_efffc { position: static; } }
@media (max-width: 768px) { .article-card_efffc { padding: 20px; } .article-header_efffc h1 { font-size: 22px; text-align: left; } }

.news-item_efffc:hover, .article-line_efffc:hover, .list-row_efffc:hover, .txt-item_efffc:hover { background: var(--accent-soft); }

.section-header_efffc, .mod-head_efffc, .idx-title-box_efffc { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; }
.section-header_efffc .section-title_efffc, .mod-head_efffc .mod-title_efffc, .idx-title-box_efffc .idx-h2_efffc { margin-bottom: 0; border: none; padding: 0; }
.section-header_efffc .section-title_efffc strong, .mod-head_efffc .mod-title_efffc strong, .idx-title-box_efffc .idx-h2_efffc strong { border-left: 4px solid var(--accent); padding-left: 10px; display: inline-block; }
.section-more_efffc { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.section-more_efffc:hover { color: var(--accent); }

@media (max-width: 768px) {
    .news-title_efffc, .txt-title_efffc, .line-name_efffc, .feed-title_efffc { font-size: 14px; }
    .news-date_efffc, .txt-time_efffc, .line-date_efffc, .feed-time_efffc { display: none; } 
    .section-header_efffc, .mod-head_efffc, .idx-title-box_efffc { margin-bottom: 15px; }
}

.movie-1 .post-card_efffc, .movie-1 .item-card_efffc, .movie-1 .vod-item_efffc, .movie-1 .list-item_efffc { background: var(--surface-gradient) !important; border: 1px solid var(--border-color) !important; box-shadow: 0 12px 28px rgba(0,0,0,0.18) !important; }
.fx-flat.movie-1 .post-card_efffc, .fx-flat.movie-1 .item-card_efffc, .fx-flat.movie-1 .vod-item_efffc, .fx-flat.movie-1 .list-item_efffc { background: var(--bg-card) !important; }
.movie-1 .post-card_efffc:hover, .movie-1 .item-card_efffc:hover, .movie-1 .vod-item_efffc:hover, .movie-1 .list-item_efffc:hover { transform: translateY(-4px); border-color: var(--accent) !important; }
.movie-1 .post-info_efffc, .movie-1 .detail-box_efffc, .movie-1 .item-info_efffc, .movie-1 .text-wrap_efffc { padding: 12px 0 0 0; }
.movie-1.layout-list_efffc .post-card_efffc a, .movie-1.layout-list_efffc .item-card_efffc a, .movie-1.layout-list_efffc .vod-item_efffc a, .movie-1.layout-list_efffc .list-item_efffc a { padding: 14px; }

.news-1 .news-list_efffc, .news-1 .txt-list-box_efffc, .news-1 .article-feed_efffc { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; background: transparent; padding: 0; border: none; box-shadow: none; }
.news-1 .news-item_efffc, .news-1 .article-line_efffc, .news-1 .list-row_efffc, .news-1 .txt-item_efffc { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 18px; flex-direction: column; align-items: flex-start; gap: 12px; }
.theme-light.news-1 .news-item_efffc, .theme-light.news-1 .article-line_efffc, .theme-light.news-1 .list-row_efffc, .theme-light.news-1 .txt-item_efffc { box-shadow: 0 2px 10px rgba(0,0,0,0.03); border-color: var(--border-color); }
.news-1 .news-item_efffc:hover, .news-1 .article-line_efffc:hover, .news-1 .list-row_efffc:hover, .news-1 .txt-item_efffc:hover { transform: translateY(-2px); border-color: var(--accent); }
.news-1 .news-title_efffc, .news-1 .txt-title_efffc, .news-1 .line-name_efffc, .news-1 .feed-title_efffc { white-space: normal; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; font-size: 16px; font-weight: 600; line-height: 1.5; margin-right: 0; }
.news-1 .news-title_efffc::before, .news-1 .txt-title_efffc::before, .news-1 .line-name_efffc::before, .news-1 .feed-title_efffc::before { display: none; }
.news-1 .news-date_efffc, .news-1 .txt-time_efffc, .news-1 .line-date_efffc, .news-1 .feed-time_efffc { font-size: 12px; background: var(--bg-soft); padding: 3px 8px; border-radius: 4px; }
@media (max-width: 768px) { .news-1 .news-list_efffc, .news-1 .txt-list-box_efffc, .news-1 .article-feed_efffc { grid-template-columns: 1fr; } .news-1 .news-date_efffc, .news-1 .txt-time_efffc, .news-1 .line-date_efffc, .news-1 .feed-time_efffc { display: inline-block; } }

.footer-1 .footer-inner_efffc { display: block; text-align: left; }
.footer-grid_efffc { width: 100%; align-items: start; }
@media (max-width: 768px) { .footer-grid_efffc { display: grid !important; grid-template-columns: 1fr !important; gap: 22px !important; } .site-footer_efffc .footer-inner_efffc { padding-left: 20px !important; padding-right: 20px !important; } }
.site-footer_efffc { position: relative; }
.site-footer_efffc::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--accent-gradient); opacity: 0.65; pointer-events: none; }

.pagination_efffc, .page-nav_efffc, .site-pager_efffc, .page-wrap_efffc { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px; margin: 50px 0 20px; padding: 0; }
.pagination_efffc a, .page-nav_efffc a, .site-pager_efffc a, .page-wrap_efffc a,
.pagination_efffc span, .page-nav_efffc span, .site-pager_efffc span, .page-wrap_efffc span { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 12px; border-radius: var(--radius); background: var(--bg-card); color: var(--text-main); font-size: 14px; font-weight: 500; border: 1px solid transparent; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: 0 2px 8px rgba(0,0,0,0.02); }

.theme-dark .pagination_efffc a, .theme-dark .page-nav_efffc a, .theme-dark .site-pager_efffc a, .theme-dark .page-wrap_efffc a { border-color: rgba(255,255,255,0.05); }
.theme-light .pagination_efffc a, .theme-light .page-nav_efffc a, .theme-light .site-pager_efffc a, .theme-light .page-wrap_efffc a { border-color: rgba(0,0,0,0.06); }
.pagination_efffc a:hover, .page-nav_efffc a:hover, .site-pager_efffc a:hover, .page-wrap_efffc a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0,0,0,0.1); }
.pagination_efffc span.current, .page-nav_efffc span.current, .site-pager_efffc span.current, .page-wrap_efffc span.current { background: var(--accent-gradient); color: #fff; border-color: var(--accent); font-weight: 700; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

.article-tags_efffc { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0; padding-top: 20px; border-top: 1px dashed var(--border-color); align-items: center; }
.article-tags_efffc strong { font-size: 14px; color: var(--text-main); font-weight: 600; }
.article-tags_efffc a { padding: 4px 14px; background: var(--bg-soft); color: var(--text-muted); font-size: 13px; border-radius: 20px; transition: all 0.2s; border: 1px solid var(--border-color); }
.article-tags_efffc a:hover { background: var(--accent-gradient); color: #fff; border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

.article-container_efffc, .article-main_efffc, .post-main_efffc, .detail-wrap_efffc { max-width: 100%; }
.article-main_efffc h1, .post-main_efffc h1, .detail-head_efffc h1, .article-header_efffc h1, .post-header_efffc h1 { font-size: 30px; line-height: 1.35; letter-spacing: 0; }
.article-body_efffc, .post-content_efffc, .detail-body_efffc { font-size: 16px; line-height: 1.9; color: var(--text-muted); }
.article-body_efffc h2, .post-content_efffc h2, .detail-body_efffc h2 { font-size: 22px; line-height: 1.45; color: var(--text-main); margin: 28px 0 12px; }
.article-body_efffc img, .post-content_efffc img, .detail-body_efffc img { max-width: 100%; height: auto; margin-left: auto; margin-right: auto; }

@media (max-width: 768px) {
    .article-container_efffc, .article-main_efffc, .post-main_efffc, .detail-wrap_efffc { width: 100% !important; max-width: 100% !important; }
    .article-container_efffc { padding-left: 20px !important; padding-right: 20px !important; }
    .article-container_efffc .article-main_efffc, .article-container_efffc .post-main_efffc { padding-left: 0 !important; padding-right: 0 !important; }
    .article-container_efffc .detail-head_efffc, .article-container_efffc .article-header_efffc, .article-container_efffc .post-header_efffc, .article-container_efffc .detail-body_efffc, .article-container_efffc .article-body_efffc, .article-container_efffc .post-content_efffc { width: 100% !important; max-width: 100% !important; }
    .article-main_efffc h1, .post-main_efffc h1, .detail-head_efffc h1, .article-header_efffc h1, .post-header_efffc h1 { font-size: 19px; line-height: 1.5; max-width: 100% !important; white-space: normal !important; overflow: visible !important; text-overflow: clip !important; }
    .article-main_efffc h1 span, .post-main_efffc h1 span, .detail-head_efffc h1 span, .article-header_efffc h1 span, .post-header_efffc h1 span { display: block; width: 100%; max-width: 100%; white-space: normal !important; word-break: break-all; overflow-wrap: anywhere; overflow: visible !important; text-overflow: clip !important; }
    .article-body_efffc, .post-content_efffc, .detail-body_efffc { font-size: 15px; line-height: 1.85; }
    .article-body_efffc h2, .post-content_efffc h2, .detail-body_efffc h2 { font-size: 18px; line-height: 1.5; }
    .article-body_efffc h2, .post-content_efffc h2, .detail-body_efffc h2, .article-body_efffc p, .post-content_efffc p, .detail-body_efffc p { word-break: break-all; overflow-wrap: anywhere; }
    .article-body_efffc p, .post-content_efffc p, .detail-body_efffc p { margin-bottom: 14px; }
    .layout-grid_efffc .post-list_efffc[style], .layout-grid_efffc .movie-grid-wrap_efffc[style], .layout-grid_efffc .resource-list_efffc[style] { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

.post-nav_efffc, .page-nav-box_efffc, .context-nav_efffc { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin: 40px 0; max-width: 100%; min-width: 0; overflow: hidden; }
.post-nav_efffc a, .page-nav-box_efffc a, .context-nav_efffc a { display: flex; flex-direction: column; min-width: 0; max-width: 100%; padding: 18px 20px; background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border-color); transition: all 0.3s; box-shadow: 0 2px 10px rgba(0,0,0,0.01); overflow: hidden; }
.theme-dark .post-nav_efffc a, .theme-dark .page-nav-box_efffc a, .theme-dark .context-nav_efffc a { border-color: var(--border-color); }
.post-nav_efffc a:hover, .page-nav-box_efffc a:hover, .context-nav_efffc a:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.post-nav_efffc span, .page-nav-box_efffc span, .context-nav_efffc span { max-width: 100%; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0; overflow-wrap: anywhere; }
.post-nav_efffc .nav-title, .page-nav-box_efffc .nav-title, .context-nav_efffc .nav-title { display: -webkit-box; max-width: 100%; font-size: 15px; line-height: 1.55; color: var(--text-main); white-space: normal; overflow: hidden; text-overflow: ellipsis; overflow-wrap: anywhere; word-break: break-word; -webkit-line-clamp: 2; -webkit-box-orient: vertical; font-weight: 600; }
.post-nav_efffc .next, .page-nav-box_efffc .next, .context-nav_efffc .next { text-align: right; align-items: flex-end; }
@media (max-width: 768px) {
    .post-nav_efffc, .page-nav-box_efffc, .context-nav_efffc { grid-template-columns: minmax(0, 1fr); gap: 12px; margin: 28px 0 0; overflow: visible; }
    .post-nav_efffc a, .page-nav-box_efffc a, .context-nav_efffc a { width: 100%; padding: 15px 16px; }
    .post-nav_efffc .nav-title, .page-nav-box_efffc .nav-title, .context-nav_efffc .nav-title { -webkit-line-clamp: 3; font-size: 14px; line-height: 1.55; }
}

.seo-copyright_efffc { background: var(--bg-soft); padding: 15px 20px; border-radius: var(--radius); margin-top: 30px; font-size: 13px; color: var(--text-muted); line-height: 1.6; border-left: 3px solid var(--accent); }
.seo-copyright_efffc strong { color: var(--text-main); }

/* ================= 5. 影视详情页专属组件 (防内联失效重构版) ================= */
.player-container_efffc, .video-box_efffc, .play-area_efffc, .v-player_efffc { position: relative; border-radius: var(--radius); overflow: hidden; background: #080a10; box-shadow: 0 10px 30px rgba(0,0,0,0.2); margin-bottom: 35px; }
.player-ratio_efffc, .video-ratio_efffc, .embed-responsive_efffc { position: relative; width: 100%; padding-top: 56.25%; }
.player-ratio_efffc iframe, .video-ratio_efffc iframe, .embed-responsive_efffc iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

.playlist-section_efffc, .ep-list-box_efffc, .anthology-wrap_efffc { background: var(--bg-card); padding: 25px; border-radius: var(--radius); margin-bottom: 35px; box-shadow: 0 2px 10px rgba(0,0,0,0.02); border: 1px solid var(--border-color); }
.playlist-header_efffc, .ep-head_efffc, .anthology-title_efffc { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.playlist-header_efffc h3, .ep-head_efffc h3, .anthology-title_efffc h3 { font-size: 18px; color: var(--text-main); padding-left: 10px; margin: 0; border-left: 4px solid var(--accent); }
.playlist-grid_efffc, .ep-grid_efffc, .anthology-list_efffc { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 12px; }
.ep-btn_efffc, .play-btn-item_efffc, .ep-item_efffc { background: var(--bg-soft); color: var(--text-main); text-align: center; padding: 12px 10px; border-radius: 6px; cursor: pointer; transition: all 0.2s; border: 1px solid var(--border-color); font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ep-btn_efffc:hover, .play-btn-item_efffc:hover, .ep-item_efffc:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.ep-btn_efffc.active, .play-btn-item_efffc.active, .ep-item_efffc.active,
.ep-btn_efffc.on, .play-btn-item_efffc.on, .ep-item_efffc.on,
.ep-btn_efffc.current, .play-btn-item_efffc.current, .ep-item_efffc.current { background: var(--accent-gradient); color: #fff; border-color: var(--accent); box-shadow: 0 4px 10px rgba(0,0,0,0.18); }

.video-details_efffc, .vod-info-box_efffc, .detail-wrap_efffc { background: var(--bg-card); padding: 25px; border-radius: var(--radius); border: 1px solid var(--border-color); margin-bottom: 40px; }
.vd-mobile-top_efffc, .info-top-box_efffc, .vod-head_efffc { display: flex; gap: 30px; align-items: flex-start; }
.vd-poster_efffc, .vod-pic_efffc, .detail-cover_efffc { width: 180px; flex-shrink: 0; border-radius: 8px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.vd-info_efffc, .vod-text_efffc, .detail-text_efffc { flex: 1; min-width: 0; }
.vd-title_efffc, .vod-name_efffc, .detail-title_efffc { font-size: 26px; margin-bottom: 18px; color: var(--text-main); line-height: 1.3; font-weight: 800; }
.vd-meta-tags_efffc, .vod-tags_efffc, .detail-tags_efffc { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 25px; }
.vd-tag_efffc, .tag-item_efffc, .info-lbl_efffc { font-size: 13px; padding: 6px 12px; border-radius: 4px; background: var(--bg-soft); color: var(--text-muted); display: flex; align-items: center; border: 1px solid var(--border-color); }
.vd-tag_efffc.highlight, .tag-item_efffc.highlight, .info-lbl_efffc.highlight { background: var(--accent-gradient); color: #fff; font-weight: bold; box-shadow: 0 2px 8px rgba(0,0,0,0.16); }
.vd-desc_efffc, .vod-content_efffc, .detail-desc_efffc { font-size: 15px; color: var(--text-muted); line-height: 1.8; text-align: justify; word-wrap: break-word; }
.vd-desc_efffc h2, .vd-desc_efffc h3, .vd-desc_efffc h4,
.vod-content_efffc h2, .vod-content_efffc h3, .vod-content_efffc h4,
.detail-desc_efffc h2, .detail-desc_efffc h3, .detail-desc_efffc h4 { color: var(--text-main); font-size: 18px; margin: 25px 0 12px; border-left: 3px solid var(--accent); padding-left: 10px; font-weight: 600; line-height: 1.2; }
.vd-desc_efffc p, .vod-content_efffc p, .detail-desc_efffc p { margin-bottom: 15px; }

.ad-overlay_efffc, .sponsor-box_efffc, .promo-wrap_efffc, .vip-layer_efffc { position: absolute; z-index: 99; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); display: flex; flex-direction: column; align-items: center; justify-content: center; backdrop-filter: blur(5px); }
.ad-overlay_efffc img, .sponsor-box_efffc img, .promo-wrap_efffc img, .vip-layer_efffc img { max-width: 90%; max-height: 70vh; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); transition: transform 0.3s; }
.ad-overlay_efffc img:hover, .sponsor-box_efffc img:hover, .promo-wrap_efffc img:hover, .vip-layer_efffc img:hover { transform: scale(1.02); }
.ad-close_efffc, .btn-close_efffc, .hide-ad_efffc, .close-layer_efffc { margin-top: 20px; padding: 8px 24px; background: rgba(255,255,255,0.15); color: #fff; border-radius: 30px; cursor: pointer; font-size: 14px; border: 1px solid rgba(255,255,255,0.3); transition: background 0.3s; }
.ad-close_efffc:hover, .btn-close_efffc:hover, .hide-ad_efffc:hover, .close-layer_efffc:hover { background: rgba(255,255,255,0.3); }

@media(max-width: 768px) {
    .vd-mobile-top_efffc, .info-top-box_efffc, .vod-head_efffc { flex-direction: column; gap: 20px; align-items: center; }
    .vd-poster_efffc, .vod-pic_efffc, .detail-cover_efffc { width: 140px; }
    .vd-title_efffc, .vod-name_efffc, .detail-title_efffc { font-size: 22px; text-align: center; }
    .vd-meta-tags_efffc, .vod-tags_efffc, .detail-tags_efffc { justify-content: center; }
    .playlist-header_efffc, .ep-head_efffc, .anthology-title_efffc { flex-wrap: wrap; gap: 8px 12px; align-items: flex-start; }
    .playlist-header_efffc .ep-count, .ep-head_efffc .ep-count, .anthology-title_efffc .ep-count { display: inline-block; max-width: 100%; white-space: normal; word-break: break-all; }
    .playlist-grid_efffc, .ep-grid_efffc, .anthology-list_efffc { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* hash: 132692163dc7514661c86beb431b374c */