﻿:root {
    --page-bg: #222222;
    --panel-bg: #2a2a2a;
    --panel-alt: #303043;
    --border-color: #3a3a3a;
    --text-main: #f5f5f5;
    --text-muted: #bdbdbd;
    --accent: #c6463a;
    --cyan: #00d7ff;
    --green: #18ff3c;
    --orange: #ff7a1a;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text-main);
    font: 16px/1.5 "Microsoft YaHei", "PingFang SC", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.page-shell {
    width: min(1250px, calc(100% - 24px));
    margin: 0 auto;
}

.site-header {
    background: linear-gradient(180deg, #1b1b1b 0%, #1b1b1b 72%, var(--page-bg) 100%);
    padding: 10px 0 0;
    border-bottom: 0;
}

.site-header .page-shell {
    display: block;
}

.topbar {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 34px;
}

.brand {
    grid-column: 1;
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.brand a {
    display: inline-flex;
    align-items: center;
}

.brand-sep,
.brand-url {
    display: inline-block;
}

.brand-name {
    display: inline-block;
}

.search-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    width: min(520px, calc(100% - 520px));
    min-width: 0;
    transform: translate(-50%, -50%);
}

.search-form {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    border: 0;
    border-radius: 3px;
    background: #3f3f3f;
    margin: 0;
}

.search-input {
    width: 100%;
    height: 29px;
    border: 0;
    outline: 0;
    padding: 0 12px;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
}

.search-input::placeholder {
    color: #9d9d9d;
}

.search-button {
    flex: 0 0 62px;
    height: 29px;
    border: 0;
    background: #e11d1d;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.quick-links {
    grid-column: 3;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    font-size: 12px;
    white-space: nowrap;
    text-align: center;
    line-height: 1.25;
    z-index: 2;
}

.quick-links a {
    display: block;
    padding: 1px 0;
}

.quick-links a + a {
    border-top: 1px solid rgba(255,255,255,0.28);
}

.quick-links a:hover,
.nav-menu a:hover,
.notice-link:hover {
    color: #fff;
}

.nav-panel {
    width: 100%;
    clear: both;
    margin-top: 10px;
    background: transparent;
    border-top: 1px solid #282828;
    border-radius: 0;
    padding: 8px 0 14px;
}

.nav-menu {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
    gap: 8px 10px;
    align-items: center;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 30px;
    padding: 0 8px;
    color: #f2f2f2;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 999px;
    background: rgba(255,255,255,0.035);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    text-align: center;
    white-space: nowrap;
}

.nav-menu a:hover {
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}

.nav-menu a.is-active {
    border-color: rgba(96,153,183,0.52);
    background: #31556a;
    color: #ffffff;
}

.nav-menu a.nav-home {
    border-color: #e11d1d;
    background: #e11d1d;
    color: #ffffff;
}

.notice-board {
    width: 100%;
    clear: both;
    margin-top: 0;
    border: 1px solid rgba(255,255,255,0.06);
    background: #1b1b1b;
}

.notice-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.notice-row:first-child {
    border-top: 0;
}

.notice-cell {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.025);
    padding: 5px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

.notice-cell + .notice-cell {
    border-left: 1px solid rgba(255,255,255,0.06);
}

.notice-red {
    color: #ff5e2f;
}

.notice-cyan {
    color: var(--cyan);
}

.notice-green {
    color: var(--green);
}

.notice-orange {
    color: var(--orange);
}

.notice-link {
    display: inline-block;
    align-items: center;
    justify-content: center;
    width: 100%;
    word-break: break-all;
}

.page-demo {
    min-height: 0;
    margin-top: 2px;
    border: 1px solid rgba(255,255,255,0.06);
    background:
        linear-gradient(rgba(27, 27, 27, 0.88), rgba(27, 27, 27, 0.92)),
        url("../../img/81NAuaTWjpn5.webp") repeat top left;
    filter: none;
}

.page-demo .demo-copy {
    max-width: 920px;
    margin: 0 auto;
    padding: 14px 16px 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.7;
}

.page-demo .demo-copy p {
    margin: 0 0 6px;
}

.home-section {
    margin-top: 6px;
}

.section-bar {
    display: flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid var(--border-color);
    border-left: 4px solid #ff5a54;
    border-radius: 4px;
    background: linear-gradient(#1f1f1f, #111111);
    position: relative;
}

.section-bar__title {
    color: #f4f4f4;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.section-bar::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-right: 8px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #7d838c;
}

.vod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
    margin-top: 8px;
}

.vod-card {
    min-width: 0;
}

.vod-card__link {
    display: grid;
    grid-template-rows: auto 45px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #232323;
    padding: 0;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.vod-card__thumb {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 54%;
    overflow: hidden;
    background: #111111;
}

.vod-card__thumb.lazyload-bg,
.vod-card__thumb.lazyloaded-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.vod-card__thumb.lazyload-bg {
    background-image: url("../../img/load.gif");
    background-size: 42px 42px;
    background-color: #111111;
}

.vod-card__remarks {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 22px;
    padding: 1px 4px;
    background: rgba(43, 43, 43, 0.88);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.vod-card__body {
    display: grid;
    gap: 1px;
    align-content: start;
    height: 52px;
    padding: 4px 6px 3px;
}

.vod-card__title {
    display: block;
    overflow: hidden;
    min-height: 16px;
    color: #f0f0f0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vod-card__meta {
    color: #bbbbbb;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vod-card__link:hover {
    border-color: #616161;
    background: #272727;
}

.vod-card__link:hover .vod-card__title {
    color: #ffffff;
}

.text-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 8px;
}

.text-item {
    display: block;
    overflow: hidden;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: #272727;
    color: #d9d9d9;
    font-size: 14px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-item:hover {
    color: #ffffff;
    background: #2e2e2e;
}

.text-gradient-line {
    height: 4px;
    margin-top: 10px;
    background: linear-gradient(90deg, #168f26 0%, #168f26 8%, #15914a 30%, #2477a6 68%, #5f8bc0 100%);
}

.text-gradient-line--play {
    margin-bottom: 14px;
}

.pager-summary {
    margin-top: 10px;
    color: #bfbfbf;
    font-size: 12px;
    text-align: center;
}

.pager {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #9a8c00;
}

.pager__item {
    min-width: 45px;
    height: 36px;
    padding: 0 14px;
    border: 0;
    border-radius: 4px;
    background: #2b2b2b;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 36px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.pager__item.is-active {
    background: #5c3b3b;
    color: #ffffff;
}

.pager__item:disabled {
    cursor: default;
    opacity: 0.4;
}

.pager__item:first-child,
.pager__item:last-child {
    min-width: 126px;
    background: #2b2b2b;
    color: #ffd21a;
    font-size: 22px;
    line-height: 34px;
}

.pager__item:first-child:hover:not(:disabled),
.pager__item:last-child:hover:not(:disabled) {
    background: #363636;
    color: #ffd21a;
}

.pager__item:not(:first-child):not(:last-child):hover:not(:disabled) {
    background: #3a3a3a;
}

.tag-cloud {
    padding: 10px 10px 11px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    background: #1b1b1b;
}

.tag-cloud__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(76px, 1fr));
    gap: 6px;
    max-height: 62px;
    overflow: hidden;
    padding: 1px;
}

.tag-cloud.is-expanded .tag-cloud__list {
    max-height: none;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 28px;
    padding: 0 8px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    color: #f2f2f2;
    font-size: 12px;
    font-weight: 700;
    line-height: 25px;
    text-shadow: none;
    white-space: nowrap;
    box-shadow: none;
}

.tag-chip:hover {
    border-color: rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.09);
    color: #ffffff;
}

.tag-toggle {
    display: block;
    min-width: 92px;
    height: 28px;
    margin: 10px auto 0;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: #d8d8d8;
    font-size: 12px;
    cursor: pointer;
}

.play-shell {
    margin-top: 2px;
    border: 1px solid var(--border-color);
    background: #1f1f1f;
}

.play-lite-quicknav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.play-lite-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    height: 36px;
    padding: 0 20px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    background: linear-gradient(180deg, #303039 0%, #202026 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.play-lite-pill:hover {
    background: linear-gradient(180deg, #3a3a44 0%, #25252d 100%);
    color: #ffffff;
}

.play-lite-pill--home {
    border-color: rgba(255,105,85,0.38);
}

.play-lite-pill--back {
    border-color: rgba(111,215,255,0.3);
}

.play-lite-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
    padding: 6px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #161616;
}

.play-lite-title {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: #f2f2f2;
    font-size: 13px;
    line-height: 1;
}

.play-lite-title span {
    color: #ff6b4a;
    font-weight: 700;
    white-space: nowrap;
}

.play-lite-title strong {
    display: block;
    overflow: hidden;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.play-lite-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 6px;
}

.play-lite-actions a,
.play-lite-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    background: #222226;
    color: #eeeeee;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.play-lite-actions a:hover,
.play-lite-actions button:hover {
    background: #2d2d33;
    color: #ffffff;
}

.play-topline,
.play-appbar {
    padding: 6px 10px;
    background: #050505;
    color: #d9d9d9;
    font-size: 12px;
    line-height: 1.45;
}

.play-topline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.play-topline a,
.play-appbar a {
    color: #ff3e2f;
    font-weight: 700;
}

.play-topline span {
    color: #d9d9d9;
    margin-left: 2px;
}

.play-report-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 10px;
    border: 1px solid rgba(255,62,47,0.55);
    border-radius: 999px;
    background: rgba(255,62,47,0.12);
    color: #ffffff !important;
    line-height: 1;
}

.report-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 96px 12px 0;
}

