html,
body {
    margin: 0;
    padding: 0;
    background: #05070a;
    color: #f3f6f8;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

:root {
    --pc-accent: #c1fe00;
    --pc-accent-soft: rgba(193, 254, 0, 0.14);
    --pc-accent-border: rgba(193, 254, 0, 0.24);
    --pc-accent-text: #ecffc2;
    --pc-accent-ink: #111603;
}

* {
    box-sizing: border-box;
}

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

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

.pc-body {
    min-width: 1320px;
}

.pc-app {
    display: flex;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(108, 255, 74, 0.08), transparent 22%),
        linear-gradient(180deg, #080b0e 0%, #05070a 100%);
}

.sidebar {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    width: 168px;
    min-width: 168px;
    height: 100vh;
    padding: 20px 12px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(9, 12, 14, 0.98), rgba(6, 8, 9, 0.98));
    overflow: hidden;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 20px;
}

.brand-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.brand-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--pc-accent);
    letter-spacing: 0.02em;
}

.side-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 13px 16px;
    border-radius: 14px;
    color: #c9d1d9;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.side-item:hover {
    color: #dce2e6;
    background: rgba(255, 255, 255, 0.03);
}

.side-item.active {
    background: var(--pc-accent-soft);
    color: var(--pc-accent-text);
    box-shadow: inset 0 0 0 1px var(--pc-accent-border);
}

.side-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    opacity: 0.82;
    filter: grayscale(1) brightness(1.9);
}

.side-item.active .side-icon {
    opacity: 1;
    filter: none;
}

.vip-card {
    margin: auto 6px 0;
    padding: 18px 16px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(20, 24, 28, 0.98), rgba(11, 14, 17, 0.98)),
        radial-gradient(circle at top, rgba(104, 227, 61, 0.14), transparent 42%);
    text-align: center;
}

.vip-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.vip-card p {
    margin: 0 0 16px;
    color: #8d8f92;
    font-size: 12px;
}

.vip-qrcode-link {
    display: block;
    width: 100%;
    margin: 0 0 12px;
}

.vip-qrcode {
    width: 100%;
    max-width: 116px;
    margin: 0 auto;
    padding: 8px;
    border-radius: 18px;
    background: #f7faf8;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
}

.vip-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--pc-accent);
    color: var(--pc-accent-ink);
    font-weight: 700;
}

.pc-sidebar {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    width: 142px;
    min-width: 142px;
    height: 100vh;
    padding: 22px 10px 20px;
    background: rgba(6, 9, 13, 0.92);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
}

.pc-brand {
    padding: 8px 8px 22px;
}

.pc-brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pc-brand-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.pc-brand-text {
    font-size: 16px;
    font-weight: 800;
    color: var(--pc-accent);
    letter-spacing: 0.02em;
}

.pc-brand-sub {
    margin: 10px 0 0;
    color: #6c7685;
    font-size: 11px;
    line-height: 1.5;
}

.pc-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.pc-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 14px;
    color: #d8dde5;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.pc-menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.pc-menu-item.is-active {
    background: var(--pc-accent-soft);
    color: var(--pc-accent-text);
    box-shadow: inset 0 0 0 1px var(--pc-accent-border);
}

.pc-menu-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    opacity: 0.78;
    filter: grayscale(1) brightness(1.85);
}

.pc-menu-item.is-active .pc-menu-icon {
    opacity: 1;
    filter: none;
}

.pc-side-card {
    margin-top: auto;
    padding: 16px 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(19, 24, 31, 0.96) 0%, rgba(13, 16, 22, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pc-side-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 24px;
    margin-bottom: 10px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--pc-accent-soft);
    color: var(--pc-accent);
    font-size: 11px;
    font-weight: 800;
}

.pc-side-card strong {
    display: block;
    font-size: 15px;
    line-height: 1.4;
}

.pc-side-card p {
    margin: 8px 0 0;
    color: #788290;
    font-size: 12px;
    line-height: 1.6;
}

