: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%);
    --page-gradient: linear-gradient(180deg, #0a0c10 0%, #0d1014 100%);
    --accent-contrast: #ffffff;
    --panel-shadow: 0 18px 40px rgba(5,10,16,0.40);
    --card-shadow: 0 14px 30px rgba(5,10,16,0.30);
    --chip-bg: rgba(255,255,255,0.06);
    --radius: 8px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; overflow-x: hidden; }
body { background: var(--page-gradient, 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; }

:is(.site-header,.site-header_a34e6), :is(.global-head,.global-head_a34e6), :is(.top-navbar,.top-navbar_a34e6) { background: var(--surface-gradient); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; box-shadow: var(--panel-shadow); }
:is(.site-header,.site-header_a34e6)::after, :is(.global-head,.global-head_a34e6)::after, :is(.top-navbar,.top-navbar_a34e6)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: var(--accent-gradient); opacity: 0.65; pointer-events: none; }
:is(.header-inner,.header-inner_a34e6) { max-width: 1240px; margin: 0 auto; padding: 0 3%; min-height: 64px; height: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

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

:is(.site-nav,.site-nav_a34e6), :is(.main-menu,.main-menu_a34e6), :is(.nav-container,.nav-container_a34e6) { flex: 1; display: flex; justify-content: center; }
:is(.site-nav,.site-nav_a34e6) ul, :is(.main-menu,.main-menu_a34e6) ul, :is(.nav-container,.nav-container_a34e6) ul { display: flex; gap: 20px; align-items: center; margin: 0; padding: 0; }
:is(.site-nav,.site-nav_a34e6) a, :is(.main-menu,.main-menu_a34e6) a, :is(.nav-container,.nav-container_a34e6) a { color: var(--text-main); font-size: 16px; font-weight: 500; transition: color 0.2s; white-space: nowrap; }
:is(.site-nav,.site-nav_a34e6) a:hover, :is(.main-menu,.main-menu_a34e6) a:hover, :is(.nav-container,.nav-container_a34e6) a:hover { color: var(--accent); }

:is(.site-search,.site-search_a34e6), :is(.search-box,.search-box_a34e6), :is(.head-search,.head-search_a34e6) { flex-shrink: 0; display: flex; align-items: center; }
:is(.site-search,.site-search_a34e6) form, :is(.search-box,.search-box_a34e6) form, :is(.head-search,.head-search_a34e6) form {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    min-height: 42px;
    background: var(--bg-soft);
    border-radius: 21px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
:is(.site-search,.site-search_a34e6) form:focus-within, :is(.search-box,.search-box_a34e6) form:focus-within, :is(.head-search,.head-search_a34e6) form:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
:is(.site-search,.site-search_a34e6) input, :is(.search-box,.search-box_a34e6) input, :is(.head-search,.head-search_a34e6) input {
    flex: 1 1 auto;
    min-width: 0;
    width: 0;
    height: auto;
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 0 16px;
    outline: none;
    font-size: 14px;
    line-height: 1.2;
}
:is(.site-search,.site-search_a34e6) input::placeholder, :is(.search-box,.search-box_a34e6) input::placeholder, :is(.head-search,.head-search_a34e6) input::placeholder {
    color: var(--text-muted);
    opacity: 0.88;
}
:is(.site-search,.site-search_a34e6) button, :is(.search-box,.search-box_a34e6) button, :is(.head-search,.head-search_a34e6) button {
    flex: 0 0 auto;
    min-width: 70px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    word-break: keep-all;
    line-height: 1;
    background: var(--accent-gradient);
    color: var(--accent-contrast, #fff);
    border: none;
    border-left: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
 }
:is(.page-shell,.page-shell_a34e6), :is(.page-shell-inner,.page-shell-inner_a34e6),
:is(.home-shell,.home-shell_a34e6), :is(.home-shell-inner,.home-shell-inner_a34e6),
:is(.home-layout-shell,.home-layout-shell_a34e6), :is(.home-layout-inner,.home-layout-inner_a34e6),
:is(.list-shell,.list-shell_a34e6), :is(.list-layout-shell,.list-layout-shell_a34e6), :is(.list-layout-inner,.list-layout-inner_a34e6),
:is(.article-layout-shell,.article-layout-shell_a34e6), :is(.article-layout-inner,.article-layout-inner_a34e6),
:is(.single-layout-shell,.single-layout-shell_a34e6), :is(.single-layout-inner,.single-layout-inner_a34e6),
:is(.article-head-shell,.article-head-shell_a34e6), :is(.article-body-shell,.article-body-shell_a34e6),
:is(.footer-frame,.footer-frame_a34e6), :is(.footer-frame-inner,.footer-frame-inner_a34e6), :is(.footer-frame-top,.footer-frame-top_a34e6), :is(.footer-frame-bottom,.footer-frame-bottom_a34e6),
:is(.error-shell,.error-shell_a34e6), :is(.error-shell-head,.error-shell-head_a34e6), :is(.error-shell-body,.error-shell-body_a34e6),
:is(.nav-shell,.nav-shell_a34e6) { display: block; width: 100%; }
.hero-shell, .editorial-shell, .catalog-shell, .signal-shell, .harbor-shell, .ember-shell,
.hero-panel, .editorial-panel, .catalog-panel, .signal-panel, .harbor-panel, .ember-panel,
.masthead-panel, .brand-panel, .header-bridge, .header-panel, .header-rail, .header-strip,
.nav-rail, .nav-strip, .nav-panel, .nav-band, .nav-bay,
.search-panel, .search-strip, .search-rail, .search-band, .search-bay,
.home-stage, .home-journal, .home-catalog, .home-signal, .home-harbor, .home-ember,
.feature-panel, .content-panel, .movie-panel, .news-panel, .related-panel, .filter-panel, .summary-panel, .category-panel, .breadcrumb-panel, .filter-rail, .meta-panel,
.list-journal, .list-ledger, .list-signal, .list-harbor, .list-ember,
.story-shell, .column-shell, .article-bridge, .article-panel, .article-bay, .article-ember,
.sidebar-rail, .content-sidebar, .sidebar-panel, .info-sidebar, .sidebar-bay, .meta-rail, .info-rail, .meta-bay,
.player-shell, .player-panel, .player-stage, .player-band, .player-bay, .player-ember,
.footer-bay, .footer-rail, .footer-stack, .footer-panel, .footer-bayline, .footer-ember,
.guide-panel, .rescue-panel, .redirect-panel, .guide-shell, .rescue-shell, .panel-ember { display: block; width: 100%; min-width: 0; }
.hero-shell, .home-stage, .story-shell, .player-shell, .footer-bay, .guide-panel,
.signal-shell, .home-signal, .article-panel, .player-band, .footer-panel, .guide-shell { position: relative; isolation: isolate; }
.editorial-shell, .home-journal, .column-shell, .player-panel,
.harbor-shell, .home-harbor, .article-bay, .player-bay { max-width: 100%; margin-inline: auto; }
:is(.page-shell,.page-shell_a34e6),
:is([class^="page-shell_"], [class*=" page-shell_"]) { width: 100%; min-height: 100vh; }
:is(.page-shell-inner,.page-shell-inner_a34e6),
:is([class^="page-shell-inner_"], [class*=" page-shell-inner_"]) { min-height: 100vh; display: flex; flex-direction: column; }
:is(.header-frame,.header-frame_a34e6),
:is([class^="header-frame_"], [class*=" header-frame_"]) { width: 100%; }
:is(.header-inner-stack,.header-inner-stack_a34e6),
:is([class^="header-inner-stack_"], [class*=" header-inner-stack_"]) { height: auto; min-height: 64px; display: grid; grid-template-columns: minmax(0, 1fr); align-items: stretch; gap: 10px; padding-top: 10px; padding-bottom: 10px; }
:is(.header-row,.header-row_a34e6),
:is([class^="header-row_"], [class*=" header-row_"]) { width: 100%; display: flex; align-items: center; gap: 20px; min-width: 0; }
:is(.header-row-top,.header-row-top_a34e6), :is(.header-row-bottom,.header-row-bottom_a34e6),
:is([class^="header-row-top_"], [class*=" header-row-top_"]),
:is([class^="header-row-bottom_"], [class*=" header-row-bottom_"]) { width: 100%; justify-content: space-between; flex-wrap: wrap; }
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.site-logo,.site-logo_a34e6),
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.site-search,.site-search_a34e6),
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.search-box,.search-box_a34e6),
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.head-search,.head-search_a34e6) { flex-shrink: 0; }
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.site-nav,.site-nav_a34e6),
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.main-menu,.main-menu_a34e6),
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.nav-container,.nav-container_a34e6),
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .nav-rail,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .nav-strip,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .nav-panel,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .nav-band,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .nav-bay { flex: 1 1 420px; min-width: 0; justify-content: flex-start; }
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.site-nav,.site-nav_a34e6) ul,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.main-menu,.main-menu_a34e6) ul,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.nav-container,.nav-container_a34e6) ul,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .nav-rail ul,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .nav-strip ul,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .nav-panel ul,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .nav-band ul,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .nav-bay ul { flex-wrap: wrap; row-gap: 10px; }
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.site-search,.site-search_a34e6),
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.search-box,.search-box_a34e6),
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.head-search,.head-search_a34e6),
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .search-panel,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .search-strip,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .search-rail,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .search-band,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .search-bay { margin-left: auto; min-width: 0; }
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.site-search,.site-search_a34e6) form,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.search-box,.search-box_a34e6) form,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.head-search,.head-search_a34e6) form,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .search-panel form,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .search-strip form,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .search-rail form,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .search-band form,
:is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .search-bay form { width: 100%; max-width: min(100%, 300px); }
:is(.nav-shell,.nav-shell_a34e6) > ul,
:is([class^="nav-shell_"], [class*=" nav-shell_"]) > ul { width: 100%; }
:is(.footer-frame-bottom,.footer-frame-bottom_a34e6) { margin-top: 18px; }
:is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > * { min-width: 0; }