.report-modal.is-open {
    display: flex;
}

.report-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.42);
}

.report-modal__panel,
.report-page-form {
    position: relative;
    width: min(400px, calc(100vw - 24px));
    padding: 14px 12px 12px;
    border: 1px solid rgba(255,92,66,0.45);
    border-radius: 6px;
    background: #2a211c;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.5), 0 10px 28px rgba(0,0,0,0.45);
}

.report-page-form {
    margin-top: 8px;
}

.report-modal__close {
    position: absolute;
    right: 8px;
    top: 6px;
    width: 22px;
    height: 22px;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.report-modal__textarea {
    display: block;
    width: 100%;
    min-height: 72px;
    padding: 8px;
    border: 1px solid #8c8c8c;
    border-radius: 2px;
    background: #f8f8f8;
    color: #222222;
    font-size: 14px;
    font-family: Arial, "Microsoft YaHei", sans-serif;
    line-height: 1.35;
    resize: vertical;
}

.report-modal__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin-top: 14px;
    border: 0;
    border-radius: 5px;
    background: #12a8ed;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
}

.report-modal__submit:hover {
    background: #18b6ff;
}

.report-modal__submit:disabled {
    cursor: default;
    opacity: 0.7;
}

.report-modal__msg {
    min-height: 18px;
    margin: 8px 0 0;
    color: #ffffff;
    font-size: 12px;
    text-align: center;
}