.pc-side-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 36px;
    margin-top: 14px;
    border-radius: 12px;
    background: var(--pc-accent);
    color: var(--pc-accent-ink);
    font-size: 13px;
    font-weight: 700;
}

.pc-sidebar-foot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
}

.pc-side-tool {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border-radius: 12px;
    background: #12161d;
    color: #c9d0db;
    font-size: 12px;
}

.pc-main {
    flex: 1;
    min-width: 0;
    padding: 24px 24px 30px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-nav a {
    position: relative;
    padding: 8px 0;
    color: #dfe5ea;
    font-size: 15px;
    font-weight: 600;
}

.top-nav a.active {
    color: var(--pc-accent);
}

.top-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: var(--pc-accent);
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-box {
    display: flex;
    align-items: center;
    width: 350px;
    padding: 5px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.search-box input {
    flex: 1;
    height: 40px;
    padding: 0 14px;
    border: 0;
    background: transparent;
    color: #f3f6f8;
    font-size: 13px;
}

.search-box input:focus {
    outline: none;
}

.search-submit,
.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 10px;
    background: #141922;
    color: #e6ebef;
    font-size: 13px;
    cursor: pointer;
}

.search-submit {
    min-width: 40px;
    font-weight: 800;
}

.pc-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.pc-topnav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.pc-topnav-item {
    position: relative;
    padding: 8px 0;
    color: #dfe5ea;
    font-size: 15px;
    font-weight: 600;
}

.pc-topnav-item.is-active {
    color: var(--pc-accent);
}

.pc-topnav-item.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: var(--pc-accent);
}

.pc-topbar-tools {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pc-search {
    display: flex;
    align-items: center;
    width: 350px;
    padding: 5px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pc-search input {
    flex: 1;
    height: 40px;
    padding: 0 14px;
    border: 0;
    background: transparent;
    color: #f3f6f8;
    font-size: 13px;
}

.pc-search button,
.pc-tool-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 12px;
    background: #141922;
    color: #e6ebef;
    font-size: 13px;
    cursor: pointer;
}

.pc-search button {
    min-width: 40px;
    font-weight: 800;
}

.pc-tool-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #10151c;
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: #e8edf2;
    font-size: 13px;
    font-weight: 800;
}

.pc-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 312px;
    gap: 22px;
}

.pc-dashboard-main,
.pc-dashboard-side {
    min-width: 0;
}

.pc-showcase {
    display: grid;
    grid-template-columns: 430px minmax(0, 1fr);
    min-height: 420px;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(7, 10, 14, 0.98) 0%, rgba(10, 14, 18, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pc-showcase-copy {
    padding: 42px 34px;
}

.pc-kicker {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--pc-accent-soft);
    color: var(--pc-accent);
    font-size: 12px;
    font-weight: 700;
}

.pc-showcase-copy h1 {
    margin: 18px 0 0;
    font-size: 60px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.pc-showcase-copy h2 {
    margin: 8px 0 0;
    font-size: 34px;
    line-height: 1.12;
    color: var(--pc-accent);
    font-weight: 900;
}

.pc-showcase-copy p {
    margin: 16px 0 0;
    max-width: 300px;
    color: #95a0ae;
    font-size: 16px;
    line-height: 1.8;
}

.pc-showcase-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.pc-showcase-meta span {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #c3cad4;
    font-size: 12px;
}

.pc-showcase-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.pc-showcase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 136px;
    height: 48px;
    padding: 0 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #eef2f4;
    font-size: 14px;
    font-weight: 700;
}

.pc-showcase-btn.is-primary {
    background: var(--pc-accent);
    border-color: var(--pc-accent);
    color: var(--pc-accent-ink);
}

.pc-showcase-dots {
    display: flex;
    gap: 10px;
    margin-top: 34px;
}

.pc-showcase-dots span {
    width: 20px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.pc-showcase-dots .is-active {
    background: var(--pc-accent);
}

.pc-showcase-media {
    position: relative;
}

.pc-showcase-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 7, 10, 0.48) 0%, rgba(5, 7, 10, 0.04) 28%, rgba(5, 7, 10, 0.16) 100%);
}