@media (min-width: 801px) {
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.site-logo,.site-logo_a34e6) { flex: 0 0 auto; }
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.site-logo,.site-logo_a34e6) { flex: 0 0 auto; }
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.site-search,.site-search_a34e6),
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.search-box,.search-box_a34e6),
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.head-search,.head-search_a34e6),
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .search-panel,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .search-strip,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .search-rail,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .search-band,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .search-bay {
        flex: 0 1 280px;
        width: auto;
        min-width: 200px;
        max-width: 300px;
        margin-inline: 12px;
    }
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.site-search,.site-search_a34e6),
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.search-box,.search-box_a34e6),
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.head-search,.head-search_a34e6),
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .search-panel,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .search-strip,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .search-rail,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .search-band,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .search-bay {
        flex: 0 1 280px;
        width: auto;
        min-width: 200px;
        max-width: 300px;
        margin-left: auto;
    }
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.site-search,.site-search_a34e6) form,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.search-box,.search-box_a34e6) form,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.head-search,.head-search_a34e6) form,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .search-panel form,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .search-strip form,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .search-rail form,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .search-band form,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .search-bay form {
        width: 100%;
        max-width: none;
    }
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.site-search,.site-search_a34e6) form,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.search-box,.search-box_a34e6) form,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.head-search,.head-search_a34e6) form,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .search-panel form,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .search-strip form,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .search-rail form,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .search-band form,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .search-bay form {
        width: 100%;
        max-width: none;
    }
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.site-search,.site-search_a34e6) input,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.search-box,.search-box_a34e6) input,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.head-search,.head-search_a34e6) input,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .search-panel input,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .search-strip input,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .search-rail input,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .search-band input,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .search-bay input {
        width: 100%;
        min-width: 0;
    }
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.site-search,.site-search_a34e6) input,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.search-box,.search-box_a34e6) input,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.head-search,.head-search_a34e6) input,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .search-panel input,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .search-strip input,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .search-rail input,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .search-band input,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .search-bay input {
        width: 100%;
        min-width: 0;
    }
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.site-nav,.site-nav_a34e6),
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.main-menu,.main-menu_a34e6),
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.nav-container,.nav-container_a34e6),
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .nav-rail,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .nav-strip,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .nav-panel,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .nav-band,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .nav-bay {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
        justify-content: flex-end;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.site-nav,.site-nav_a34e6),
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.main-menu,.main-menu_a34e6),
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.nav-container,.nav-container_a34e6),
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .nav-rail,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .nav-strip,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .nav-panel,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .nav-band,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .nav-bay {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
        justify-content: flex-start;
        overflow-x: visible;
    }
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.site-nav,.site-nav_a34e6)::-webkit-scrollbar,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.main-menu,.main-menu_a34e6)::-webkit-scrollbar,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.nav-container,.nav-container_a34e6)::-webkit-scrollbar,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .nav-rail::-webkit-scrollbar,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .nav-strip::-webkit-scrollbar,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .nav-panel::-webkit-scrollbar,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .nav-band::-webkit-scrollbar,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .nav-bay::-webkit-scrollbar {
        display: none;
    }
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.site-nav,.site-nav_a34e6)::-webkit-scrollbar,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.main-menu,.main-menu_a34e6)::-webkit-scrollbar,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.nav-container,.nav-container_a34e6)::-webkit-scrollbar,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .nav-rail::-webkit-scrollbar,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .nav-strip::-webkit-scrollbar,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .nav-panel::-webkit-scrollbar,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .nav-band::-webkit-scrollbar,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .nav-bay::-webkit-scrollbar {
        display: none;
    }
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.site-nav,.site-nav_a34e6) ul,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.main-menu,.main-menu_a34e6) ul,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > :is(.nav-container,.nav-container_a34e6) ul,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .nav-rail ul,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .nav-strip ul,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .nav-panel ul,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .nav-band ul,
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) > .nav-bay ul {
        flex-wrap: nowrap;
        justify-content: flex-end;
        gap: 22px;
        min-width: max-content;
    }
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.site-nav,.site-nav_a34e6) ul,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.main-menu,.main-menu_a34e6) ul,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > :is(.nav-container,.nav-container_a34e6) ul,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .nav-rail ul,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .nav-strip ul,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .nav-panel ul,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .nav-band ul,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) > .nav-bay ul {
        width: 100%;
        min-width: 0;
        justify-content: flex-start;
        gap: 22px;
    }
}

@media (max-width: 800px) {
    :is(.site-header,.site-header_a34e6), :is(.global-head,.global-head_a34e6), :is(.top-navbar,.top-navbar_a34e6) { height: auto; }
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) { display: flex; flex-wrap: wrap; gap: 10px; padding: 10px 16px; height: auto; width: 100%; max-width: 100%; }
    :is(:is(.header-inner-stack,.header-inner-stack_a34e6), [class^="header-inner-stack_"], [class*=" header-inner-stack_"]) { gap: 10px; padding-top: 10px; padding-bottom: 10px; }
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) { width: 100%; flex-wrap: wrap; gap: 10px; }
    :is(:is(.header-row-top,.header-row-top_a34e6), [class^="header-row-top_"], [class*=" header-row-top_"]),
    :is(.header-row-mid, [class^="header-row-mid_"], [class*=" header-row-mid_"]),
    :is(:is(.header-row-bottom,.header-row-bottom_a34e6), [class^="header-row-bottom_"], [class*=" header-row-bottom_"]) { width: 100%; justify-content: flex-start; }
    :is(.site-logo,.site-logo_a34e6) { order: 1; flex: 0 0 100%; width: 100%; align-self: center; margin: 0; }
    :is(.site-logo,.site-logo_a34e6) a { font-size: 18px; gap: 8px; }
    :is(.site-logo,.site-logo_a34e6) img { height: 26px; }
    :is(.site-search,.site-search_a34e6), :is(.search-box,.search-box_a34e6), :is(.head-search,.head-search_a34e6),
    .search-panel, .search-strip, .search-rail, .search-band, .search-bay {
        order: 2;
        flex: 0 0 100%;
        width: 100%;
        min-width: 0;
        max-width: none;
        align-self: stretch;
        margin: 0;
    }
    :is(.site-search,.site-search_a34e6) form, :is(.search-box,.search-box_a34e6) form, :is(.head-search,.head-search_a34e6) form,
    .search-panel form, .search-strip form, .search-rail form, .search-band form, .search-bay form {
        width: 100%;
        min-width: 0;
        min-height: 40px;
        display: flex;
        border-radius: 20px;
    }
    :is(.site-search,.site-search_a34e6) input, :is(.search-box,.search-box_a34e6) input, :is(.head-search,.head-search_a34e6) input,
    .search-panel input, .search-strip input, .search-rail input, .search-band input, .search-bay input {
        flex: 1;
        min-width: 0;
        width: 0;
        padding: 0 14px;
        font-size: 14px;
    }
    :is(.site-search,.site-search_a34e6) button, :is(.search-box,.search-box_a34e6) button, :is(.head-search,.head-search_a34e6) button,
    .search-panel button, .search-strip button, .search-rail button, .search-band button, .search-bay button {
        min-width: 72px;
        padding: 0 16px;
        font-size: 14px;
    }
    :is(.site-nav,.site-nav_a34e6), :is(.main-menu,.main-menu_a34e6), :is(.nav-container,.nav-container_a34e6),
    .nav-rail, .nav-strip, .nav-panel, .nav-band, .nav-bay {
        order: 3;
        flex: 0 0 100%;
        width: 100%;
        min-width: 0;
        margin: 0;
        justify-content: flex-start;
        overflow: visible;
        padding-bottom: 0;
    }
    :is(.site-nav,.site-nav_a34e6) ul, :is(.main-menu,.main-menu_a34e6) ul, :is(.nav-container,.nav-container_a34e6) ul,
    .nav-rail ul, .nav-strip ul, .nav-panel ul, .nav-band ul, .nav-bay ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 18px;
        min-width: 0;
        width: 100%;
        justify-content: flex-start;
    }
    :is(.site-nav,.site-nav_a34e6) li, :is(.main-menu,.main-menu_a34e6) li, :is(.nav-container,.nav-container_a34e6) li,
    .nav-rail li, .nav-strip li, .nav-panel li, .nav-band li, .nav-bay li { flex: 0 0 auto; }
    :is(.site-nav,.site-nav_a34e6) a, :is(.main-menu,.main-menu_a34e6) a, :is(.nav-container,.nav-container_a34e6) a,
    .nav-rail a, .nav-strip a, .nav-panel a, .nav-band a, .nav-bay a { font-size: 15px; }
}

:is(.container,.container_a34e6) { width: 100%; max-width: 1200px; margin: 30px auto; padding: 0 4%; min-height: 70vh; }
:is(.home-block,.home-block_a34e6), :is(.idx-section,.idx-section_a34e6), :is(.mod-wrap,.mod-wrap_a34e6) { margin-bottom: 40px; }
:is(.section-title,.section-title_a34e6), :is(.mod-title,.mod-title_a34e6), :is(.idx-h2,.idx-h2_a34e6) { font-size: 20px; margin-bottom: 20px; color: var(--text-main); display: flex; align-items: center; gap: 10px; border:none; padding:0; }
:is(.section-title,.section-title_a34e6)::before, :is(.mod-title,.mod-title_a34e6)::before, :is(.idx-h2,.idx-h2_a34e6)::before { content: ""; width: 4px; height: 18px; background: var(--accent); border-radius: 2px; display:none; }

:is(.post-card,.post-card_a34e6), :is(.item-card,.item-card_a34e6), :is(.vod-item,.vod-item_a34e6), :is(.list-item,.list-item_a34e6) { background: var(--surface-gradient); border-radius: var(--radius); overflow: hidden; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: var(--card-shadow); }
:is(.post-thumb,.post-thumb_a34e6), :is(.pic-box,.pic-box_a34e6), :is(.cover-wrap,.cover-wrap_a34e6), :is(.img-box,.img-box_a34e6) { position: relative; background: var(--bg-soft); overflow: hidden; }
.theme-dark :is(.post-thumb,.post-thumb_a34e6), .theme-dark :is(.pic-box,.pic-box_a34e6), .theme-dark :is(.cover-wrap,.cover-wrap_a34e6), .theme-dark :is(.img-box,.img-box_a34e6) { background: var(--bg-soft); }
:is(.post-thumb,.post-thumb_a34e6) img, :is(.pic-box,.pic-box_a34e6) img, :is(.cover-wrap,.cover-wrap_a34e6) img, :is(.img-box,.img-box_a34e6) img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }

:is(.post-card,.post-card_a34e6):hover :is(.post-thumb,.post-thumb_a34e6) img, :is(.post-card,.post-card_a34e6):hover :is(.pic-box,.pic-box_a34e6) img, :is(.post-card,.post-card_a34e6):hover :is(.cover-wrap,.cover-wrap_a34e6) img, :is(.post-card,.post-card_a34e6):hover :is(.img-box,.img-box_a34e6) img,
:is(.item-card,.item-card_a34e6):hover :is(.post-thumb,.post-thumb_a34e6) img, :is(.item-card,.item-card_a34e6):hover :is(.pic-box,.pic-box_a34e6) img, :is(.item-card,.item-card_a34e6):hover :is(.cover-wrap,.cover-wrap_a34e6) img, :is(.item-card,.item-card_a34e6):hover :is(.img-box,.img-box_a34e6) img,
:is(.vod-item,.vod-item_a34e6):hover :is(.post-thumb,.post-thumb_a34e6) img, :is(.vod-item,.vod-item_a34e6):hover :is(.pic-box,.pic-box_a34e6) img, :is(.vod-item,.vod-item_a34e6):hover :is(.cover-wrap,.cover-wrap_a34e6) img, :is(.vod-item,.vod-item_a34e6):hover :is(.img-box,.img-box_a34e6) img,
:is(.list-item,.list-item_a34e6):hover :is(.post-thumb,.post-thumb_a34e6) img, :is(.list-item,.list-item_a34e6):hover :is(.pic-box,.pic-box_a34e6) img, :is(.list-item,.list-item_a34e6):hover :is(.cover-wrap,.cover-wrap_a34e6) img, :is(.list-item,.list-item_a34e6):hover :is(.img-box,.img-box_a34e6) img { transform: scale(1.05); }

:is(.post-info,.post-info_a34e6), :is(.detail-box,.detail-box_a34e6), :is(.item-info,.item-info_a34e6), :is(.text-wrap,.text-wrap_a34e6) { display: flex; flex-direction: column; justify-content: center; }
:is(.post-title,.post-title_a34e6), :is(.item-name,.item-name_a34e6), :is(.vod-title,.vod-title_a34e6), :is(.h-title,.h-title_a34e6) { font-weight: 600; color: var(--text-main); transition: color 0.2s; }

:is(.post-card,.post-card_a34e6):hover :is(.post-title,.post-title_a34e6), :is(.post-card,.post-card_a34e6):hover :is(.item-name,.item-name_a34e6), :is(.post-card,.post-card_a34e6):hover :is(.vod-title,.vod-title_a34e6), :is(.post-card,.post-card_a34e6):hover :is(.h-title,.h-title_a34e6),
:is(.item-card,.item-card_a34e6):hover :is(.post-title,.post-title_a34e6), :is(.item-card,.item-card_a34e6):hover :is(.item-name,.item-name_a34e6), :is(.item-card,.item-card_a34e6):hover :is(.vod-title,.vod-title_a34e6), :is(.item-card,.item-card_a34e6):hover :is(.h-title,.h-title_a34e6),
:is(.vod-item,.vod-item_a34e6):hover :is(.post-title,.post-title_a34e6), :is(.vod-item,.vod-item_a34e6):hover :is(.item-name,.item-name_a34e6), :is(.vod-item,.vod-item_a34e6):hover :is(.vod-title,.vod-title_a34e6), :is(.vod-item,.vod-item_a34e6):hover :is(.h-title,.h-title_a34e6),
:is(.list-item,.list-item_a34e6):hover :is(.post-title,.post-title_a34e6), :is(.list-item,.list-item_a34e6):hover :is(.item-name,.item-name_a34e6), :is(.list-item,.list-item_a34e6):hover :is(.vod-title,.vod-title_a34e6), :is(.list-item,.list-item_a34e6):hover :is(.h-title,.h-title_a34e6) { color: var(--accent); }

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

.theme-dark :is(.post-card,.post-card_a34e6), .theme-dark :is(.item-card,.item-card_a34e6), .theme-dark :is(.vod-item,.vod-item_a34e6), .theme-dark :is(.list-item,.list-item_a34e6) { border: 1px solid var(--border-color); }
.theme-dark :is(.post-card,.post-card_a34e6):hover, .theme-dark :is(.item-card,.item-card_a34e6):hover, .theme-dark :is(.vod-item,.vod-item_a34e6):hover, .theme-dark :is(.list-item,.list-item_a34e6):hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--panel-shadow); }
.theme-light :is(.post-card,.post-card_a34e6), .theme-light :is(.item-card,.item-card_a34e6), .theme-light :is(.vod-item,.vod-item_a34e6), .theme-light :is(.list-item,.list-item_a34e6) { border: 1px solid var(--border-color); box-shadow: var(--card-shadow); }
.theme-light :is(.post-card,.post-card_a34e6):hover, .theme-light :is(.item-card,.item-card_a34e6):hover, .theme-light :is(.vod-item,.vod-item_a34e6):hover, .theme-light :is(.list-item,.list-item_a34e6):hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--panel-shadow); }