.mac_pop_msg_bg {
    position: fixed;
    z-index: 10000;
    inset: 0;
    background: rgba(0,0,0,0.28);
}

.mac_pop_msg {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: none;
    width: 160px;
    height: 42px;
    margin: auto;
    padding: 12px;
    border-radius: 6px;
    background: #ffffff;
    color: #222222;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.mac_pop_msg .pop-msg {
    text-align: center;
    font-size: 14px;
    line-height: 18px;
}

.play-appbar {
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--border-color);
    background: #1f1f1f;
    padding: 0;
}

.play-appbar span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 12px;
    text-align: center;
}

.play-appbar span + span {
    border-left: 1px solid var(--border-color);
}

.play-wrapper {
    margin-top: 0;
    background: #111111;
}

.play-player-shell {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 560px;
    background: #0f0f0f;
    overflow: hidden;
}

.media-loading-mask {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0f0f0f;
    z-index: 10;
    gap: 12px;
}

.media-loading-spinner {
    display: block;
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255,255,255,0.15);
    border-top-color: rgba(255,255,255,0.7);
    border-radius: 50%;
    animation: media-spin 0.8s linear infinite;
}

@keyframes media-spin {
    to { transform: rotate(360deg); }
}

.media-loading-text {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.play-player-poster {
    position: absolute;
    inset: 0;
    background-color: #111;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.play-player-mask {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.26) 0%, rgba(8, 8, 8, 0.58) 100%);
}

.play-launch-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    background: rgba(17, 17, 17, 0.88);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.play-launch-btn:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(28, 28, 28, 0.96);
}