.pc-showcase-sidebadge {
    position: absolute;
    right: 14px;
    top: 22px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    letter-spacing: 0.32em;
}

.pc-showcase-sidebadge span {
    font-size: 11px;
    opacity: 0.62;
}

.pc-showcase-sidebadge strong {
    font-size: 48px;
    line-height: 1;
    color: var(--pc-accent);
    letter-spacing: -0.04em;
}

.pc-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-panel,
.pc-ranking-card,
.pc-side-list-card,
.pc-section {
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(13, 17, 22, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pc-panel-head,
.pc-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.pc-panel-head h3,
.pc-section-head h2 {
    margin: 0;
    font-size: 25px;
    line-height: 1.2;
}

.pc-panel-head h3::before,
.pc-section-head h2::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 18px;
    margin-right: 10px;
    border-radius: 999px;
    background: var(--pc-accent);
    vertical-align: -2px;
}

.pc-section-head p {
    margin: 6px 0 0;
    color: #7f8a98;
    font-size: 13px;
}

.pc-more-link {
    color: #dbf59b;
    font-size: 13px;
}

.pc-card-row {
    display: grid;
    gap: 14px;
}

.pc-card-row-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pc-mini-card,
.pc-score-card,
.pc-poster-card,
.pc-landscape-card,
.pc-feature-card,
.pc-side-pick {
    display: block;
}

.pc-mini-media,
.pc-score-media,
.pc-poster-media,
.pc-landscape-media {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #161a20;
}

.pc-mini-media img,
.pc-score-media img,
.pc-poster-media img {
    width: 100%;
    aspect-ratio: 0.72;
    object-fit: cover;
}

.pc-landscape-media img {
    width: 100%;
    aspect-ratio: 1.72;
    object-fit: cover;
}

.pc-corner-tag,
.pc-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(193, 254, 0, 0.9);
    color: var(--pc-accent-ink);
    font-size: 11px;
    font-weight: 800;
}

.pc-app-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #11161d;
    font-size: 11px;
    font-weight: 800;
}

.pc-mini-card strong,
.pc-score-card strong,
.pc-poster-card strong,
.pc-landscape-copy strong,
.pc-side-pick span,
.pc-feature-card span {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.4;
    color: #f5f7f8;
}

.pc-mini-card small,
.pc-score-card small,
.pc-poster-card small,
.pc-poster-card em,
.pc-landscape-copy small {
    display: block;
    margin-top: 4px;
    color: #7d8795;
    font-size: 12px;
    line-height: 1.6;
    font-style: normal;
}

.pc-poster-card em {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 58px;
}

.pc-score-line {
    margin-top: 12px;
    color: var(--pc-accent);
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}

.pc-section {
    margin-top: 20px;
}

.pc-grid {
    display: grid;
    gap: 18px;
}

.pc-grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pc-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pc-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pc-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.pc-app-only-notice {
    margin-bottom: 18px;
}

.pc-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: #151922;
    color: #d7dde6;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pc-chip.is-active {
    background: var(--pc-accent-soft);
    color: var(--pc-accent-text);
    border-color: var(--pc-accent-border);
}

.pc-loadmore-wrap {
    padding-top: 18px;
}

.pc-loadmore {
    margin: 0;
    padding: 14px 18px;
    border-radius: 16px;
    background: #12161d;
    color: #7e8794;
    text-align: center;
    font-size: 13px;
}

.pc-search-panel {
    width: 100%;
    margin-bottom: 18px;
}

.pc-empty-search {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 280px;
    border-radius: 18px;
    background: #12161d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.pc-empty-search strong {
    font-size: 22px;
    color: #f4f7fa;
}

.pc-empty-search span {
    max-width: 420px;
    color: #8791a0;
    font-size: 14px;
    line-height: 1.7;
}

.pc-search-exact-tag {
    position: absolute;
    left: 10px;
    top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #11161d;
    font-size: 11px;
    font-weight: 800;
}