:is(.layout-grid,.layout-grid_a34e6) :is(.post-list,.post-list_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.movie-grid-wrap,.movie-grid-wrap_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.resource-list,.resource-list_a34e6) { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 24px 18px; }
:is(.layout-grid,.layout-grid_a34e6) :is(.post-card,.post-card_a34e6) a, :is(.layout-grid,.layout-grid_a34e6) :is(.item-card,.item-card_a34e6) a, :is(.layout-grid,.layout-grid_a34e6) :is(.vod-item,.vod-item_a34e6) a, :is(.layout-grid,.layout-grid_a34e6) :is(.list-item,.list-item_a34e6) a { display: flex; flex-direction: column; height: 100%; }
:is(.layout-grid,.layout-grid_a34e6) :is(.post-thumb,.post-thumb_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.pic-box,.pic-box_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.cover-wrap,.cover-wrap_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.img-box,.img-box_a34e6) { width: 100%; aspect-ratio: 2 / 3; }
:is(.layout-grid,.layout-grid_a34e6) :is(.post-info,.post-info_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.detail-box,.detail-box_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.item-info,.item-info_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.text-wrap,.text-wrap_a34e6) { padding: 14px 10px; }
:is(.layout-grid,.layout-grid_a34e6) :is(.post-title,.post-title_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.item-name,.item-name_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.vod-title,.vod-title_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.h-title,.h-title_a34e6) { font-size: 15px; margin-bottom: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

:is(.layout-list,.layout-list_a34e6) :is(.post-list,.post-list_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.movie-grid-wrap,.movie-grid-wrap_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.resource-list,.resource-list_a34e6) { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
:is(.layout-list,.layout-list_a34e6) :is(.post-card,.post-card_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.item-card,.item-card_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.vod-item,.vod-item_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.list-item,.list-item_a34e6) { height: 100%; } 
:is(.layout-list,.layout-list_a34e6) :is(.post-card,.post-card_a34e6) a, :is(.layout-list,.layout-list_a34e6) :is(.item-card,.item-card_a34e6) a, :is(.layout-list,.layout-list_a34e6) :is(.vod-item,.vod-item_a34e6) a, :is(.layout-list,.layout-list_a34e6) :is(.list-item,.list-item_a34e6) a { display: flex; flex-direction: row; padding: 15px; gap: 18px; align-items: center; height: 100%; }
:is(.layout-list,.layout-list_a34e6) :is(.post-thumb,.post-thumb_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.pic-box,.pic-box_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.cover-wrap,.cover-wrap_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.img-box,.img-box_a34e6) { 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); }
:is(.layout-list,.layout-list_a34e6) :is(.post-info,.post-info_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.detail-box,.detail-box_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.item-info,.item-info_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.text-wrap,.text-wrap_a34e6) { padding: 5px 0; flex: 1; min-width: 0; display: flex; flex-direction: column; height: 100%; }
:is(.layout-list,.layout-list_a34e6) :is(.post-title,.post-title_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.item-name,.item-name_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.vod-title,.vod-title_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.h-title,.h-title_a34e6) { font-size: 17px; line-height: 1.5; white-space: normal; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-bottom: 12px; }
:is(.layout-list,.layout-list_a34e6) :is(.post-meta,.post-meta_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.item-meta,.item-meta_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.vod-meta,.vod-meta_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.meta-info,.meta-info_a34e6) { background: var(--bg-soft); padding: 4px 10px; border-radius: 4px; display: inline-flex; width: fit-content; gap: 15px; margin-top: auto; }

:is(.movie-card-tags,.movie-card-tags_a34e6) { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 10px; }
:is(.movie-card-tag,.movie-card-tag_a34e6) { color: var(--accent); background: var(--chip-bg, 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; }
:is(.movie-card-facts,.movie-card-facts_a34e6) { display: grid; grid-template-columns: 1fr; gap: 5px; margin: 0 0 10px; color: var(--text-muted); font-size: 12px; line-height: 1.55; }
:is(.movie-card-line,.movie-card-line_a34e6) { display: flex; align-items: baseline; gap: 6px; min-width: 0; }
:is(.movie-card-label,.movie-card-label_a34e6) { flex: 0 0 auto; color: var(--text-main); opacity: 0.72; font-weight: 600; }
:is(.movie-card-value,.movie-card-value_a34e6) { flex: 1; min-width: 0; color: var(--text-muted); font-style: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
:is(.movie-card-desc,.movie-card-desc_a34e6) { 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; }
:is(.layout-grid,.layout-grid_a34e6) :is(.movie-card-tags,.movie-card-tags_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.movie-card-facts,.movie-card-facts_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.movie-card-desc,.movie-card-desc_a34e6) { display: none; }
:is(.layout-list,.layout-list_a34e6) :is(.post-card,.post-card_a34e6) a, :is(.layout-list,.layout-list_a34e6) :is(.item-card,.item-card_a34e6) a, :is(.layout-list,.layout-list_a34e6) :is(.vod-item,.vod-item_a34e6) a, :is(.layout-list,.layout-list_a34e6) :is(.list-item,.list-item_a34e6) a { align-items: stretch; min-height: 178px; }

@media (max-width: 800px) {
    :is(.layout-list,.layout-list_a34e6) :is(.post-list,.post-list_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.movie-grid-wrap,.movie-grid-wrap_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.resource-list,.resource-list_a34e6) { grid-template-columns: 1fr; gap: 12px; }
    :is(.layout-list,.layout-list_a34e6) :is(.post-card,.post-card_a34e6) a, :is(.layout-list,.layout-list_a34e6) :is(.item-card,.item-card_a34e6) a, :is(.layout-list,.layout-list_a34e6) :is(.vod-item,.vod-item_a34e6) a, :is(.layout-list,.layout-list_a34e6) :is(.list-item,.list-item_a34e6) a { padding: 10px; gap: 12px; }
    :is(.layout-list,.layout-list_a34e6) :is(.post-thumb,.post-thumb_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.pic-box,.pic-box_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.cover-wrap,.cover-wrap_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.img-box,.img-box_a34e6) { width: 90px; }
    :is(.layout-list,.layout-list_a34e6) :is(.post-title,.post-title_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.item-name,.item-name_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.vod-title,.vod-title_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.h-title,.h-title_a34e6) { font-size: 15px; margin-bottom: 8px; }
    :is(.layout-list,.layout-list_a34e6) :is(.movie-card-tags,.movie-card-tags_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.movie-card-facts,.movie-card-facts_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.movie-card-desc,.movie-card-desc_a34e6) { display: none; }
    :is(.layout-list,.layout-list_a34e6) :is(.post-card,.post-card_a34e6) a, :is(.layout-list,.layout-list_a34e6) :is(.item-card,.item-card_a34e6) a, :is(.layout-list,.layout-list_a34e6) :is(.vod-item,.vod-item_a34e6) a, :is(.layout-list,.layout-list_a34e6) :is(.list-item,.list-item_a34e6) a { min-height: 0; }
}

:is(.news-list,.news-list_a34e6), :is(.txt-list-box,.txt-list-box_a34e6), :is(.article-feed,.article-feed_a34e6) { display: flex; flex-direction: column; background: var(--bg-card); border-radius: var(--radius); padding: 10px 20px; border: 1px solid transparent; }
.theme-dark :is(.news-list,.news-list_a34e6), .theme-dark :is(.txt-list-box,.txt-list-box_a34e6), .theme-dark :is(.article-feed,.article-feed_a34e6) { border-color: var(--border-color); }
.theme-light :is(.news-list,.news-list_a34e6), .theme-light :is(.txt-list-box,.txt-list-box_a34e6), .theme-light :is(.article-feed,.article-feed_a34e6) { border-color: var(--border-color); box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
:is(.news-item,.news-item_a34e6), :is(.article-line,.article-line_a34e6), :is(.list-row,.list-row_a34e6), :is(.txt-item,.txt-item_a34e6) { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px dashed var(--border-color); }
:is(.news-item,.news-item_a34e6):last-child, :is(.article-line,.article-line_a34e6):last-child, :is(.list-row,.list-row_a34e6):last-child, :is(.txt-item,.txt-item_a34e6):last-child { border-bottom: none; }
:is(.news-title,.news-title_a34e6), :is(.txt-title,.txt-title_a34e6), :is(.line-name,.line-name_a34e6), :is(.feed-title,.feed-title_a34e6) { font-size: 15px; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; margin-right: 20px; transition: color 0.2s; }
:is(.news-item,.news-item_a34e6):hover :is(.news-title,.news-title_a34e6), :is(.article-line,.article-line_a34e6):hover :is(.txt-title,.txt-title_a34e6), :is(.list-row,.list-row_a34e6):hover :is(.line-name,.line-name_a34e6), :is(.txt-item,.txt-item_a34e6):hover :is(.feed-title,.feed-title_a34e6) { color: var(--accent); padding-left: 5px; }
:is(.news-title,.news-title_a34e6)::before, :is(.txt-title,.txt-title_a34e6)::before, :is(.line-name,.line-name_a34e6)::before, :is(.feed-title,.feed-title_a34e6)::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; margin-right: 12px; vertical-align: middle; }
:is(.news-date,.news-date_a34e6), :is(.txt-time,.txt-time_a34e6), :is(.line-date,.line-date_a34e6), :is(.feed-time,.feed-time_a34e6) { font-size: 13px; color: var(--text-muted); flex-shrink: 0; font-family: monospace; }

@media (max-width: 768px) {
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) { padding: 10px 4%; }
    :is(.site-nav,.site-nav_a34e6), :is(.main-menu,.main-menu_a34e6), :is(.nav-container,.nav-container_a34e6) { order: 3; width: 100%; margin-top: 10px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    :is(.site-nav,.site-nav_a34e6) ul, :is(.main-menu,.main-menu_a34e6) ul, :is(.nav-container,.nav-container_a34e6) ul { width: max-content; gap: 15px; }
    :is(.site-nav,.site-nav_a34e6) a, :is(.main-menu,.main-menu_a34e6) a, :is(.nav-container,.nav-container_a34e6) a { font-size: 14px; white-space: nowrap; }
    :is(.site-search,.site-search_a34e6) input, :is(.search-box,.search-box_a34e6) input, :is(.head-search,.head-search_a34e6) input { width: 120px; }
    
    :is(.container,.container_a34e6) { margin: 15px auto; }
    :is(.section-title,.section-title_a34e6), :is(.mod-title,.mod-title_a34e6), :is(.idx-h2,.idx-h2_a34e6) { font-size: 18px; }

    :is(.layout-grid,.layout-grid_a34e6) :is(.post-list,.post-list_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.movie-grid-wrap,.movie-grid-wrap_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.resource-list,.resource-list_a34e6) { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    :is(.layout-grid,.layout-grid_a34e6) :is(.post-info,.post-info_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.detail-box,.detail-box_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.item-info,.item-info_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.text-wrap,.text-wrap_a34e6) { padding: 8px; }
    :is(.layout-grid,.layout-grid_a34e6) :is(.post-title,.post-title_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.item-name,.item-name_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.vod-title,.vod-title_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.h-title,.h-title_a34e6) { font-size: 13px; }
    :is(.layout-grid,.layout-grid_a34e6) :is(.post-meta,.post-meta_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.item-meta,.item-meta_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.vod-meta,.vod-meta_a34e6), :is(.layout-grid,.layout-grid_a34e6) :is(.meta-info,.meta-info_a34e6) { font-size: 11px; }

    :is(.layout-list,.layout-list_a34e6) :is(.post-card,.post-card_a34e6) a, :is(.layout-list,.layout-list_a34e6) :is(.item-card,.item-card_a34e6) a, :is(.layout-list,.layout-list_a34e6) :is(.vod-item,.vod-item_a34e6) a, :is(.layout-list,.layout-list_a34e6) :is(.list-item,.list-item_a34e6) a { height: 110px; }
    :is(.layout-list,.layout-list_a34e6) :is(.post-thumb,.post-thumb_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.pic-box,.pic-box_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.cover-wrap,.cover-wrap_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.img-box,.img-box_a34e6) { width: 75px; }
    :is(.layout-list,.layout-list_a34e6) :is(.post-title,.post-title_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.item-name,.item-name_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.vod-title,.vod-title_a34e6), :is(.layout-list,.layout-list_a34e6) :is(.h-title,.h-title_a34e6) { font-size: 14px; }
    :is(.article-related,.article-related_a34e6) :is(.post-list,.post-list_a34e6), :is(.article-related,.article-related_a34e6) :is(.movie-grid-wrap,.movie-grid-wrap_a34e6), :is(.article-related,.article-related_a34e6) :is(.resource-list,.resource-list_a34e6) { grid-template-columns: 1fr !important; gap: 10px; }
    :is(.article-related,.article-related_a34e6) :is(.post-card,.post-card_a34e6) a, :is(.article-related,.article-related_a34e6) :is(.item-card,.item-card_a34e6) a, :is(.article-related,.article-related_a34e6) :is(.vod-item,.vod-item_a34e6) a, :is(.article-related,.article-related_a34e6) :is(.list-item,.list-item_a34e6) a { min-height: 96px !important; padding: 9px !important; gap: 10px !important; }
    :is(.article-related,.article-related_a34e6) :is(.post-thumb,.post-thumb_a34e6), :is(.article-related,.article-related_a34e6) :is(.pic-box,.pic-box_a34e6), :is(.article-related,.article-related_a34e6) :is(.cover-wrap,.cover-wrap_a34e6), :is(.article-related,.article-related_a34e6) :is(.img-box,.img-box_a34e6) { width: 68px !important; max-width: 68px !important; flex-basis: 68px !important; }
}

@media (max-width: 480px) {
    :is(:is(.header-inner,.header-inner_a34e6), [class^="header-inner_"], [class*=" header-inner_"]) { gap: 10px; padding: 10px 16px; }
    :is(:is(.header-inner-stack,.header-inner-stack_a34e6), [class^="header-inner-stack_"], [class*=" header-inner-stack_"]) { gap: 10px; padding-top: 10px; padding-bottom: 10px; }
    :is(.site-logo,.site-logo_a34e6) { flex: 0 0 auto; }
    :is(.site-logo,.site-logo_a34e6) a { font-size: 18px; gap: 6px; }
    :is(.site-logo,.site-logo_a34e6) img { height: 26px; }
    :is(.site-search,.site-search_a34e6), :is(.search-box,.search-box_a34e6), :is(.head-search,.head-search_a34e6) { min-width: 0; max-width: 240px; width: auto; flex: 1 1 170px; margin-left: auto; justify-self: stretch; }
    :is(.site-search,.site-search_a34e6) form, :is(.search-box,.search-box_a34e6) form, :is(.head-search,.head-search_a34e6) form { min-width: 0; width: 100%; }
    :is(.site-search,.site-search_a34e6) input, :is(.search-box,.search-box_a34e6) input, :is(.head-search,.head-search_a34e6) input { min-width: 0; width: 0; flex: 1; padding: 6px 8px; }
    :is(.site-search,.site-search_a34e6) button, :is(.search-box,.search-box_a34e6) button, :is(.head-search,.head-search_a34e6) button { min-width: 56px; padding: 0 12px; flex: 0 0 auto; }
}

@media (max-width: 640px) {
    :is(.site-nav,.site-nav_a34e6), :is(.main-menu,.main-menu_a34e6), :is(.nav-container,.nav-container_a34e6) {
        overflow: visible;
        padding-bottom: 0;
    }
    :is(.site-nav,.site-nav_a34e6) ul, :is(.main-menu,.main-menu_a34e6) ul, :is(.nav-container,.nav-container_a34e6) ul {
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        gap: 10px 14px;
    }
    :is(.site-nav,.site-nav_a34e6) li, :is(.main-menu,.main-menu_a34e6) li, :is(.nav-container,.nav-container_a34e6) li {
        flex: 0 0 auto;
        min-width: 0;
    }
    :is(.site-nav,.site-nav_a34e6) a, :is(.main-menu,.main-menu_a34e6) a, :is(.nav-container,.nav-container_a34e6) a {
        display: inline-flex;
        align-items: center;
        min-height: 32px;
    }
}

@media (max-width: 360px) {
    :is(.site-logo,.site-logo_a34e6) { flex-basis: 100%; }
    :is(.site-logo,.site-logo_a34e6) a { font-size: 16px; }
    :is(.site-search,.site-search_a34e6), :is(.search-box,.search-box_a34e6), :is(.head-search,.head-search_a34e6) { max-width: none; flex-basis: 100%; margin-left: 0; }
    :is(.site-search,.site-search_a34e6) button, :is(.search-box,.search-box_a34e6) button, :is(.head-search,.head-search_a34e6) button { min-width: 52px; flex-basis: auto; }
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.site-search,.site-search_a34e6),
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.search-box,.search-box_a34e6),
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) :is(.head-search,.head-search_a34e6),
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .search-panel,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .search-strip,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .search-rail,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .search-band,
    :is(:is(.header-row,.header-row_a34e6), [class^="header-row_"], [class*=" header-row_"]) .search-bay { flex-basis: 100%; margin-left: 0; }
}

:is(.article-page,.article-page_a34e6) { width: 100%; margin-left: auto; margin-right: auto; }
:is(.article-shell,.article-shell_a34e6) { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; align-items: start; }
:is(.article-card,.article-card_a34e6) { 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 :is(.article-card,.article-card_a34e6) { background: var(--bg-card); }
:is(.article-kicker,.article-kicker_a34e6) { border-bottom: 1px solid var(--border-color); padding-bottom: 14px; }
:is(.article-card,.article-card_a34e6) :is(.article-header,.article-header_a34e6), :is(.article-card,.article-card_a34e6) :is(.post-header,.post-header_a34e6), :is(.article-card,.article-card_a34e6) :is(.detail-head,.detail-head_a34e6) { text-align: left; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--border-color); }
:is(.article-card,.article-card_a34e6) :is(.article-meta,.article-meta_a34e6), :is(.article-card,.article-card_a34e6) :is(.post-meta-info,.post-meta-info_a34e6), :is(.article-card,.article-card_a34e6) :is(.detail-meta,.detail-meta_a34e6) { display: flex; flex-wrap: wrap; gap: 14px; color: var(--text-muted); font-size: 14px; }
:is(.article-side,.article-side_a34e6) { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 18px; }
:is(.article-side-block,.article-side-block_a34e6) { 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 :is(.article-side-block,.article-side-block_a34e6) { background: var(--bg-card); }
:is(.article-side-block,.article-side-block_a34e6) h2 { font-size: 16px; margin: 0 0 14px; padding-left: 10px; border-left: 4px solid var(--accent); color: var(--text-main); }
:is(.article-side-list,.article-side-list_a34e6) { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
:is(.article-side-list,.article-side-list_a34e6) li { display: grid; gap: 4px; padding-bottom: 10px; border-bottom: 1px dashed var(--border-color); }
:is(.article-side-list,.article-side-list_a34e6) li:last-child { border-bottom: 0; padding-bottom: 0; }
:is(.article-side-list,.article-side-list_a34e6) a { color: var(--text-main); font-size: 14px; line-height: 1.55; }
:is(.article-side-list,.article-side-list_a34e6) time { color: var(--text-muted); font-size: 12px; }
:is(.article-side-block,.article-side-block_a34e6) div:is(.article-side-list,.article-side-list_a34e6) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
:is(.article-side-block,.article-side-block_a34e6) div:is(.article-side-list,.article-side-list_a34e6) a { background: var(--bg-soft); border: 1px solid var(--border-color); border-radius: 6px; color: var(--text-muted); padding: 8px 10px; text-align: center; }
:is(.article-side-block,.article-side-block_a34e6) div:is(.article-side-list,.article-side-list_a34e6) a:hover { color: var(--accent-contrast, #fff); border-color: var(--accent); background: var(--accent-gradient); }
:is(.article-related,.article-related_a34e6) { width: 100%; }
:is(.article-related,.article-related_a34e6) :is(.section-title,.section-title_a34e6), :is(.article-related,.article-related_a34e6) :is(.mod-title,.mod-title_a34e6), :is(.article-related,.article-related_a34e6) :is(.idx-h2,.idx-h2_a34e6) { margin-bottom: 16px; }
:is(.article-related,.article-related_a34e6) :is(.post-list,.post-list_a34e6), :is(.article-related,.article-related_a34e6) :is(.movie-grid-wrap,.movie-grid-wrap_a34e6), :is(.article-related,.article-related_a34e6) :is(.resource-list,.resource-list_a34e6) { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important; gap: 14px; width: 100%; }
:is(.article-related,.article-related_a34e6) :is(.post-card,.post-card_a34e6), :is(.article-related,.article-related_a34e6) :is(.item-card,.item-card_a34e6), :is(.article-related,.article-related_a34e6) :is(.vod-item,.vod-item_a34e6), :is(.article-related,.article-related_a34e6) :is(.list-item,.list-item_a34e6) { 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 :is(.article-related,.article-related_a34e6) :is(.post-card,.post-card_a34e6), .fx-flat :is(.article-related,.article-related_a34e6) :is(.item-card,.item-card_a34e6), .fx-flat :is(.article-related,.article-related_a34e6) :is(.vod-item,.vod-item_a34e6), .fx-flat :is(.article-related,.article-related_a34e6) :is(.list-item,.list-item_a34e6) { background: var(--bg-card) !important; }
:is(.article-related,.article-related_a34e6) :is(.post-card,.post-card_a34e6) a, :is(.article-related,.article-related_a34e6) :is(.item-card,.item-card_a34e6) a, :is(.article-related,.article-related_a34e6) :is(.vod-item,.vod-item_a34e6) a, :is(.article-related,.article-related_a34e6) :is(.list-item,.list-item_a34e6) 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; }
:is(.article-related,.article-related_a34e6) :is(.post-thumb,.post-thumb_a34e6), :is(.article-related,.article-related_a34e6) :is(.pic-box,.pic-box_a34e6), :is(.article-related,.article-related_a34e6) :is(.cover-wrap,.cover-wrap_a34e6), :is(.article-related,.article-related_a34e6) :is(.img-box,.img-box_a34e6) { 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; }
:is(.article-related,.article-related_a34e6) :is(.post-info,.post-info_a34e6), :is(.article-related,.article-related_a34e6) :is(.detail-box,.detail-box_a34e6), :is(.article-related,.article-related_a34e6) :is(.item-info,.item-info_a34e6), :is(.article-related,.article-related_a34e6) :is(.text-wrap,.text-wrap_a34e6) { min-width: 0; padding: 0 !important; min-height: 0; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
:is(.article-related,.article-related_a34e6) :is(.post-title,.post-title_a34e6), :is(.article-related,.article-related_a34e6) :is(.item-name,.item-name_a34e6), :is(.article-related,.article-related_a34e6) :is(.vod-title,.vod-title_a34e6), :is(.article-related,.article-related_a34e6) :is(.h-title,.h-title_a34e6) { 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; }
:is(.article-related,.article-related_a34e6) :is(.post-meta,.post-meta_a34e6), :is(.article-related,.article-related_a34e6) :is(.item-meta,.item-meta_a34e6), :is(.article-related,.article-related_a34e6) :is(.vod-meta,.vod-meta_a34e6), :is(.article-related,.article-related_a34e6) :is(.meta-info,.meta-info_a34e6) { margin-top: 0; display: flex; flex-wrap: wrap; gap: 6px; }
:is(.article-related,.article-related_a34e6) :is(.post-meta,.post-meta_a34e6) span, :is(.article-related,.article-related_a34e6) :is(.post-meta,.post-meta_a34e6) em, :is(.article-related,.article-related_a34e6) :is(.post-meta,.post-meta_a34e6) b, :is(.article-related,.article-related_a34e6) :is(.post-meta,.post-meta_a34e6) small,
:is(.article-related,.article-related_a34e6) :is(.item-meta,.item-meta_a34e6) span, :is(.article-related,.article-related_a34e6) :is(.item-meta,.item-meta_a34e6) em, :is(.article-related,.article-related_a34e6) :is(.item-meta,.item-meta_a34e6) b, :is(.article-related,.article-related_a34e6) :is(.item-meta,.item-meta_a34e6) small,
:is(.article-related,.article-related_a34e6) :is(.vod-meta,.vod-meta_a34e6) span, :is(.article-related,.article-related_a34e6) :is(.vod-meta,.vod-meta_a34e6) em, :is(.article-related,.article-related_a34e6) :is(.vod-meta,.vod-meta_a34e6) b, :is(.article-related,.article-related_a34e6) :is(.vod-meta,.vod-meta_a34e6) small,
:is(.article-related,.article-related_a34e6) :is(.meta-info,.meta-info_a34e6) span, :is(.article-related,.article-related_a34e6) :is(.meta-info,.meta-info_a34e6) em, :is(.article-related,.article-related_a34e6) :is(.meta-info,.meta-info_a34e6) b, :is(.article-related,.article-related_a34e6) :is(.meta-info,.meta-info_a34e6) 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) {
    :is(.article-related,.article-related_a34e6) :is(.post-list,.post-list_a34e6), :is(.article-related,.article-related_a34e6) :is(.movie-grid-wrap,.movie-grid-wrap_a34e6), :is(.article-related,.article-related_a34e6) :is(.resource-list,.resource-list_a34e6) { grid-template-columns: 1fr !important; gap: 10px !important; }
    :is(.article-related,.article-related_a34e6) :is(.post-card,.post-card_a34e6) a, :is(.article-related,.article-related_a34e6) :is(.item-card,.item-card_a34e6) a, :is(.article-related,.article-related_a34e6) :is(.vod-item,.vod-item_a34e6) a, :is(.article-related,.article-related_a34e6) :is(.list-item,.list-item_a34e6) a { min-height: 96px !important; padding: 9px !important; gap: 10px !important; }
    :is(.article-related,.article-related_a34e6) :is(.post-thumb,.post-thumb_a34e6), :is(.article-related,.article-related_a34e6) :is(.pic-box,.pic-box_a34e6), :is(.article-related,.article-related_a34e6) :is(.cover-wrap,.cover-wrap_a34e6), :is(.article-related,.article-related_a34e6) :is(.img-box,.img-box_a34e6) { width: 68px !important; max-width: 68px !important; flex-basis: 68px !important; }
}

:is(.movie-news-links,.movie-news-links_a34e6) { width: 100%; }
:is(.movie-news-list,.movie-news-list_a34e6) { display: grid; gap: 16px; width: 100%; }
:is(.movie-news-card,.movie-news-card_a34e6) { background: var(--surface-gradient); border: 1px solid var(--border-color); border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-shadow); transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.fx-flat :is(.movie-news-card,.movie-news-card_a34e6) { background: var(--bg-card); }
:is(.movie-news-card,.movie-news-card_a34e6):hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: var(--panel-shadow); }
:is(.movie-news-card,.movie-news-card_a34e6) a { display: grid; gap: 10px; height: 100%; padding: 18px; }
:is(.movie-news-card,.movie-news-card_a34e6) 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; }
:is(.movie-news-card,.movie-news-card_a34e6) 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; }
:is(.movie-news-card,.movie-news-card_a34e6) 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) { :is(.movie-news-list,.movie-news-list_a34e6)[style] { grid-template-columns: 1fr !important; } :is(.movie-news-card,.movie-news-card_a34e6) a { padding: 15px; } :is(.movie-news-card,.movie-news-card_a34e6) h3 { font-size: 15px; } }

:is(.article-header,.article-header_a34e6) { text-align: center; margin-bottom: 30px; }
:is(.article-header,.article-header_a34e6) 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) { :is(.article-shell,.article-shell_a34e6) { grid-template-columns: 1fr; } :is(.article-side,.article-side_a34e6) { position: static; } }
@media (max-width: 768px) { :is(.article-card,.article-card_a34e6) { padding: 20px; } :is(.article-header,.article-header_a34e6) h1 { font-size: 22px; text-align: left; } }