.play-launch-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e25a4e;
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

.play-launch-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    line-height: 1.4;
}
.play-player {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    min-height: 560px;
    background: #0f0f0f;
    overflow: hidden;
}

.play-player iframe,
.play-player video,
.play-player #playleft,
.play-player .MacPlayer,
.play-player .stui-player__video {
    width: 100% !important;
    height: 100% !important;
}

.play-player .MacPlayer,
.play-player #playleft {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
}

.play-player-frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}

.play-notes {
    margin-top: 8px;
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    background: #232323;
    color: #d9d9d9;
    font-size: 13px;
    line-height: 1.55;
}

.play-notes p {
    margin: 0;
}

.play-banner {
    margin-top: 8px;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #232323;
}

.play-banner img {
    display: block;
    width: 100%;
    max-width: 760px;
    height: auto;
    margin: 0 auto;
}

.promo-box {
    margin-top: 8px;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #232323;
}

.promo-box img {
    display: block;
    width: 100%;
    max-width: 760px;
    height: auto;
    margin: 0 auto;
}

.detail-crumbs.section-bar {
    margin-top: 8px;
    min-height: 32px;
    padding: 0 10px;
}

.detail-crumbs.section-bar .section-bar__title {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 32px;
}

.play-tags-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.play-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    background: #222226;
    color: #f2f2f2;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.play-tag:hover {
    background: #2b2b31;
    border-color: rgba(255,255,255,0.14);
    color: #ffffff;
}

.play-tag--action {
    background: #26262c;
}

.crumb-link {
    color: #6fd7ff !important;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.crumb-link:hover {
    color: #ffffff !important;
}

.crumb-current {
    color: #ffffff;
}

.detail-crumbs {
    min-height: 28px;
    padding: 0 10px;
    color: #d8d8d8;
    font-size: 12px;
    line-height: 1.4;
}

.detail-crumbs .section-bar__title {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}

.detail-crumbs a,
.detail-crumbs a:hover {
    color: #ffffff;
}

.detail-notes {
    margin-top: 4px;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #252525;
    color: #f0f0f0;
    font-size: 14px;
    line-height: 1.45;
}

.detail-notes p {
    margin: 0 0 2px;
}

.detail-notes p:last-child {
    margin-bottom: 0;
}

.detail-card {
    display: grid;
    grid-template-columns: 520px minmax(0, 1fr);
    gap: 18px;
    margin-top: 6px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: #232323;
}

.detail-poster {
    overflow: hidden;
    border: 1px solid #4a4a4a;
    border-radius: 10px;
    background: var(--page-bg);
}

.detail-poster a,
.detail-poster img {
    width: 100%;
    display: block;
    aspect-ratio: 580 / 340;
    object-fit: cover;
    background: #222222 !important;
    background-color: #222222 !important;
}

.detail-body {
    min-width: 0;
}

.detail-title {
    margin: 2px 0 18px;
    color: #2fd0ff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
}

.detail-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    height: 32px;
    padding: 0 16px;
    border-radius: 3px;
    background: linear-gradient(#3f4f5e, #2d3945);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.detail-meta {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    color: #efefef;
    font-size: 13px;
    line-height: 1.7;
}

.detail-meta li {
    margin: 0 0 8px;
}

.detail-meta a {
    color: #ffffff;
}

.detail-playlist {
    margin-top: 6px;
}

.play-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
    margin-top: 6px;
}

.play-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 8px;
    border-radius: 4px;
    background: #343446;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.play-link:hover {
    background: #d75247;
}

.vod-grid--detail-related {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}

.vod-grid--detail-related .vod-card__link {
    grid-template-rows: auto 46px;
}

.vod-grid--detail-related .vod-card__thumb {
    padding-top: 54%;
}