.pc-search-app-tag {
    position: absolute;
    left: 10px;
    top: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #11161d;
    font-size: 11px;
    font-weight: 800;
}

.pc-pagination-wrap {
    display: flex;
    justify-content: center;
}

.pc-pagination-wrap .pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pc-pagination-wrap .pagination li,
.pc-pagination-wrap .pagination a,
.pc-pagination-wrap .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    background: #12161d;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #cdd5df;
    font-size: 13px;
    font-weight: 600;
}

.pc-pagination-wrap .pagination li {
    padding: 0;
    background: transparent;
    border: 0;
}

.pc-pagination-wrap .pagination a:hover {
    background: rgba(255, 255, 255, 0.06);
}

.pc-pagination-wrap .pagination .active span,
.pc-pagination-wrap .pagination .active a,
.pc-pagination-wrap .pagination li.active span,
.pc-pagination-wrap .pagination li.active a {
    background: var(--pc-accent-soft);
    border-color: var(--pc-accent-border);
    color: var(--pc-accent-text);
}

.pc-pagination-wrap .pagination .disabled span,
.pc-pagination-wrap .pagination li.disabled span {
    opacity: 0.45;
}

.pc-short-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(159, 255, 112, 0.12), rgba(18, 24, 19, 0.94) 42%),
        #10151c;
    border: 1px solid rgba(159, 255, 112, 0.14);
}

.pc-short-notice-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.pc-short-notice-copy strong {
    color: #f2f6f1;
    font-size: 18px;
    font-weight: 700;
}

.pc-short-notice-copy span {
    color: #9fa8b3;
    font-size: 13px;
    line-height: 1.6;
}

.pc-short-notice-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    background: var(--pc-accent);
    color: var(--pc-accent-ink);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.pc-player-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    align-items: start;
}

.pc-player-main,
.pc-player-side {
    min-width: 0;
}

.pc-player-stage {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
}

#pc-mse,
#pc-mse .xgplayer,
#pc-mse .xgplayer-video-wrap,
#pc-mse .xgplayer-video-area,
#pc-mse .xgplayer-video-container {
    width: 100%;
    height: 100% !important;
}

#pc-mse {
    aspect-ratio: 16 / 9;
}

#pc-mse .pc-native-video {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    object-fit: contain;
}

.pc-player-summary,
.pc-player-side-card,
.pc-player-poster-card {
    margin-top: 18px;
    padding: 22px;
    border-radius: 10px;
    background: #10151c;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pc-player-side-card.is-top {
    margin-top: 0;
    margin-bottom: 20px;
}

.pc-player-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.pc-player-heading-copy {
    min-width: 0;
}

.pc-player-heading h1 {
    margin: 14px 0 0;
    font-size: 30px;
    line-height: 1.22;
}

.pc-player-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.pc-player-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #bcc4cf;
    font-size: 12px;
}

.pc-player-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pc-player-nav-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.pc-player-nav-current {
    background: var(--pc-accent);
    color: var(--pc-accent-ink);
}