:is(.news-item,.news-item_a34e6):hover, :is(.article-line,.article-line_a34e6):hover, :is(.list-row,.list-row_a34e6):hover, :is(.txt-item,.txt-item_a34e6):hover { background: var(--accent-soft); }

:is(.section-header,.section-header_a34e6), :is(.mod-head,.mod-head_a34e6), :is(.idx-title-box,.idx-title-box_a34e6) { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; }
:is(.section-header,.section-header_a34e6) :is(.section-title,.section-title_a34e6), :is(.mod-head,.mod-head_a34e6) :is(.mod-title,.mod-title_a34e6), :is(.idx-title-box,.idx-title-box_a34e6) :is(.idx-h2,.idx-h2_a34e6) { margin-bottom: 0; border: none; padding: 0; }
:is(.section-header,.section-header_a34e6) :is(.section-title,.section-title_a34e6) strong, :is(.mod-head,.mod-head_a34e6) :is(.mod-title,.mod-title_a34e6) strong, :is(.idx-title-box,.idx-title-box_a34e6) :is(.idx-h2,.idx-h2_a34e6) strong { border-left: 4px solid var(--accent); padding-left: 10px; display: inline-block; }
:is(.section-more,.section-more_a34e6) { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
:is(.section-more,.section-more_a34e6):hover { color: var(--accent); }

@media (max-width: 768px) {
    :is(.news-title,.news-title_a34e6), :is(.txt-title,.txt-title_a34e6), :is(.line-name,.line-name_a34e6), :is(.feed-title,.feed-title_a34e6) { font-size: 14px; }
    :is(.news-date,.news-date_a34e6), :is(.txt-time,.txt-time_a34e6), :is(.line-date,.line-date_a34e6), :is(.feed-time,.feed-time_a34e6) { display: none; } 
    :is(.section-header,.section-header_a34e6), :is(.mod-head,.mod-head_a34e6), :is(.idx-title-box,.idx-title-box_a34e6) { margin-bottom: 15px; }
}

.movie-1 :is(.post-card,.post-card_a34e6), .movie-1 :is(.item-card,.item-card_a34e6), .movie-1 :is(.vod-item,.vod-item_a34e6), .movie-1 :is(.list-item,.list-item_a34e6) { 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 :is(.post-card,.post-card_a34e6), .fx-flat.movie-1 :is(.item-card,.item-card_a34e6), .fx-flat.movie-1 :is(.vod-item,.vod-item_a34e6), .fx-flat.movie-1 :is(.list-item,.list-item_a34e6) { background: var(--bg-card) !important; }
.movie-1 :is(.post-card,.post-card_a34e6):hover, .movie-1 :is(.item-card,.item-card_a34e6):hover, .movie-1 :is(.vod-item,.vod-item_a34e6):hover, .movie-1 :is(.list-item,.list-item_a34e6):hover { transform: translateY(-4px); border-color: var(--accent) !important; }
.movie-1 :is(.post-info,.post-info_a34e6), .movie-1 :is(.detail-box,.detail-box_a34e6), .movie-1 :is(.item-info,.item-info_a34e6), .movie-1 :is(.text-wrap,.text-wrap_a34e6) { padding: 12px 0 0 0; }
.movie-1:is(.layout-list,.layout-list_a34e6) :is(.post-card,.post-card_a34e6) a, .movie-1:is(.layout-list,.layout-list_a34e6) :is(.item-card,.item-card_a34e6) a, .movie-1:is(.layout-list,.layout-list_a34e6) :is(.vod-item,.vod-item_a34e6) a, .movie-1:is(.layout-list,.layout-list_a34e6) :is(.list-item,.list-item_a34e6) a { padding: 14px; }

.news-1 :is(.news-list,.news-list_a34e6), .news-1 :is(.txt-list-box,.txt-list-box_a34e6), .news-1 :is(.article-feed,.article-feed_a34e6) { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; background: transparent; padding: 0; border: none; box-shadow: none; }
.news-1 :is(.news-item,.news-item_a34e6), .news-1 :is(.article-line,.article-line_a34e6), .news-1 :is(.list-row,.list-row_a34e6), .news-1 :is(.txt-item,.txt-item_a34e6) { 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 :is(.news-item,.news-item_a34e6), .theme-light.news-1 :is(.article-line,.article-line_a34e6), .theme-light.news-1 :is(.list-row,.list-row_a34e6), .theme-light.news-1 :is(.txt-item,.txt-item_a34e6) { box-shadow: 0 2px 10px rgba(0,0,0,0.03); border-color: var(--border-color); }
.news-1 :is(.news-item,.news-item_a34e6):hover, .news-1 :is(.article-line,.article-line_a34e6):hover, .news-1 :is(.list-row,.list-row_a34e6):hover, .news-1 :is(.txt-item,.txt-item_a34e6):hover { transform: translateY(-2px); border-color: var(--accent); }
.news-1 :is(.news-title,.news-title_a34e6), .news-1 :is(.txt-title,.txt-title_a34e6), .news-1 :is(.line-name,.line-name_a34e6), .news-1 :is(.feed-title,.feed-title_a34e6) { 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 :is(.news-title,.news-title_a34e6)::before, .news-1 :is(.txt-title,.txt-title_a34e6)::before, .news-1 :is(.line-name,.line-name_a34e6)::before, .news-1 :is(.feed-title,.feed-title_a34e6)::before { display: none; }
.news-1 :is(.news-date,.news-date_a34e6), .news-1 :is(.txt-time,.txt-time_a34e6), .news-1 :is(.line-date,.line-date_a34e6), .news-1 :is(.feed-time,.feed-time_a34e6) { font-size: 12px; background: var(--bg-soft); padding: 3px 8px; border-radius: 4px; }
@media (max-width: 768px) { .news-1 :is(.news-list,.news-list_a34e6), .news-1 :is(.txt-list-box,.txt-list-box_a34e6), .news-1 :is(.article-feed,.article-feed_a34e6) { grid-template-columns: 1fr; } .news-1 :is(.news-date,.news-date_a34e6), .news-1 :is(.txt-time,.txt-time_a34e6), .news-1 :is(.line-date,.line-date_a34e6), .news-1 :is(.feed-time,.feed-time_a34e6) { display: inline-block; } }

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

:is(.pagination,.pagination_a34e6), :is(.page-nav,.page-nav_a34e6), :is(.site-pager,.site-pager_a34e6), :is(.page-wrap,.page-wrap_a34e6) { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px; margin: 50px 0 20px; padding: 0; }
:is(.pagination,.pagination_a34e6) a, :is(.page-nav,.page-nav_a34e6) a, :is(.site-pager,.site-pager_a34e6) a, :is(.page-wrap,.page-wrap_a34e6) a,
:is(.pagination,.pagination_a34e6) span, :is(.page-nav,.page-nav_a34e6) span, :is(.site-pager,.site-pager_a34e6) span, :is(.page-wrap,.page-wrap_a34e6) 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 :is(.pagination,.pagination_a34e6) a, .theme-dark :is(.page-nav,.page-nav_a34e6) a, .theme-dark :is(.site-pager,.site-pager_a34e6) a, .theme-dark :is(.page-wrap,.page-wrap_a34e6) a { border-color: rgba(255,255,255,0.05); }
.theme-light :is(.pagination,.pagination_a34e6) a, .theme-light :is(.page-nav,.page-nav_a34e6) a, .theme-light :is(.site-pager,.site-pager_a34e6) a, .theme-light :is(.page-wrap,.page-wrap_a34e6) a { border-color: rgba(0,0,0,0.06); }
:is(.pagination,.pagination_a34e6) a:hover, :is(.page-nav,.page-nav_a34e6) a:hover, :is(.site-pager,.site-pager_a34e6) a:hover, :is(.page-wrap,.page-wrap_a34e6) a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0,0,0,0.1); }
:is(.pagination,.pagination_a34e6) span.current, :is(.page-nav,.page-nav_a34e6) span.current, :is(.site-pager,.site-pager_a34e6) span.current, :is(.page-wrap,.page-wrap_a34e6) span.current { background: var(--accent-gradient); color: var(--accent-contrast, #fff); border-color: var(--accent); font-weight: 700; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

:is(.article-tags,.article-tags_a34e6) { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0; padding-top: 20px; border-top: 1px dashed var(--border-color); align-items: center; }
:is(.article-tags,.article-tags_a34e6) strong { font-size: 14px; color: var(--text-main); font-weight: 600; }
:is(.article-tags,.article-tags_a34e6) 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); }
:is(.article-tags,.article-tags_a34e6) a:hover { background: var(--accent-gradient); color: var(--accent-contrast, #fff); border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

:is(.article-container,.article-container_a34e6), :is(.article-main,.article-main_a34e6), :is(.post-main,.post-main_a34e6), :is(.detail-wrap,.detail-wrap_a34e6) { max-width: 100%; }
:is(.article-main,.article-main_a34e6) h1, :is(.post-main,.post-main_a34e6) h1, :is(.detail-head,.detail-head_a34e6) h1, :is(.article-header,.article-header_a34e6) h1, :is(.post-header,.post-header_a34e6) h1 { font-size: 30px; line-height: 1.35; letter-spacing: 0; }
:is(.article-body,.article-body_a34e6), :is(.post-content,.post-content_a34e6), :is(.detail-body,.detail-body_a34e6) { font-size: 16px; line-height: 1.9; color: var(--text-muted); }
:is(.article-body,.article-body_a34e6) h2, :is(.post-content,.post-content_a34e6) h2, :is(.detail-body,.detail-body_a34e6) h2 { font-size: 22px; line-height: 1.45; color: var(--text-main); margin: 28px 0 12px; }
:is(.article-body,.article-body_a34e6) img, :is(.post-content,.post-content_a34e6) img, :is(.detail-body,.detail-body_a34e6) img { max-width: 100%; height: auto; margin-left: auto; margin-right: auto; }

@media (max-width: 768px) {
    :is(.article-container,.article-container_a34e6), :is(.article-main,.article-main_a34e6), :is(.post-main,.post-main_a34e6), :is(.detail-wrap,.detail-wrap_a34e6) { width: 100% !important; max-width: 100% !important; }
    :is(.article-container,.article-container_a34e6) { padding-left: 20px !important; padding-right: 20px !important; }
    :is(.article-container,.article-container_a34e6) :is(.article-main,.article-main_a34e6), :is(.article-container,.article-container_a34e6) :is(.post-main,.post-main_a34e6) { padding-left: 0 !important; padding-right: 0 !important; }
    :is(.article-container,.article-container_a34e6) :is(.detail-head,.detail-head_a34e6), :is(.article-container,.article-container_a34e6) :is(.article-header,.article-header_a34e6), :is(.article-container,.article-container_a34e6) :is(.post-header,.post-header_a34e6), :is(.article-container,.article-container_a34e6) :is(.detail-body,.detail-body_a34e6), :is(.article-container,.article-container_a34e6) :is(.article-body,.article-body_a34e6), :is(.article-container,.article-container_a34e6) :is(.post-content,.post-content_a34e6) { width: 100% !important; max-width: 100% !important; }
    :is(.article-main,.article-main_a34e6) h1, :is(.post-main,.post-main_a34e6) h1, :is(.detail-head,.detail-head_a34e6) h1, :is(.article-header,.article-header_a34e6) h1, :is(.post-header,.post-header_a34e6) h1 { font-size: 19px; line-height: 1.5; max-width: 100% !important; white-space: normal !important; overflow: visible !important; text-overflow: clip !important; }
    :is(.article-main,.article-main_a34e6) h1 span, :is(.post-main,.post-main_a34e6) h1 span, :is(.detail-head,.detail-head_a34e6) h1 span, :is(.article-header,.article-header_a34e6) h1 span, :is(.post-header,.post-header_a34e6) 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; }
    :is(.article-body,.article-body_a34e6), :is(.post-content,.post-content_a34e6), :is(.detail-body,.detail-body_a34e6) { font-size: 15px; line-height: 1.85; }
    :is(.article-body,.article-body_a34e6) h2, :is(.post-content,.post-content_a34e6) h2, :is(.detail-body,.detail-body_a34e6) h2 { font-size: 18px; line-height: 1.5; }
    :is(.article-body,.article-body_a34e6) h2, :is(.post-content,.post-content_a34e6) h2, :is(.detail-body,.detail-body_a34e6) h2, :is(.article-body,.article-body_a34e6) p, :is(.post-content,.post-content_a34e6) p, :is(.detail-body,.detail-body_a34e6) p { word-break: break-all; overflow-wrap: anywhere; }
    :is(.article-body,.article-body_a34e6) p, :is(.post-content,.post-content_a34e6) p, :is(.detail-body,.detail-body_a34e6) p { margin-bottom: 14px; }
    :is(.layout-grid,.layout-grid_a34e6) :is(.post-list,.post-list_a34e6)[style], :is(.layout-grid,.layout-grid_a34e6) :is(.movie-grid-wrap,.movie-grid-wrap_a34e6)[style], :is(.layout-grid,.layout-grid_a34e6) :is(.resource-list,.resource-list_a34e6)[style] { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

:is(.post-nav,.post-nav_a34e6), :is(.page-nav-box,.page-nav-box_a34e6), :is(.context-nav,.context-nav_a34e6) { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin: 40px 0; max-width: 100%; min-width: 0; overflow: hidden; }
:is(.post-nav,.post-nav_a34e6) a, :is(.page-nav-box,.page-nav-box_a34e6) a, :is(.context-nav,.context-nav_a34e6) 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 :is(.post-nav,.post-nav_a34e6) a, .theme-dark :is(.page-nav-box,.page-nav-box_a34e6) a, .theme-dark :is(.context-nav,.context-nav_a34e6) a { border-color: var(--border-color); }
:is(.post-nav,.post-nav_a34e6) a:hover, :is(.page-nav-box,.page-nav-box_a34e6) a:hover, :is(.context-nav,.context-nav_a34e6) a:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
:is(.post-nav,.post-nav_a34e6) span, :is(.page-nav-box,.page-nav-box_a34e6) span, :is(.context-nav,.context-nav_a34e6) span { max-width: 100%; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0; overflow-wrap: anywhere; }
:is(.post-nav,.post-nav_a34e6) .nav-title, :is(.page-nav-box,.page-nav-box_a34e6) .nav-title, :is(.context-nav,.context-nav_a34e6) .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; }
:is(.post-nav,.post-nav_a34e6) .next, :is(.page-nav-box,.page-nav-box_a34e6) .next, :is(.context-nav,.context-nav_a34e6) .next { text-align: right; align-items: flex-end; }
@media (max-width: 768px) {
    :is(.post-nav,.post-nav_a34e6), :is(.page-nav-box,.page-nav-box_a34e6), :is(.context-nav,.context-nav_a34e6) { grid-template-columns: minmax(0, 1fr); gap: 12px; margin: 28px 0 0; overflow: visible; }
    :is(.post-nav,.post-nav_a34e6) a, :is(.page-nav-box,.page-nav-box_a34e6) a, :is(.context-nav,.context-nav_a34e6) a { width: 100%; padding: 15px 16px; }
    :is(.post-nav,.post-nav_a34e6) .nav-title, :is(.page-nav-box,.page-nav-box_a34e6) .nav-title, :is(.context-nav,.context-nav_a34e6) .nav-title { -webkit-line-clamp: 3; font-size: 14px; line-height: 1.55; }
}

:is(.seo-copyright,.seo-copyright_a34e6) { 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); }
:is(.seo-copyright,.seo-copyright_a34e6) strong { color: var(--text-main); }

:is(.player-container,.player-container_a34e6), :is(.video-box,.video-box_a34e6), :is(.play-area,.play-area_a34e6), :is(.v-player,.v-player_a34e6) { position: relative; border-radius: var(--radius); overflow: hidden; background: #080a10; box-shadow: 0 10px 30px rgba(0,0,0,0.2); margin-bottom: 35px; }
:is(.player-ratio,.player-ratio_a34e6), :is(.video-ratio,.video-ratio_a34e6), :is(.embed-responsive,.embed-responsive_a34e6) { position: relative; width: 100%; padding-top: 56.25%; }
:is(.player-ratio,.player-ratio_a34e6) iframe, :is(.video-ratio,.video-ratio_a34e6) iframe, :is(.embed-responsive,.embed-responsive_a34e6) iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

:is(.playlist-section,.playlist-section_a34e6), :is(.ep-list-box,.ep-list-box_a34e6), :is(.anthology-wrap,.anthology-wrap_a34e6) { background: var(--surface-gradient); padding: 25px; border-radius: var(--radius); margin-bottom: 35px; box-shadow: var(--card-shadow); border: 1px solid var(--border-color); }
:is(.playlist-header,.playlist-header_a34e6), :is(.ep-head,.ep-head_a34e6), :is(.anthology-title,.anthology-title_a34e6) { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
:is(.playlist-header,.playlist-header_a34e6) h3, :is(.ep-head,.ep-head_a34e6) h3, :is(.anthology-title,.anthology-title_a34e6) h3 { font-size: 18px; color: var(--text-main); padding-left: 10px; margin: 0; border-left: 4px solid var(--accent); }
:is(.playlist-grid,.playlist-grid_a34e6), :is(.ep-grid,.ep-grid_a34e6), :is(.anthology-list,.anthology-list_a34e6) { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 12px; }
:is(.ep-btn,.ep-btn_a34e6), :is(.play-btn-item,.play-btn-item_a34e6), :is(.ep-item,.ep-item_a34e6) { 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; }
:is(.ep-btn,.ep-btn_a34e6):hover, :is(.play-btn-item,.play-btn-item_a34e6):hover, :is(.ep-item,.ep-item_a34e6):hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
:is(.ep-btn,.ep-btn_a34e6).active, :is(.play-btn-item,.play-btn-item_a34e6).active, :is(.ep-item,.ep-item_a34e6).active,
:is(.ep-btn,.ep-btn_a34e6).on, :is(.play-btn-item,.play-btn-item_a34e6).on, :is(.ep-item,.ep-item_a34e6).on,
:is(.ep-btn,.ep-btn_a34e6).current, :is(.play-btn-item,.play-btn-item_a34e6).current, :is(.ep-item,.ep-item_a34e6).current { background: var(--accent-gradient); color: var(--accent-contrast, #fff); border-color: var(--accent); box-shadow: 0 4px 10px rgba(0,0,0,0.18); }

:is(.video-details,.video-details_a34e6), :is(.vod-info-box,.vod-info-box_a34e6), :is(.detail-wrap,.detail-wrap_a34e6) { background: var(--surface-gradient); padding: 25px; border-radius: var(--radius); border: 1px solid var(--border-color); margin-bottom: 40px; box-shadow: var(--card-shadow); }
:is(.vd-mobile-top,.vd-mobile-top_a34e6), :is(.info-top-box,.info-top-box_a34e6), :is(.vod-head,.vod-head_a34e6) { display: flex; gap: 30px; align-items: flex-start; }
:is(.vd-poster,.vd-poster_a34e6), :is(.vod-pic,.vod-pic_a34e6), :is(.detail-cover,.detail-cover_a34e6) { width: 180px; flex-shrink: 0; border-radius: 8px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
:is(.vd-info,.vd-info_a34e6), :is(.vod-text,.vod-text_a34e6), :is(.detail-text,.detail-text_a34e6) { flex: 1; min-width: 0; }
:is(.vd-title,.vd-title_a34e6), :is(.vod-name,.vod-name_a34e6), :is(.detail-title,.detail-title_a34e6) { font-size: 26px; margin-bottom: 18px; color: var(--text-main); line-height: 1.3; font-weight: 800; }
:is(.vd-meta-tags,.vd-meta-tags_a34e6), :is(.vod-tags,.vod-tags_a34e6), :is(.detail-tags,.detail-tags_a34e6) { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 25px; }
:is(.vd-tag,.vd-tag_a34e6), :is(.tag-item,.tag-item_a34e6), :is(.info-lbl,.info-lbl_a34e6) { 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); }
:is(.vd-tag,.vd-tag_a34e6).highlight, :is(.tag-item,.tag-item_a34e6).highlight, :is(.info-lbl,.info-lbl_a34e6).highlight { background: var(--accent-gradient); color: var(--accent-contrast, #fff); font-weight: bold; box-shadow: 0 2px 8px rgba(0,0,0,0.16); }
:is(.vd-desc,.vd-desc_a34e6), :is(.vod-content,.vod-content_a34e6), :is(.detail-desc,.detail-desc_a34e6) { font-size: 15px; color: var(--text-muted); line-height: 1.8; text-align: justify; word-wrap: break-word; }
:is(.vd-desc,.vd-desc_a34e6) h2, :is(.vd-desc,.vd-desc_a34e6) h3, :is(.vd-desc,.vd-desc_a34e6) h4,
:is(.vod-content,.vod-content_a34e6) h2, :is(.vod-content,.vod-content_a34e6) h3, :is(.vod-content,.vod-content_a34e6) h4,
:is(.detail-desc,.detail-desc_a34e6) h2, :is(.detail-desc,.detail-desc_a34e6) h3, :is(.detail-desc,.detail-desc_a34e6) 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; }
:is(.vd-desc,.vd-desc_a34e6) p, :is(.vod-content,.vod-content_a34e6) p, :is(.detail-desc,.detail-desc_a34e6) p { margin-bottom: 15px; }

:is(.ad-overlay,.ad-overlay_a34e6), :is(.sponsor-box,.sponsor-box_a34e6), :is(.promo-wrap,.promo-wrap_a34e6), :is(.vip-layer,.vip-layer_a34e6) { 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); }
:is(.ad-overlay,.ad-overlay_a34e6) img, :is(.sponsor-box,.sponsor-box_a34e6) img, :is(.promo-wrap,.promo-wrap_a34e6) img, :is(.vip-layer,.vip-layer_a34e6) 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; }
:is(.ad-overlay,.ad-overlay_a34e6) img:hover, :is(.sponsor-box,.sponsor-box_a34e6) img:hover, :is(.promo-wrap,.promo-wrap_a34e6) img:hover, :is(.vip-layer,.vip-layer_a34e6) img:hover { transform: scale(1.02); }
:is(.ad-close,.ad-close_a34e6), :is(.btn-close,.btn-close_a34e6), :is(.hide-ad,.hide-ad_a34e6), :is(.close-layer,.close-layer_a34e6) { 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; }
:is(.ad-close,.ad-close_a34e6):hover, :is(.btn-close,.btn-close_a34e6):hover, :is(.hide-ad,.hide-ad_a34e6):hover, :is(.close-layer,.close-layer_a34e6):hover { background: rgba(255,255,255,0.3); }

@media(max-width: 768px) {
    :is(.vd-mobile-top,.vd-mobile-top_a34e6), :is(.info-top-box,.info-top-box_a34e6), :is(.vod-head,.vod-head_a34e6) { flex-direction: column; gap: 20px; align-items: center; }
    :is(.vd-poster,.vd-poster_a34e6), :is(.vod-pic,.vod-pic_a34e6), :is(.detail-cover,.detail-cover_a34e6) { width: 140px; }
    :is(.vd-title,.vd-title_a34e6), :is(.vod-name,.vod-name_a34e6), :is(.detail-title,.detail-title_a34e6) { font-size: 22px; text-align: center; }
    :is(.vd-meta-tags,.vd-meta-tags_a34e6), :is(.vod-tags,.vod-tags_a34e6), :is(.detail-tags,.detail-tags_a34e6) { justify-content: center; }
    :is(.playlist-header,.playlist-header_a34e6), :is(.ep-head,.ep-head_a34e6), :is(.anthology-title,.anthology-title_a34e6) { flex-wrap: wrap; gap: 8px 12px; align-items: flex-start; }
    :is(.playlist-header,.playlist-header_a34e6) .ep-count, :is(.ep-head,.ep-head_a34e6) .ep-count, :is(.anthology-title,.anthology-title_a34e6) .ep-count { display: inline-block; max-width: 100%; white-space: normal; word-break: break-all; }
    :is(.playlist-grid,.playlist-grid_a34e6), :is(.ep-grid,.ep-grid_a34e6), :is(.anthology-list,.anthology-list_a34e6) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.header-row-mid,
:is([class^="header-row-mid_"], [class*=" header-row-mid_"]) { width: 100%; justify-content: space-between; flex-wrap: wrap; }
.header-flow-inline, .header-flow-split-nav, .header-flow-brand-stack, .header-flow-nav-top, .header-flow-trident, .header-flow-search-deck,
.home-flow-stack, .home-flow-duo, .home-flow-rail, .home-flow-stagger, .home-flow-bridge,
.list-flow-stack, .list-flow-rail, .list-flow-digest, .list-flow-frame,
.article-flow-stack, .article-flow-rail, .article-flow-ledger, .article-flow-brief,
.single-flow-stack, .single-flow-split, .single-flow-broadcast, .single-flow-brief,
.footer-flow-stack, .footer-flow-frame, .footer-flow-ledger, .footer-flow-column,
.error-flow-grid, .error-flow-rail, .error-flow-deck, .error-flow-guide { display: block; width: 100%; min-width: 0; }

.home-flow-main-duo, .home-flow-side-duo,
.home-flow-main-rail, .home-flow-side-rail,
.home-flow-main-stagger, .home-flow-side-stagger,
.home-flow-main-bridge, .home-flow-side-bridge,
.list-flow-aux-rail, .list-flow-main-rail,
.list-flow-aux-digest, .list-flow-main-digest,
.list-flow-aux-frame, .list-flow-main-frame,
.article-flow-main-rail, .article-flow-side-rail,
.article-flow-main-ledger, .article-flow-side-ledger,
.article-flow-main-brief, .article-flow-side-brief,
.single-stage-split, .single-meta-split,
.single-stage-broadcast, .single-meta-broadcast,
.single-stage-brief, .single-meta-brief,
.footer-flow-main-frame, .footer-flow-meta-frame,
.footer-flow-main-ledger, .footer-flow-meta-ledger,
.footer-flow-main-column, .footer-flow-meta-column,
.error-flow-main-grid, .error-flow-side-grid,
.error-flow-main-rail, .error-flow-side-rail,
.error-flow-main-deck, .error-flow-side-deck,
.error-flow-main-guide, .error-flow-side-guide { min-width: 0; }

@media (min-width: 960px) {
    .home-flow-duo, .home-flow-bridge { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr); gap: 28px; align-items: start; }
    .home-flow-rail { display: grid; grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.38fr); gap: 28px; align-items: start; }
    .home-flow-stagger { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; align-items: start; }
    .article-flow-rail, .article-flow-ledger, .article-flow-brief { display: grid; grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.78fr); gap: 30px; align-items: start; }
    .single-flow-split, .single-flow-broadcast, .single-flow-brief { display: grid; grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.9fr); gap: 30px; align-items: start; }
    .footer-flow-frame, .footer-flow-ledger { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; }
    .error-flow-rail, .error-flow-guide { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr); gap: 24px; align-items: start; }
}

@media (max-width: 800px) {
    .header-flow-brand-stack :is(.header-row,.header-row_a34e6),
    .header-flow-nav-top :is(.header-row,.header-row_a34e6),
    .header-flow-trident :is(.header-row,.header-row_a34e6),
    .header-flow-search-deck :is(.header-row,.header-row_a34e6),
    .header-flow-split-nav :is(.header-row,.header-row_a34e6) { gap: 14px; }
}

@media (min-width: 801px) {
    .header-flow-search-deck :is(.header-row-top,.header-row-top_a34e6) {
        justify-content: flex-start;
        align-items: center;
        gap: 16px;
    }
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) {
        align-items: center;
        justify-content: space-between;
        gap: 18px;
    }
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) :is(.site-nav,.site-nav_a34e6),
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) :is(.main-menu,.main-menu_a34e6),
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) :is(.nav-container,.nav-container_a34e6),
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .nav-rail,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .nav-strip,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .nav-panel,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .nav-band,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .nav-bay {
        flex: 1 1 auto;
        justify-content: flex-start;
        min-width: 0;
    }
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) :is(.site-nav,.site-nav_a34e6) ul,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) :is(.main-menu,.main-menu_a34e6) ul,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) :is(.nav-container,.nav-container_a34e6) ul,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .nav-rail ul,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .nav-strip ul,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .nav-panel ul,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .nav-band ul,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .nav-bay ul {
        justify-content: flex-start;
        row-gap: 8px;
    }
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) :is(.site-search,.site-search_a34e6),
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) :is(.search-box,.search-box_a34e6),
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) :is(.head-search,.head-search_a34e6),
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .search-panel,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .search-strip,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .search-rail,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .search-band,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .search-bay {
        margin-left: auto;
        margin-right: 0;
        flex: 0 1 280px;
        min-width: 220px;
        max-width: 300px;
    }
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) :is(.site-search,.site-search_a34e6) form,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) :is(.search-box,.search-box_a34e6) form,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) :is(.head-search,.head-search_a34e6) form,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .search-panel form,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .search-strip form,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .search-rail form,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .search-band form,
    .header-flow-search-deck :is(.header-row-bottom,.header-row-bottom_a34e6) .search-bay form {
        max-width: none;
    }
}