.vod-grid--detail-related .vod-card__body {
    height: 46px;
    padding: 4px 4px 3px;
}

.vod-grid--detail-related .vod-card__title {
    min-height: 18px;
    font-size: 13px;
    line-height: 1.2;
}

.vod-grid--detail-related .vod-card__meta {
    font-size: 12px;
    line-height: 1.1;
}

.site-footer {
    margin-top: 8px;
    padding: 0 0 24px;
    text-align: center;
}

.footer-bars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: min(1250px, calc(100% - 24px));
    margin: 0 auto;
}

.footer-bars__item {
    display: block;
    height: 5px;
}

.footer-bars__item--green {
    background: #17c63b;
}

.footer-bars__item--blue {
    background: #2b78d0;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    color: #d6d6d6;
    font-size: 13px;
}

.footer-copy {
    width: min(1250px, calc(100% - 24px));
    margin: 10px auto 0;
    color: #d0d0d0;
    font-size: 12px;
    line-height: 1.7;
}

.footer-copy p {
    margin: 0;
}

@media (max-width: 900px) {
    .topbar {
        gap: 12px;
    }

    .brand {
        font-size: 18px;
    }

    .quick-links {
        font-size: 13px;
    }

}

@media (max-width: 720px) {
    .page-shell {
        width: min(100% - 16px, 1250px);
    }

    .site-header {
        padding: 8px 0 4px;
    }

    .topbar {
        display: grid;
        grid-template-columns: max-content minmax(88px, 1fr) max-content;
        position: static;
        align-items: center;
        gap: 6px;
        width: 100%;
    }

    .brand {
        font-size: 15px;
        white-space: nowrap;
        line-height: 1;
    }

    .brand-sep,
    .brand-url {
        display: none;
    }

    .quick-links {
        flex: 0 0 auto;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        gap: 1px;
        text-align: right;
        font-size: 10px;
        line-height: 1.1;
    }

    .search-wrap {
        position: static;
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
        transform: none;
        padding: 0 12px;
        box-sizing: border-box;
    }

    .search-form {
        width: 100%;
        max-width: 100%;
        height: 30px;
        border-width: 0;
        background: #3f3f3f;
    }

    .search-input {
        height: 30px;
        padding: 0 6px;
        font-size: 11px;
        background: transparent;
    }

    .search-button {
        flex-basis: 42px;
        height: 30px;
        font-size: 11px;
    }

    .nav-panel {
        margin-top: 8px;
        padding: 6px 0 8px;
    }

    .nav-menu {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
    }

    .nav-menu a {
        width: 100%;
        min-width: 0;
        min-height: 30px;
        padding: 0 4px;
        font-size: 13px;
    }

    .notice-cell {
        min-height: 30px;
        padding: 4px 5px;
        font-size: 12px;
        line-height: 1.2;
    }

    .notice-link {
        word-break: break-word;
    }

    .page-demo .demo-copy {
        padding: 10px 8px 8px;
        font-size: 13px;
        line-height: 1.65;
    }

    .home-section {
        margin-top: 4px;
    }

    .section-bar {
        min-height: 32px;
        padding: 0 10px;
    }

    .section-bar__title {
        font-size: 12px;
    }

    .vod-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 6px;
    }

    .vod-card__link {
        grid-template-rows: auto 45px;
        padding: 0;
    }

    .vod-card__thumb {
        height: 0;
        padding-top: 54%;
    }

    .vod-card__remarks {
        min-width: 20px;
        padding: 1px 3px;
        font-size: 10px;
    }

    .vod-card__body {
        gap: 1px;
        height: 45px;
        padding: 4px 4px 2px;
    }

    .vod-card__title {
        min-height: 16px;
        font-size: 13px;
        line-height: 1.2;
    }

    .vod-card__meta {
        font-size: 12px;
        line-height: 1.1;
    }

    .text-grid {
        grid-template-columns: 1fr;
        gap: 5px;
        margin-top: 5px;
    }

    .text-item {
        padding: 7px 9px;
        font-size: 13px;
    }

    .pager {
        gap: 14px;
        margin-top: 10px;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .pager__item {
        min-width: 30px;
        width: 30px;
        height: 30px;
        padding: 0;
        border-radius: 4px;
        background: #272727;
        color: #ffffff;
        font-size: 16px;
        line-height: 30px;
    }

    .pager__item.is-active {
        background: #573739;
        color: #ffffff;
    }

    .pager__item:first-child,
    .pager__item:last-child {
        min-width: 30px;
        width: auto;
        padding: 0 6px;
        background: #252525;
        color: #ffd21a;
        font-size: 16px;
        line-height: 30px;
    }

    .pager__item:last-child {
        min-width: 30px;
    }

    .pager__item:first-child:hover:not(:disabled),
    .pager__item:last-child:hover:not(:disabled) {
        background: #303030;
        color: #ffd21a;
    }

    .pager__item:not(:first-child):not(:last-child):hover:not(:disabled) {
        background: #573739;
    }

    .tag-cloud {
        padding: 7px 7px 8px;
    }

    .tag-cloud__list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 4px;
        max-height: 58px;
    }

    .tag-chip {
        min-width: 0;
        height: 27px;
        padding: 0 4px;
        border-radius: 999px;
        font-size: 12px;
        line-height: 25px;
    }

    .detail-card {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 7px;
    }

    .play-appbar {
        grid-template-columns: 1fr;
    }

    .play-lite-quicknav {
        gap: 10px;
        margin-bottom: 5px;
    }

    .play-lite-pill {
        min-width: 72px;
        height: 32px;
        padding: 0 16px;
        font-size: 13px;
    }

    .play-lite-header {
        padding: 7px 8px;
    }

    .play-lite-title,
    .play-lite-title strong {
        font-size: 12px;
    }

    .play-player-shell {
        min-height: 220px;
    }

    .play-player {
        min-height: 220px;
    }

    .play-launch-btn {
        min-height: 38px;
        padding: 0 14px;
        font-size: 12px;
    }

    .play-launch-icon {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    .play-launch-note {
        font-size: 13px;
        line-height: 1.45;
    }

    .play-notes {
        padding: 10px 11px;
        font-size: 13px;
        line-height: 1.65;
    }

    .play-tags-bar {
        gap: 6px;
        margin-top: 6px;
    }

    .play-tag {
        min-width: 68px;
        height: 34px;
        padding: 0 10px;
        font-size: 12px;
        line-height: 1;
    }

    .play-appbar span {
        min-height: 38px;
        padding: 6px 9px;
        font-size: 13px;
        line-height: 1.35;
    }

    .play-appbar span + span {
        border-left: 0;
        border-top: 1px solid var(--border-color);
    }

    .play-banner {
        margin-top: 5px;
        padding: 7px;
    }

    .promo-box {
        margin-top: 5px;
        padding: 7px;
    }

    .detail-poster img {
        aspect-ratio: 580 / 340;
    }

    .detail-title {
        font-size: 18px;
        line-height: 1.45;
        margin-bottom: 10px;
    }

    .detail-notes {
        padding: 10px 11px;
        font-size: 13px;
        line-height: 1.6;
    }

    .detail-meta {
        font-size: 13px;
        line-height: 1.7;
    }

    .detail-play-btn {
        min-width: 126px;
        height: 36px;
        font-size: 13px;
    }

    .play-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px;
    }

    .play-link {
        min-height: 34px;
        font-size: 13px;
    }

    .vod-grid--detail-related {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .vod-grid--detail-related .vod-card__link {
        grid-template-rows: auto 42px;
    }

    .vod-grid--detail-related .vod-card__body {
        height: 42px;
        padding: 3px 3px 2px;
    }

    .vod-grid--detail-related .vod-card__title {
        font-size: 13px;
    }

    .vod-grid--detail-related .vod-card__meta {
        font-size: 12px;
    }

    .site-footer {
        margin-top: 5px;
        padding-bottom: 16px;
    }

    .footer-bars,
    .footer-copy {
        width: min(100% - 16px, 1250px);
    }

    .footer-links {
        margin-top: 10px;
        gap: 8px;
        font-size: 11px;
    }

    .footer-copy {
        margin-top: 7px;
        font-size: 10px;
        line-height: 1.5;
    }
}