.pc-player-floating-nav {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.pc-player-floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 60px;
    padding: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(5, 7, 10, 0.06), rgba(5, 7, 10, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
    pointer-events: auto;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.pc-player-floating-btn:hover {
    background: linear-gradient(180deg, rgba(12, 15, 18, 0.16), rgba(12, 15, 18, 0.34));
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
}

.pc-player-floating-prev {
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
}

.pc-player-floating-next {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
}

.pc-player-floating-arrow {
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.pc-player-floating-btn.is-disabled {
    opacity: 0.08;
    pointer-events: none;
}

.pc-player-copy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin-top: 20px;
}

.pc-player-copy-grid p,
.pc-side-info-list p {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #9ca6b2;
    font-size: 13px;
}

.pc-player-copy-grid strong,
.pc-side-info-list span {
    color: #7f8895;
    font-weight: 500;
}

.pc-player-copy-grid span,
.pc-side-info-list strong {
    min-width: 0;
    color: #f1f4f7;
    text-align: right;
}

.pc-player-desc {
    margin: 18px 0 0;
    color: #b5bdc8;
    font-size: 14px;
    line-height: 1.8;
}

.pc-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.pc-section-head h2 {
    margin: 0;
    font-size: 22px;
}

.pc-section-head p {
    margin: 6px 0 0;
    color: #7f8895;
    font-size: 13px;
}

.pc-player-episodes,
.pc-player-recommend {
    margin-top: 18px;
}

.pc-episode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
    gap: 10px;
}

.pc-player-side-episodes {
    max-height: 420px;
}

.pc-episode-grid-side {
    max-height: 320px;
    padding-right: 6px;
    overflow-y: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pc-episode-grid-side::-webkit-scrollbar {
    width: 4px;
}

.pc-episode-grid-side::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.pc-episode-grid-side::-webkit-scrollbar-track {
    background: transparent;
}

.pc-episode-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    background: #151922;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #d7dde6;
    font-size: 13px;
    font-weight: 700;
}

.pc-episode-chip.is-active {
    background: var(--pc-accent-soft);
    color: var(--pc-accent-text);
    border-color: var(--pc-accent-border);
}

.pc-player-poster-card {
    margin-top: 0;
    overflow: hidden;
    padding: 0;
}

.pc-player-poster-card img {
    width: 100%;
    aspect-ratio: 0.72;
    object-fit: cover;
}

.pc-player-poster-copy {
    padding: 18px 18px 20px;
}

.pc-player-poster-copy strong {
    display: block;
    font-size: 18px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pc-player-poster-copy span {
    display: block;
    margin-top: 6px;
    color: #8c95a2;
    font-size: 13px;
}

.pc-player-side-card .pc-section-head {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pc-player-side-card .pc-section-head p {
    margin-top: 4px;
}

.pc-movie-player-layout .pc-player-summary {
    margin-top: 18px;
}

.pc-movie-player-stage #pc-mse {
    aspect-ratio: 16 / 9;
}

.pc-movie-poster-card img {
    aspect-ratio: 0.72;
}

@media (max-width: 1000px) {
    html,
    body {
        overflow: auto;
    }

    .app-shell {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 100vh;
    }

    .sidebar {
        display: none;
    }

    .main-content {
        height: auto;
        min-height: 100vh;
        padding: 16px 16px 20px;
        overflow: visible;
    }

    .content-scroll {
        height: auto;
        overflow: visible;
        padding-right: 0;
    }

    .topbar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .top-nav {
        flex-wrap: wrap;
        gap: 12px 16px;
    }

    .top-actions {
        flex-wrap: wrap;
        align-items: stretch;
    }

    .search-box {
        width: 100%;
        min-width: 0;
    }

    .login-btn {
        width: 100%;
    }

    .pc-showcase {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .pc-showcase-copy {
        padding: 24px 22px 18px;
    }

    .pc-showcase-copy h1 {
        font-size: 42px;
    }

    .pc-showcase-copy h2 {
        font-size: 28px;
    }

    .pc-dashboard-grid,
    .pc-grid-5,
    .pc-grid-4,
    .pc-grid-3,
    .pc-card-row-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pc-player-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pc-player-main,
    .pc-player-side {
        width: 100%;
    }

    .pc-player-stage {
        min-width: 0;
        height: clamp(260px, 56vw, 420px);
        min-height: 260px;
    }

    #pc-mse {
        display: block;
        width: 100%;
        height: 100% !important;
        min-height: 260px;
        aspect-ratio: auto;
    }

    #pc-mse .xgplayer,
    #pc-mse .xgplayer-video-wrap,
    #pc-mse .xgplayer-video-area,
    #pc-mse .xgplayer-video-container {
        height: 100% !important;
        min-height: 260px;
    }

    .pc-player-side {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        align-items: start;
    }

    .pc-player-poster-card,
    .pc-player-side-card,
    .pc-player-side-card.is-top {
        margin: 0;
    }

    .pc-player-side-episodes {
        max-height: none;
    }

    .pc-episode-grid-side {
        max-height: 240px;
    }
}

@media (max-width: 720px) {
    .main-content {
        padding: 16px 14px 20px;
    }

    .top-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pc-showcase-copy {
        padding: 20px 18px 16px;
    }

    .pc-showcase-copy h1 {
        font-size: 34px;
    }

    .pc-showcase-copy h2 {
        font-size: 24px;
    }

    .pc-showcase-actions,
    .pc-short-notice {
        flex-direction: column;
        align-items: stretch;
    }

    .pc-grid-5,
    .pc-grid-4,
    .pc-grid-3,
    .pc-card-row-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .pc-player-side {
        grid-template-columns: 1fr;
    }

    .pc-player-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .pc-player-copy-grid {
        grid-template-columns: 1fr;
    }

    .pc-player-summary,
    .pc-player-side-card,
    .pc-player-poster-card {
        padding: 18px;
    }

    .pc-player-stage {
        height: clamp(220px, 58vw, 320px);
        min-height: 220px;
    }

    #pc-mse {
        height: 100% !important;
        min-height: 220px;
    }

    #pc-mse .xgplayer,
    #pc-mse .xgplayer-video-wrap,
    #pc-mse .xgplayer-video-area,
    #pc-mse .xgplayer-video-container {
        min-height: 220px;
    }
}

.pc-side-info-list {
    display: grid;
    gap: 12px;
}

.pc-side-info-list p:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.pc-ranking-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #7e8794;
    font-size: 12px;
}

.pc-ranking-tabs .is-active {
    color: var(--pc-accent);
}

.pc-ranking-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pc-ranking-item {
    display: grid;
    grid-template-columns: 24px 52px minmax(0, 1fr) 40px;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pc-ranking-item:last-child {
    border-bottom: 0;
}

.pc-ranking-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
    color: #f7f7f8;
    font-size: 12px;
    font-weight: 800;
}

.pc-ranking-item:nth-child(1) .pc-ranking-num,
.pc-ranking-item:nth-child(2) .pc-ranking-num,
.pc-ranking-item:nth-child(3) .pc-ranking-num {
    background: #ffd24a;
    color: #17120a;
}

.pc-ranking-item img {
    width: 52px;
    height: 68px;
    border-radius: 10px;
    object-fit: cover;
}

.pc-ranking-copy {
    min-width: 0;
}

.pc-ranking-copy strong {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pc-ranking-copy small {
    display: block;
    margin-top: 4px;
    color: #7e8794;
    font-size: 12px;
    line-height: 1.5;
}

.pc-ranking-item em {
    font-style: normal;
    color: var(--pc-accent);
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    text-align: right;
}

.pc-side-picks {
    display: grid;
    gap: 12px;
}

.pc-side-pick {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.pc-side-pick img {
    width: 64px;
    height: 84px;
    border-radius: 12px;
    object-fit: cover;
}

.pc-side-pick-copy span {
    display: block;
    margin-top: 0;
    font-size: 14px;
}

.pc-side-pick-copy small {
    display: block;
    margin-top: 5px;
    color: #7c8693;
    font-size: 12px;
    line-height: 1.5;
}

.pc-home-swiper {
    min-height: 420px;
    overflow: hidden;
    border-radius: 24px;
}

.pc-home-swiper .swiper-wrapper,
.pc-home-swiper .swiper-slide {
    height: 100%;
}

.pc-home-swiper .swiper-slide {
    display: grid;
    grid-template-columns: 430px minmax(0, 1fr);
}

.pc-home-swiper .pc-showcase-copy {
    display: flex;
    flex-direction: column;
}

.pc-home-pagination {
    position: absolute;
    left: 34px;
    bottom: 26px;
    z-index: 4;
    display: flex;
    gap: 8px;
}

.pc-home-pagination .swiper-pagination-bullet {
    width: 26px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.pc-home-pagination .swiper-pagination-bullet-active {
    background: var(--pc-accent);
}

.pc-home-quick {
    padding: 20px;
}

.pc-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.pc-quick-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(193, 254, 0, 0.06), rgba(193, 254, 0, 0.01)),
        #0f1419;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.pc-quick-card:hover {
    transform: translateY(-2px);
    border-color: var(--pc-accent-border);
}

.pc-quick-card img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.pc-quick-card strong,
.pc-quick-card small {
    display: block;
}

.pc-quick-card strong {
    font-size: 16px;
    line-height: 1.4;
}

.pc-quick-card small {
    margin-top: 4px;
    color: #7e8794;
    font-size: 12px;
}

.pc-home-dual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.pc-home-dual .pc-section {
    height: 100%;
}

.pc-home-story-card {
    padding-bottom: 4px;
}

.pc-home-story-card .pc-landscape-copy {
    padding-top: 12px;
}

.pc-home-short-card {
    padding: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #0f1419;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pc-home-short-card span,
.pc-home-short-card small {
    padding-left: 14px;
    padding-right: 14px;
}

.pc-home-short-card span {
    margin-top: 12px;
}

.pc-home-short-card small:last-child {
    padding-bottom: 14px;
}

.pc-home-banner {
    padding: 0;
    overflow: hidden;
}

.pc-home-banner-link {
    display: block;
}

.pc-home-banner-link img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
}

.pc-category-swiper {
    margin-bottom: 28px;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(22, 28, 18, 0.96), rgba(10, 12, 14, 0.98));
    border: 1px solid rgba(193, 254, 0, 0.12);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.pc-category-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) 420px;
    min-height: 280px;
}

.pc-category-banner-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 34px 36px;
}

.pc-category-banner-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(193, 254, 0, 0.12);
    color: var(--pc-accent);
    font-size: 12px;
    letter-spacing: 0.08em;
}

.pc-category-banner-copy h2 {
    margin: 0;
    font-size: 36px;
    line-height: 1.1;
    color: #fff;
}

.pc-category-banner-copy p {
    margin: 0;
    max-width: 560px;
    color: #9ca6b5;
    font-size: 15px;
    line-height: 1.8;
}

.pc-category-banner-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.pc-category-banner-note {
    color: #c8d0db;
    font-size: 13px;
}

.pc-category-banner-poster {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 280px;
}

.pc-category-banner-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-category-banner-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 12, 14, 0) 0%, rgba(10, 12, 14, 0.24) 38%, rgba(10, 12, 14, 0.82) 100%);
}

.pc-category-swiper-pagination {
    position: absolute;
    left: 36px;
    bottom: 22px;
    z-index: 4;
    display: flex;
    gap: 8px;
}

.pc-category-swiper-pagination .swiper-pagination-bullet {
    width: 24px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    opacity: 1;
}

.pc-category-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--pc-accent);
}

@media (max-width: 1200px) {
    .pc-category-banner {
        grid-template-columns: minmax(0, 1fr) 320px;
    }

    .pc-category-banner-copy h2 {
        font-size: 30px;
    }
}
.pc-short-detail-shell {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pc-short-detail-main {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17, 20, 17, 0.96), rgba(9, 10, 9, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pc-short-detail-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
}

.pc-short-detail-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.pc-short-detail-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 17px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 13px;
}

.pc-short-detail-copy h1 {
  margin-top: 10px;
  font-size: 34px;
  line-height: 42px;
}

.pc-short-detail-desc {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 26px;
}

.pc-short-detail-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.pc-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 48px;
  padding: 0 24px;
  border-radius: 14px;
  background: #fff;
  color: #000;
  font-weight: 700;
}

.pc-short-detail-tip {
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.pc-short-detail-panel {
  padding: 28px;
}

.pc-short-episode-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pc-short-episode-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.pc-download-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17, 20, 17, 0.96), rgba(9, 10, 9, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pc-download-stage-inner {
  max-width: 520px;
  text-align: center;
}

.pc-download-stage-inner h2 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 42px;
}

.pc-download-stage-inner p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 26px;
}

.pc-download-stage-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
