:root {
    --ink: #151820;
    --muted: #667085;
    --line: rgba(255, 255, 255, .12);
    --paper: #ffffff;
    --soft: #f4f7fb;
    --night: #101219;
    --night-2: #171b26;
    --cyan: #25d0c2;
    --rose: #ff5b7d;
    --gold: #f4bd50;
    --blue: #4c7dff;
    --green: #35c486;
    --shadow: 0 18px 60px rgba(10, 18, 35, .22);
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: light;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--soft);
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

code {
    padding: 2px 7px;
    border-radius: 6px;
    background: rgba(18, 24, 38, .08);
}

.eyebrow {
    margin: 0 0 6px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
}

.button svg {
    width: 18px;
    height: 18px;
}

.button.primary {
    color: #081018;
    background: linear-gradient(135deg, var(--cyan), #b8f36b);
}

.button.ghost {
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
}

.button.ghost-light {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .13);
}

.round-action,
.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(14px);
    cursor: pointer;
}

.round-action svg,
.icon-button svg {
    width: 20px;
    height: 20px;
}

.notice {
    padding: 12px 14px;
    border-radius: 8px;
    margin: 14px 0;
}

.notice.success {
    color: #064e3b;
    background: #d1fae5;
}

.notice.danger {
    color: #7f1d1d;
    background: #fee2e2;
}

.locale-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.locale-switcher a {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 7px;
    color: rgba(255, 255, 255, .62);
    background: rgba(255, 255, 255, .06);
    font-size: 11px;
    font-weight: 900;
}

.locale-switcher a.active {
    color: #170611;
    border-color: transparent;
    background: var(--gold);
}

.h5-locale {
    position: sticky;
    z-index: 18;
    top: max(8px, env(safe-area-inset-top));
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 10px;
    pointer-events: none;
}

.h5-locale a {
    pointer-events: auto;
}

.pc-hero {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(6, 8, 14, .22), rgba(6, 8, 14, .78)),
        url("https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.pc-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 38%, rgba(37, 208, 194, .24), transparent 30%);
}

.pc-nav {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px min(6vw, 84px);
}

.pc-logo {
    font-size: 22px;
    font-weight: 900;
}

.pc-logo.has-logo::before {
    display: none;
}

.site-logo-img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    object-fit: contain;
}

.pc-nav div {
    display: flex;
    gap: 20px;
    color: rgba(255, 255, 255, .82);
}

.pc-hero-content {
    position: relative;
    z-index: 2;
    width: min(780px, calc(100% - 40px));
    padding: 14vh min(6vw, 84px) 0;
}

.pc-hero-content h1 {
    margin: 0;
    font-size: 96px;
    line-height: .92;
    letter-spacing: 0;
}

.pc-hero-content p:not(.eyebrow) {
    width: min(620px, 100%);
    color: rgba(255, 255, 255, .78);
    font-size: 20px;
    line-height: 1.7;
}

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

.pc-hero-bottom {
    position: absolute;
    z-index: 2;
    left: min(6vw, 84px);
    right: min(6vw, 84px);
    bottom: 28px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.pc-hero-bottom span {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(16px);
}

.pc-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 66px 0;
}

.pc-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 70px;
    padding: 34px;
    border-radius: 8px;
    color: #fff;
    background: #17202c;
}

.section-heading h2,
.pc-band h2 {
    margin: 0;
    font-size: 34px;
}

.pc-band p {
    max-width: 760px;
    color: rgba(255, 255, 255, .74);
    line-height: 1.8;
}

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

.drama-card,
.poster-card {
    min-width: 0;
}

.drama-card img,
.poster-card img {
    aspect-ratio: 2 / 3;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(21, 24, 32, .18);
}

.drama-card strong,
.poster-card strong {
    display: block;
    margin-top: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.drama-card span,
.poster-card span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.install-page {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(37, 208, 194, .18), rgba(255, 91, 125, .14)),
        #f6f8fb;
}

.install-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 30px;
}

.install-panel {
    width: min(620px, 100%);
    padding: 36px;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.install-panel h1 {
    margin: 0 0 10px;
    font-size: 36px;
}

.install-panel p {
    color: var(--muted);
    line-height: 1.7;
}

.install-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.install-form label,
.auth-card label {
    display: grid;
    gap: 8px;
}

.install-form span,
.auth-card span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.install-form input,
.auth-card input {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid #d8dee8;
    border-radius: 8px;
}

.install-credentials {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.install-credentials div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px;
    border-radius: 8px;
    background: #f3f6fb;
}

.h5-body {
    min-height: 100vh;
    color: #f8fafc;
    background:
        linear-gradient(180deg, #121720, #0d0f16 52%, #101217);
}

.h5-shell {
    width: min(520px, 100%);
    min-height: 100vh;
    margin: 0 auto;
    padding: max(18px, env(safe-area-inset-top)) 14px calc(92px + env(safe-area-inset-bottom));
}

.h5-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.h5-header h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: 0;
}

.banner-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.banner-strip::-webkit-scrollbar,
.poster-row::-webkit-scrollbar {
    display: none;
}

.banner-slide {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    border-radius: 8px;
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.banner-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(5, 7, 12, .12), rgba(5, 7, 12, .86));
}

.banner-slide span {
    width: max-content;
    padding: 5px 9px;
    border-radius: 8px;
    color: #071015;
    background: var(--gold);
    font-size: 12px;
    font-weight: 900;
}

.banner-slide strong {
    margin-top: 12px;
    font-size: 25px;
}

.banner-slide small {
    margin-top: 6px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.5;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 16px 0 24px;
}

.quick-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 10px;
    border-radius: 8px;
    color: #e6f8ff;
    background: rgba(255, 255, 255, .08);
    font-size: 13px;
    font-weight: 800;
}

.section-block {
    margin-top: 24px;
}

.section-title-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.section-title-row h2 {
    margin: 0;
    font-size: 21px;
}

.section-title-row a {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
}

.poster-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 31%;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.poster-card span,
.compact-item span,
.result-item span,
.result-item p,
.result-item em {
    color: rgba(248, 250, 252, .62);
    font-size: 12px;
    line-height: 1.45;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.calendar-grid a {
    min-width: 0;
    min-height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(37, 208, 194, .14), rgba(255, 255, 255, .06));
    text-align: center;
}

.calendar-grid strong {
    font-size: 13px;
}

.calendar-grid span {
    color: rgba(248, 250, 252, .60);
    font-size: 11px;
}

.compact-list,
.search-results {
    display: grid;
    gap: 12px;
}

.compact-item,
.result-item,
.provider-panel,
.task-panel a {
    display: grid;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

.compact-item {
    grid-template-columns: 58px 1fr 20px;
}

.compact-item img {
    width: 58px;
    height: 78px;
    border-radius: 6px;
    object-fit: cover;
}

.compact-item strong,
.result-item strong {
    display: block;
    margin-bottom: 4px;
}

.compact-item svg {
    color: rgba(255, 255, 255, .35);
}

.ranking-list {
    display: grid;
    gap: 9px;
}

.ranking-list a {
    min-height: 46px;
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

.ranking-list span {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #071015;
    background: var(--rose);
    font-weight: 900;
}

.ranking-list em {
    color: var(--gold);
    font-style: normal;
    font-size: 12px;
}

.bottom-tabs {
    position: fixed;
    z-index: 20;
    left: 50%;
    bottom: 0;
    width: min(520px, 100%);
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, .10);
    background: rgba(15, 17, 24, .90);
    backdrop-filter: blur(20px);
}

.bottom-tabs a {
    display: grid;
    place-items: center;
    gap: 3px;
    color: rgba(248, 250, 252, .52);
    font-size: 11px;
}

.bottom-tabs a.active {
    color: var(--cyan);
}

.bottom-tabs svg {
    width: 20px;
    height: 20px;
}

.sticky-search {
    position: sticky;
    top: 0;
    z-index: 10;
    padding-top: 8px;
    background: linear-gradient(180deg, #121720 70%, rgba(18, 23, 32, 0));
}

.search-panel {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.search-input {
    display: grid;
    grid-template-columns: 22px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 8px 8px 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .09);
}

.search-input input,
.filter-row select {
    min-width: 0;
    color: #fff;
    border: 0;
    outline: none;
    background: transparent;
}

.search-input button {
    height: 34px;
    border: 0;
    border-radius: 7px;
    color: #071015;
    background: var(--cyan);
    font-weight: 900;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.filter-row select {
    height: 40px;
    padding: 0 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .09);
}

.filter-row option {
    color: #111827;
}

.hot-search {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
}

.hot-search span {
    color: rgba(248, 250, 252, .56);
    font-size: 12px;
}

.hot-search a,
.tag-row a {
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    font-size: 12px;
}

.result-item {
    grid-template-columns: 86px 1fr;
}

.result-item img {
    width: 86px;
    height: 120px;
    border-radius: 7px;
    object-fit: cover;
}

.result-item p {
    margin: 8px 0;
}

.result-item em {
    color: var(--gold);
    font-style: normal;
}

.detail-hero {
    position: relative;
    min-height: 310px;
    display: flex;
    align-items: flex-end;
    margin: -18px -14px 0;
    padding: 58px 14px 18px;
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(7, 10, 16, .20), #0d0f16 88%);
}

.detail-hero .back,
.creator-hero .back {
    position: absolute;
    left: 14px;
    top: max(14px, env(safe-area-inset-top));
}

.detail-hero-content {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 14px;
    align-items: end;
}

.detail-hero-content img {
    width: 112px;
    aspect-ratio: 2 / 3;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.detail-hero-content h1 {
    margin: 0;
    font-size: 26px;
}

.detail-hero-content p,
.detail-hero-content span {
    display: block;
    margin: 8px 0 0;
    color: rgba(248, 250, 252, .70);
    font-size: 13px;
    line-height: 1.55;
}

.detail-actions {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 8px;
    margin: 14px 0 22px;
}

.detail-actions form,
.detail-actions button,
.detail-actions a {
    width: 100%;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.summary {
    margin: 0;
    color: rgba(248, 250, 252, .74);
    line-height: 1.8;
}

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

.meta-grid div {
    min-height: 62px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

.meta-grid span {
    display: block;
    margin-bottom: 6px;
    color: rgba(248, 250, 252, .45);
    font-size: 12px;
}

.meta-grid strong {
    font-size: 13px;
    line-height: 1.5;
}

.provider-panel {
    grid-template-columns: 56px 1fr 20px;
    margin-top: 22px;
}

.provider-panel img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.provider-panel span {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
}

.provider-panel p {
    margin: 4px 0 0;
    color: rgba(248, 250, 252, .56);
    font-size: 12px;
    line-height: 1.5;
}

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

.episode-grid a {
    position: relative;
    min-height: 58px;
    display: grid;
    place-items: center;
    gap: 2px;
    padding: 8px 4px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
}

.episode-grid a.active {
    color: #071015;
    background: var(--cyan);
}

.episode-grid a.disabled {
    opacity: .45;
}

.episode-grid strong {
    font-size: 18px;
}

.episode-grid span {
    max-width: 100%;
    overflow: hidden;
    color: rgba(248, 250, 252, .58);
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 11px;
}

.episode-grid em {
    position: absolute;
    right: 5px;
    top: 5px;
    color: #071015;
    background: var(--gold);
    border-radius: 4px;
    padding: 1px 4px;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
}

.creator-hero,
.me-header,
.auth-card {
    padding: 24px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(37, 208, 194, .16), rgba(255, 91, 125, .10)),
        rgba(255, 255, 255, .06);
}

.creator-hero {
    position: relative;
    text-align: center;
}

.creator-hero img {
    width: 86px;
    height: 86px;
    margin: 24px auto 12px;
    border-radius: 50%;
    object-fit: cover;
}

.creator-hero h1,
.me-header h1,
.auth-card h1 {
    margin: 8px 0;
}

.creator-hero p,
.me-header p,
.auth-card p {
    color: rgba(248, 250, 252, .65);
    line-height: 1.6;
}

.me-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
}

.avatar {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #071015;
    background: var(--gold);
    font-size: 24px;
    font-weight: 900;
}

.task-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.task-panel a {
    min-height: 92px;
    grid-template-columns: 1fr;
    place-items: start;
}

.task-panel svg {
    color: var(--cyan);
}

.task-panel span,
.task-panel strong {
    font-size: 12px;
}

.task-panel strong {
    color: rgba(248, 250, 252, .58);
}

.vip-member-panel {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 209, 102, .18), rgba(255, 47, 125, .12)),
        rgba(255, 255, 255, .06);
}

.vip-member-panel p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
}

.vip-member-panel > small {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, .56);
    line-height: 1.6;
}

.vip-plan-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.vip-plan-row div {
    min-width: 0;
    padding: 10px;
    border-radius: 8px;
    color: #170611;
    background: linear-gradient(135deg, var(--gold), #ff935c);
}

.vip-plan-row span,
.vip-plan-row strong,
.vip-plan-row em,
.vip-plan-row small,
.vip-plan-row a {
    display: block;
}

.vip-plan-row span {
    font-size: 10px;
    font-weight: 950;
}

.vip-plan-row strong {
    margin-top: 4px;
    font-size: 14px;
}

.vip-plan-row em {
    margin-top: 6px;
    font-size: 16px;
    font-style: normal;
    font-weight: 950;
}

.vip-plan-row small {
    margin-top: 2px;
    opacity: .72;
}

.vip-plan-row a {
    margin-top: 8px;
    min-height: 28px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    color: #170611;
    background: rgba(255, 255, 255, .58);
    font-size: 12px;
    font-weight: 950;
}

.auth-card {
    margin-top: 28px;
}

.auth-card form {
    display: grid;
    gap: 14px;
}

.auth-card input {
    color: #fff;
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
}

.auth-card a {
    color: var(--cyan);
    font-weight: 800;
}

.empty-state {
    display: grid;
    place-items: center;
    gap: 12px;
    min-height: 70vh;
    padding: 30px;
    text-align: center;
}

.empty-state span {
    color: var(--cyan);
    font-size: 46px;
    font-weight: 900;
}

.empty-state.compact {
    min-height: 130px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

.player-body {
    margin: 0;
    color: #fff;
    background: #07090d;
}

.player-shell {
    width: min(760px, 100%);
    min-height: 100vh;
    margin: 0 auto;
    padding-bottom: 40px;
}

.player-top {
    min-height: 58px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: center;
    padding: max(10px, env(safe-area-inset-top)) 12px 10px;
}

.player-top strong,
.player-top span {
    display: block;
}

.player-top span {
    color: rgba(255, 255, 255, .56);
    font-size: 12px;
}

.video-stage {
    background: #000;
}

.video-stage video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #000;
}

video[data-protected-player]::-internal-media-controls-download-button,
video[data-protected-player]::-webkit-media-controls-enclosure {
    overflow: hidden;
}

.player-controls {
    display: grid;
    gap: 12px;
    padding: 12px;
}

.source-tabs,
.speed-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.source-tabs button,
.speed-tabs button {
    flex: 0 0 auto;
    min-height: 38px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.source-tabs button {
    display: grid;
    gap: 1px;
    padding: 6px 12px;
    text-align: left;
}

.source-tabs span {
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
}

.source-tabs button.active,
.speed-tabs button.active {
    color: #071015;
    background: var(--cyan);
}

.player-episodes {
    padding: 0 12px;
}

@media (max-width: 820px) {
    .pc-hero {
        min-height: 86vh;
    }

    .pc-nav {
        padding: 20px;
    }

    .pc-hero-content {
        padding: 12vh 20px 0;
    }

    .pc-hero-content h1 {
        font-size: 54px;
    }

    .pc-hero-content p:not(.eyebrow) {
        font-size: 16px;
    }

    .pc-hero-bottom {
        left: 20px;
        right: 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .pc-band {
        display: grid;
    }

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

@media (max-width: 390px) {
    .poster-row {
        grid-auto-columns: 36%;
    }

    .detail-actions {
        grid-template-columns: 1fr;
    }

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

/* Entertainment skin v2 */
:root {
    --ink: #f7f4ff;
    --muted: #a7a1b7;
    --paper: #121019;
    --soft: #09070d;
    --night: #07060b;
    --night-2: #15101f;
    --cyan: #19f7d2;
    --rose: #ff2f7d;
    --gold: #ffd166;
    --blue: #7c5cff;
    --green: #8bf74b;
    --line: rgba(255, 255, 255, .12);
    --shadow: 0 20px 60px rgba(0, 0, 0, .34);
}

html {
    color-scheme: dark;
}

body {
    color: var(--ink);
    background:
        linear-gradient(130deg, rgba(255, 47, 125, .16) 0%, transparent 32%),
        linear-gradient(220deg, rgba(25, 247, 210, .10) 4%, transparent 34%),
        linear-gradient(180deg, #09070d 0%, #11101a 48%, #08070d 100%);
}

.eyebrow {
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
}

.button {
    min-height: 46px;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .20);
}

.button.primary {
    color: #130711;
    background: linear-gradient(135deg, var(--rose), #ff8a3d 46%, var(--gold));
}

.button.ghost,
.button.ghost-light {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
}

.round-action,
.icon-button {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(13, 11, 20, .72);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
}

.pc-hero {
    min-height: 88vh;
    background:
        linear-gradient(90deg, rgba(6, 4, 12, .88) 0%, rgba(6, 4, 12, .58) 46%, rgba(6, 4, 12, .92) 100%),
        linear-gradient(180deg, rgba(6, 4, 12, .10), #08070d 94%),
        url("https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.pc-hero-overlay {
    background:
        linear-gradient(110deg, rgba(255, 47, 125, .34), transparent 42%),
        linear-gradient(270deg, rgba(25, 247, 210, .16), transparent 38%);
}

.pc-nav {
    padding-top: 24px;
}

.pc-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pc-logo::before {
    content: "";
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    box-shadow: 0 0 30px rgba(255, 47, 125, .45);
}

.pc-nav div a {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

.pc-hero-content {
    width: min(740px, calc(100% - 40px));
    padding-top: 12vh;
}

.pc-hero-content h1 {
    max-width: 720px;
    text-shadow: 0 20px 70px rgba(255, 47, 125, .30);
}

.pc-feature-panel {
    position: absolute;
    z-index: 3;
    right: min(6vw, 86px);
    bottom: 120px;
    display: grid;
    grid-template-columns: 118px 220px;
    gap: 16px;
    align-items: end;
    width: min(382px, 36vw);
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(10, 8, 16, .70);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .36);
    backdrop-filter: blur(18px);
}

.pc-feature-panel img {
    width: 118px;
    aspect-ratio: 2 / 3;
    border-radius: 8px;
    object-fit: cover;
}

.pc-feature-panel span {
    display: inline-flex;
    width: max-content;
    margin-bottom: 8px;
    padding: 5px 8px;
    border-radius: 6px;
    color: #160814;
    background: var(--gold);
    font-size: 12px;
    font-weight: 900;
}

.pc-feature-panel strong {
    display: block;
    font-size: 24px;
}

.pc-feature-panel small {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .70);
    line-height: 1.5;
}

.pc-hero-bottom span {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .07);
}

.pc-section {
    color: #121019;
}

.pc-band {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(255, 47, 125, .20), rgba(25, 247, 210, .10)),
        #121019;
}

.h5-body {
    color: #fff;
    background:
        linear-gradient(140deg, rgba(255, 47, 125, .20), transparent 34%),
        linear-gradient(220deg, rgba(25, 247, 210, .13), transparent 32%),
        linear-gradient(180deg, #08070d 0%, #16101d 48%, #09070d 100%);
}

.h5-shell {
    position: relative;
    overflow: hidden;
    padding-top: max(18px, env(safe-area-inset-top));
}

.h5-shell::before {
    content: "";
    position: fixed;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .65), transparent 70%);
}

.h5-home-top {
    margin-bottom: 18px;
}

.brand-lockup {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
}

.brand-mark {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    color: #170611;
    background: linear-gradient(135deg, var(--rose), #ff8a3d 55%, var(--gold));
    box-shadow: 0 16px 36px rgba(255, 47, 125, .35);
}

.brand-mark svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.h5-header h1 {
    font-size: 30px;
    font-weight: 950;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tiny-vip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 8px;
    color: #170611;
    background: var(--gold);
    font-size: 12px;
    font-weight: 950;
}

.tiny-vip svg {
    width: 14px;
    height: 14px;
}

.banner-strip {
    grid-auto-columns: 92%;
    gap: 14px;
    margin: 0 -4px;
    padding: 0 4px 5px;
}

.banner-slide {
    min-height: 270px;
    justify-content: flex-end;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 24px 58px rgba(0, 0, 0, .34);
}

.banner-slide::before {
    background:
        linear-gradient(180deg, rgba(5, 4, 9, .04), rgba(5, 4, 9, .42) 45%, rgba(5, 4, 9, .95)),
        linear-gradient(90deg, rgba(255, 47, 125, .35), transparent 52%);
}

.banner-copy {
    width: 100%;
    padding: 20px;
}

.banner-slide span {
    color: #180812;
    background: linear-gradient(135deg, var(--gold), #fff1a6);
}

.banner-slide strong {
    display: block;
    margin-top: 14px;
    font-size: 30px;
    line-height: 1.08;
}

.banner-slide small {
    display: block;
    width: 86%;
    min-height: 36px;
}

.banner-slide em {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 8px;
    color: #160814;
    background: var(--cyan);
    font-style: normal;
    font-weight: 950;
}

.banner-slide em svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.quick-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
}

.quick-grid a {
    min-height: 42px;
    color: rgba(255, 255, 255, .90);
    border: 1px solid rgba(255, 255, 255, .10);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .05)),
        rgba(13, 10, 20, .78);
}

.section-block {
    margin-top: 28px;
}

.section-title-row h2 {
    font-size: 23px;
    font-weight: 950;
}

.section-title-row a {
    color: var(--cyan);
}

.poster-row {
    grid-auto-columns: 36%;
    gap: 14px;
}

.poster-card {
    position: relative;
}

.poster-cover {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #17121e;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .34);
}

.poster-cover::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .78));
}

.poster-cover img,
.poster-card img {
    aspect-ratio: 2 / 3;
    border-radius: 8px;
    transition: transform .22s ease;
}

.poster-card:hover img {
    transform: scale(1.03);
}

.poster-cover span {
    position: absolute;
    z-index: 1;
    left: 7px;
    bottom: 7px;
    padding: 3px 6px;
    border-radius: 5px;
    color: #180812;
    background: var(--gold);
    font-size: 10px;
    font-weight: 950;
}

.poster-card strong {
    margin-top: 10px;
    color: #fff;
    font-weight: 900;
}

.poster-card span {
    color: rgba(255, 255, 255, .58);
}

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

.calendar-grid a {
    border: 1px solid rgba(255, 255, 255, .10);
    background:
        linear-gradient(180deg, rgba(255, 47, 125, .16), rgba(25, 247, 210, .06)),
        rgba(255, 255, 255, .05);
}

.compact-item,
.result-item,
.provider-panel,
.task-panel a {
    border-color: rgba(255, 255, 255, .10);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04)),
        rgba(12, 10, 18, .78);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.compact-item img,
.result-item img {
    box-shadow: 0 12px 28px rgba(0, 0, 0, .32);
}

.compact-item em {
    display: block;
    margin-top: 6px;
    color: var(--gold);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.ranking-list a {
    min-height: 54px;
    border: 1px solid rgba(255, 255, 255, .09);
    background:
        linear-gradient(90deg, rgba(255, 47, 125, .14), rgba(25, 247, 210, .05)),
        rgba(255, 255, 255, .05);
}

.ranking-list span {
    color: #180812;
    background: linear-gradient(135deg, var(--rose), var(--gold));
}

.bottom-tabs {
    border-top-color: rgba(255, 255, 255, .10);
    background: rgba(7, 6, 11, .88);
}

.bottom-tabs a.active {
    color: var(--rose);
}

.search-panel {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .20);
}

.search-input {
    background: rgba(255, 255, 255, .10);
}

.search-input button {
    color: #170611;
    background: linear-gradient(135deg, var(--cyan), var(--green));
}

.filter-row select {
    color: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .08);
}

.detail-hero {
    min-height: 390px;
    padding-bottom: 22px;
}

.detail-hero::before {
    background:
        linear-gradient(180deg, rgba(7, 5, 12, .08), rgba(7, 5, 12, .42) 44%, #09070d 92%),
        linear-gradient(90deg, rgba(255, 47, 125, .30), transparent 56%);
}

.detail-hero-content {
    grid-template-columns: 126px 1fr;
}

.detail-hero-content img {
    width: 126px;
    border: 1px solid rgba(255, 255, 255, .18);
}

.detail-status {
    display: inline-flex;
    width: max-content;
    margin-bottom: 9px;
    padding: 5px 8px;
    border-radius: 6px;
    color: #170611;
    background: var(--gold);
    font-size: 12px;
    font-weight: 950;
}

.detail-hero-content h1 {
    font-size: 30px;
    line-height: 1.08;
}

.detail-score-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.detail-score-row span {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin: 0;
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
}

.detail-score-row strong {
    color: var(--gold);
    font-size: 18px;
}

.detail-actions {
    position: sticky;
    z-index: 8;
    top: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 8px;
    background: rgba(9, 7, 13, .78);
    backdrop-filter: blur(14px);
}

.compact-heading {
    margin-bottom: 10px;
}

.tag-row a {
    color: #160814;
    background: linear-gradient(135deg, rgba(25, 247, 210, .92), rgba(255, 209, 102, .92));
    font-weight: 900;
}

.summary {
    color: rgba(255, 255, 255, .76);
}

.meta-grid div {
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .06);
}

.provider-panel {
    border-color: rgba(25, 247, 210, .22);
}

.provider-panel span {
    color: var(--gold);
}

.provider-panel span,
.creator-hero > span {
    color: var(--provider-color, var(--gold));
}

.provider-panel strong,
.creator-hero h1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
}

.provider-panel strong {
    justify-content: flex-start;
}

.verified-badge {
    display: inline-grid;
    place-items: center;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    color: #fff;
    background: var(--verify-color, var(--blue));
    box-shadow: 0 0 18px color-mix(in srgb, var(--verify-color, #7c5cff) 55%, transparent);
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
    line-height: 1;
}

.verified-badge.large {
    width: 24px;
    height: 24px;
    font-size: 14px;
}

.paywall-strip {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 11px;
    align-items: center;
    margin: 0 0 18px;
    padding: 13px;
    border: 1px solid rgba(255, 209, 102, .24);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 209, 102, .16), rgba(255, 47, 125, .10)),
        rgba(255, 255, 255, .06);
}

.share-page-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    margin: -18px -14px 0;
    padding: 76px 18px 22px;
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.share-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(7, 5, 12, .10), rgba(7, 5, 12, .45) 42%, #09070d 92%),
        linear-gradient(90deg, rgba(255, 47, 125, .30), transparent 60%);
}

.share-back,
.share-float {
    position: absolute;
    top: max(14px, env(safe-area-inset-top));
}

.share-back {
    left: 14px;
}

.share-float {
    right: 14px;
    top: max(62px, calc(env(safe-area-inset-top) + 58px));
    z-index: 19;
}

.share-hero-content {
    width: 100%;
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 15px;
    align-items: end;
}

.share-hero-content img {
    width: 128px;
    aspect-ratio: 2 / 3;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.share-hero-content h1 {
    margin: 6px 0 8px;
    font-size: 32px;
    line-height: 1.06;
}

.share-hero-content span {
    color: rgba(255, 255, 255, .70);
    line-height: 1.5;
}

.share-card {
    display: grid;
    gap: 14px;
    margin-top: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04)),
        rgba(12, 10, 18, .82);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}

.share-card p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    line-height: 1.75;
}

.share-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.share-stat-row div {
    min-width: 0;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
}

.share-stat-row strong,
.share-stat-row span {
    display: block;
}

.share-stat-row strong {
    color: var(--gold);
    font-size: 20px;
}

.share-stat-row span {
    margin-top: 2px;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
}

.share-actions {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 9px;
}

.share-provider {
    margin-top: 14px;
}

.paywall-strip svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.paywall-strip strong,
.paywall-strip span {
    display: block;
}

.paywall-strip span {
    margin-top: 4px;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    line-height: 1.5;
}

.episode-grid a {
    border: 1px solid rgba(255, 255, 255, .09);
    background: rgba(255, 255, 255, .07);
}

.episode-grid a.active,
.episode-grid a:hover {
    color: #170611;
    background: linear-gradient(135deg, var(--cyan), var(--green));
}

.episode-grid a.active span,
.episode-grid a:hover span {
    color: rgba(23, 6, 17, .70);
}

.player-body {
    background:
        linear-gradient(180deg, #020204 0%, #0c0712 52%, #08070d 100%);
}

.player-shell {
    background:
        linear-gradient(140deg, rgba(255, 47, 125, .14), transparent 40%),
        #050407;
}

.player-top {
    min-height: 72px;
    padding-inline: 14px;
}

.player-top em {
    display: block;
    margin-bottom: 3px;
    color: var(--rose);
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
    text-transform: uppercase;
}

.video-stage {
    padding: 8px;
    background: #020204;
}

.video-stage video {
    border-radius: 8px;
    box-shadow: 0 22px 62px rgba(0, 0, 0, .46);
}

.player-controls {
    padding: 14px;
}

.player-meta-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.player-meta-strip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 34px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .07);
    font-size: 12px;
    font-weight: 800;
}

.player-meta-strip svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

.source-tabs button,
.speed-tabs button {
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .08);
}

.source-tabs button.active,
.speed-tabs button.active {
    color: #170611;
    background: linear-gradient(135deg, var(--rose), var(--gold));
}

.creator-hero,
.me-header,
.auth-card {
    border: 1px solid rgba(255, 255, 255, .10);
    background:
        linear-gradient(135deg, rgba(255, 47, 125, .16), rgba(25, 247, 210, .08)),
        rgba(255, 255, 255, .06);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}

.creator-hero img {
    border: 2px solid rgba(255, 255, 255, .22);
}

.avatar {
    color: #170611;
    background: linear-gradient(135deg, var(--rose), var(--gold));
}

.task-panel a {
    border-color: rgba(255, 255, 255, .10);
}

.auth-card input {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .09);
}

.task-hero-page {
    position: relative;
    display: grid;
    gap: 12px;
    padding: 52px 16px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 47, 125, .34), rgba(255, 209, 102, .18) 48%, rgba(25, 247, 210, .16)),
        rgba(255, 255, 255, .06);
    box-shadow: 0 22px 58px rgba(0, 0, 0, .30);
}

.task-back {
    position: absolute;
    left: 14px;
    top: 14px;
}

.task-hero-page h1 {
    margin: 0;
    font-size: 31px;
    line-height: 1.05;
}

.task-hero-page p:not(.eyebrow) {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .72);
    line-height: 1.5;
}

.task-score-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
    align-items: end;
    padding: 12px;
    border-radius: 8px;
    color: #160814;
    background: linear-gradient(135deg, var(--gold), #fff3a8);
}

.task-score-card span,
.task-score-card small {
    font-size: 12px;
    font-weight: 900;
}

.task-score-card strong {
    grid-row: 1 / 3;
    grid-column: 2;
    font-size: 38px;
    line-height: .9;
}

.task-action-grid {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.task-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px 12px;
    align-items: start;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04)),
        rgba(12, 10, 18, .82);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .24);
}

.task-card.featured {
    border-color: rgba(255, 47, 125, .28);
}

.task-card-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: #160814;
    background: linear-gradient(135deg, var(--rose), var(--gold));
}

.task-card-icon.gold {
    background: linear-gradient(135deg, var(--gold), var(--cyan));
}

.task-card-icon svg {
    width: 22px;
    height: 22px;
}

.task-card span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 950;
}

.task-card h2 {
    margin: 3px 0 0;
    font-size: 21px;
    line-height: 1.15;
}

.task-card p,
.task-card small {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .64);
    line-height: 1.5;
}

.task-card .button,
.task-card > small,
.invite-copy-box {
    grid-column: 1 / -1;
}

.task-card button:disabled {
    opacity: .7;
    cursor: wait;
}

.invite-copy-box {
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 8px;
}

.invite-copy-box input {
    min-width: 0;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.invite-copy-box button {
    display: grid;
    place-items: center;
    min-width: 0;
    border: 0;
    border-radius: 8px;
    color: #160814;
    background: var(--cyan);
    font-size: 12px;
    font-weight: 950;
}

.invite-copy-box svg {
    width: 18px;
    height: 18px;
}

.task-rule-list,
.task-event-list {
    display: grid;
    gap: 10px;
}

.task-rule-list div,
.task-event-list div {
    min-width: 0;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

.task-rule-list div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 5px 10px;
    align-items: start;
}

.task-rule-list svg {
    grid-row: 1 / 3;
    width: 24px;
    height: 24px;
    color: var(--cyan);
}

.task-rule-list strong,
.task-event-list strong {
    color: #fff;
}

.task-rule-list span,
.task-event-list small {
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
    line-height: 1.5;
}

.task-event-list div {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 5px 10px;
    align-items: center;
}

.task-event-list span {
    padding: 4px 7px;
    border-radius: 6px;
    color: #160814;
    background: var(--cyan);
    font-size: 11px;
    font-weight: 950;
}

.task-event-list span.invite {
    background: var(--gold);
}

.task-event-list em {
    color: var(--gold);
    font-style: normal;
    font-weight: 950;
}

.task-event-list small {
    grid-column: 2 / 4;
}

.empty-task-event {
    grid-template-columns: 1fr !important;
}

.empty-task-event small {
    grid-column: auto;
}

@media (max-width: 820px) {
    .pc-feature-panel {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 40px);
        margin: 26px 20px 90px;
    }
}

@media (max-width: 390px) {
    .quick-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .poster-row {
        grid-auto-columns: 39%;
    }

    .detail-hero-content {
        grid-template-columns: 108px 1fr;
    }

    .detail-hero-content img {
        width: 108px;
    }
}

/* PC official site polish */
.pc-cinema {
    min-height: 88vh;
    padding-bottom: 0;
    background:
        linear-gradient(90deg, rgba(7, 5, 13, .96) 0%, rgba(7, 5, 13, .62) 48%, rgba(7, 5, 13, .92) 100%),
        linear-gradient(180deg, rgba(7, 5, 13, .10), #08070d 96%),
        url("https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.pc-cinema::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    height: 220px;
    background: linear-gradient(180deg, transparent, #08070d);
    pointer-events: none;
}

.pc-cinema .pc-hero-overlay {
    background:
        linear-gradient(115deg, rgba(255, 47, 125, .32), transparent 44%),
        linear-gradient(290deg, rgba(25, 247, 210, .18), transparent 46%);
}

.pc-cinema .pc-nav {
    padding: 24px min(6vw, 86px) 0;
}

.pc-nav-links {
    align-items: center;
}

.pc-cinema .pc-nav-links a {
    color: rgba(255, 255, 255, .78);
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(16px);
}

.pc-cinema .pc-nav-links a:hover {
    color: #fff;
    border-color: rgba(255, 209, 102, .42);
    background: rgba(255, 255, 255, .12);
}

.pc-hero-stage {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
    gap: min(7vw, 92px);
    align-items: center;
    min-height: calc(100vh - 230px);
    padding: 5vh min(6vw, 86px) 42px;
}

.pc-cinema .pc-hero-content {
    width: auto;
    padding: 0;
}

.pc-cinema .pc-hero-content .eyebrow {
    display: inline-flex;
    width: max-content;
    margin-bottom: 16px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 209, 102, .32);
    border-radius: 8px;
    color: var(--gold);
    background: rgba(255, 209, 102, .10);
}

.pc-cinema .pc-hero-content h1 {
    max-width: 780px;
    font-size: clamp(58px, 8vw, 116px);
    line-height: .9;
    text-shadow: 0 22px 70px rgba(255, 47, 125, .36);
}

.pc-cinema .pc-hero-content p:not(.eyebrow) {
    max-width: 650px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(17px, 1.6vw, 21px);
}

.pc-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.pc-proof-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(16px);
}

.pc-proof-row strong {
    color: #fff;
}

.pc-hero-showcase {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.pc-screen {
    position: relative;
    height: min(64vh, 620px);
    min-height: 560px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 47, 125, .20), rgba(25, 247, 210, .10)),
        #15101f;
    box-shadow: 0 34px 100px rgba(0, 0, 0, .48);
}

.pc-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.pc-screen-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 7, 13, .08), rgba(8, 7, 13, .80)),
        linear-gradient(90deg, rgba(8, 7, 13, .58), transparent 56%);
}

.pc-screen-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 10px;
    border-radius: 8px;
    color: #1b0712;
    background: var(--gold);
    font-size: 12px;
    font-weight: 950;
}

.pc-play-orb {
    position: absolute;
    left: 22px;
    bottom: 128px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #160713;
    background: linear-gradient(135deg, var(--rose), #ff8a3d 48%, var(--gold));
    box-shadow: 0 16px 36px rgba(255, 47, 125, .34);
}

.pc-play-orb svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.pc-screen-info {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 26px;
    display: grid;
    gap: 7px;
}

.pc-screen-info small,
.pc-screen-info em {
    color: rgba(255, 255, 255, .72);
    font-style: normal;
}

.pc-screen-info strong {
    font-size: 34px;
    line-height: 1.08;
}

.pc-screen-empty {
    display: block;
}

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

.pc-watch-stack a {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 10px;
    align-items: center;
    min-width: 0;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(18px);
}

.pc-watch-stack img {
    width: 48px;
    aspect-ratio: 2 / 3;
    border-radius: 8px;
    object-fit: cover;
}

.pc-watch-stack div {
    min-width: 0;
}

.pc-watch-stack span {
    display: block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 950;
}

.pc-watch-stack strong,
.pc-watch-stack small {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.pc-watch-stack small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .62);
}

.pc-cinema .pc-hero-bottom {
    z-index: 3;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    bottom: 24px;
}

.pc-hero-bottom a {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 3px 12px;
    align-items: center;
    min-height: 68px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
}

.pc-hero-bottom a:hover {
    border-color: rgba(255, 209, 102, .42);
    background: rgba(255, 255, 255, .13);
}

.pc-hero-bottom i,
.pc-hero-bottom svg {
    grid-row: 1 / 3;
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.pc-hero-bottom strong,
.pc-hero-bottom small {
    min-width: 0;
}

.pc-hero-bottom strong {
    align-self: end;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.pc-hero-bottom small {
    align-self: start;
    overflow: hidden;
    color: rgba(255, 255, 255, .56);
    white-space: nowrap;
    text-overflow: ellipsis;
}

.pc-main {
    position: relative;
    z-index: 2;
    background:
        linear-gradient(180deg, #08070d, #11101a 48%, #09070d);
}

.pc-main .pc-section {
    width: min(1220px, calc(100% - 44px));
    padding: 74px 0;
}

.pc-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.pc-section-heading h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
}

.pc-text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .06);
}

.pc-text-link svg {
    width: 17px;
    height: 17px;
}

.pc-poster-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.pc-poster-card {
    position: relative;
    color: #fff;
}

.pc-poster-card img {
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 20px 44px rgba(0, 0, 0, .28);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.pc-poster-card:hover img {
    border-color: rgba(255, 209, 102, .42);
    box-shadow: 0 26px 60px rgba(0, 0, 0, .42);
    transform: translateY(-4px);
}

.pc-rank {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    border-radius: 8px;
    color: #180712;
    background: var(--gold);
    font-size: 13px;
    font-weight: 950;
}

.pc-poster-card strong {
    color: #fff;
}

.pc-poster-card span {
    color: rgba(255, 255, 255, .58);
}

.pc-poster-card em {
    display: block;
    margin-top: 5px;
    overflow: hidden;
    color: rgba(255, 209, 102, .86);
    font-size: 12px;
    font-style: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.pc-promo-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 18px;
    padding-top: 24px !important;
    padding-bottom: 88px !important;
}

.pc-promo-panel {
    min-height: 244px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 24px 72px rgba(0, 0, 0, .25);
    overflow: hidden;
}

.pc-promo-panel h2 {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 42px);
}

.pc-promo-panel p:not(.eyebrow) {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, .66);
    line-height: 1.75;
}

.pc-promo-panel span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    max-width: 100%;
    color: var(--gold);
    font-weight: 900;
}

.pc-promo-panel svg {
    width: 18px;
    height: 18px;
}

.pc-vip-panel {
    background:
        linear-gradient(135deg, rgba(255, 47, 125, .38), rgba(255, 209, 102, .18)),
        rgba(255, 255, 255, .07);
}

.pc-mobile-panel {
    background:
        linear-gradient(150deg, rgba(25, 247, 210, .22), rgba(124, 92, 255, .18)),
        rgba(255, 255, 255, .07);
}

.pc-share-panel {
    background:
        linear-gradient(150deg, rgba(124, 92, 255, .25), rgba(255, 47, 125, .18)),
        rgba(255, 255, 255, .07);
}

@media (max-width: 1080px) {
    .pc-hero-stage {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 60px;
        padding-bottom: 54px;
    }

    .pc-hero-showcase {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
        align-items: stretch;
    }

    .pc-screen,
    .pc-screen img {
        height: 460px;
        min-height: 460px;
    }

    .pc-watch-stack {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 760px) {
    .pc-cinema {
        padding-bottom: 32px;
    }

    .pc-cinema .pc-nav {
        padding: 18px 18px 0;
    }

    .pc-nav-links {
        gap: 8px !important;
    }

    .pc-cinema .pc-nav-links a {
        padding: 8px 9px;
        font-size: 12px;
    }

    .pc-hero-stage {
        padding: 52px 18px 24px;
    }

    .pc-cinema .pc-hero-content h1 {
        font-size: 54px;
    }

    .pc-hero-showcase {
        grid-template-columns: 1fr;
    }

    .pc-screen,
    .pc-screen img {
        min-height: 420px;
    }

    .pc-watch-stack {
        grid-template-columns: 1fr;
    }

    .pc-cinema .pc-hero-bottom {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        grid-template-columns: 1fr 1fr;
        width: calc(100% - 36px);
        margin: 0 auto;
    }

    .pc-main .pc-section {
        width: calc(100% - 36px);
        padding: 48px 0;
    }

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

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

/* H5 streaming app skin v3 */
.h5-body {
    --app-bg: #030304;
    --app-panel: rgba(15, 17, 22, .88);
    --app-panel-2: rgba(19, 22, 29, .80);
    --app-line: rgba(255, 255, 255, .09);
    --app-text: #f8fbff;
    --app-muted: rgba(238, 246, 255, .58);
    --app-green: #4da3ff;
    --app-mint: #ff5b8a;
    --app-blue: #8f7cff;
    --app-gold: #ffd76a;
    --cyan: var(--app-green);
    --rose: var(--app-mint);
    --gold: var(--app-gold);
    --green: var(--app-green);
    color: var(--app-text);
    background:
        radial-gradient(circle at 50% -220px, rgba(77, 163, 255, .08), transparent 36%),
        linear-gradient(180deg, #030304 0%, #07080c 42%, #030304 100%);
}

.h5-shell {
    width: min(480px, 100%);
    overflow: visible;
    padding: max(14px, env(safe-area-inset-top)) 12px calc(86px + env(safe-area-inset-bottom));
}

.h5-shell::before {
    display: none;
}

.h5-locale {
    margin-bottom: 8px;
}

.h5-locale a {
    min-height: 26px;
    border-color: rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .06);
}

.h5-locale a.active {
    color: #04100b;
    background: var(--app-green);
}

.h5-header {
    margin-bottom: 14px;
}

.h5-home-top {
    position: sticky;
    z-index: 16;
    top: 0;
    margin: -4px -12px 12px;
    padding: 10px 12px 8px;
    background: linear-gradient(180deg, rgba(5, 7, 11, .96), rgba(5, 7, 11, .74) 72%, transparent);
    backdrop-filter: blur(18px);
}

.brand-lockup {
    gap: 9px;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: #04100b;
    background: linear-gradient(135deg, var(--app-green), var(--app-mint));
    box-shadow: 0 10px 28px rgba(77, 163, 255, .18);
}

.brand-mark svg {
    width: 17px;
    height: 17px;
}

.brand-mark.has-logo {
    overflow: hidden;
    background: rgba(255, 255, 255, .80);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.brand-mark.has-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.h5-header .eyebrow,
.section-title-row .eyebrow,
.sticky-search .eyebrow {
    color: var(--app-green);
    font-size: 10px;
}

.h5-header h1 {
    font-size: 24px;
    line-height: 1.1;
}

.header-actions {
    gap: 7px;
}

.tiny-vip {
    min-height: 31px;
    border: 1px solid rgba(255, 215, 106, .28);
    color: #140f04;
    background: linear-gradient(135deg, var(--app-gold), #fff1a7);
    box-shadow: none;
}

.round-action,
.icon-button {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
}

.banner-strip {
    grid-auto-columns: 100%;
    gap: 12px;
    margin: 0;
    padding: 0 0 6px;
    scroll-snap-type: x mandatory;
}

.banner-slide {
    min-height: 234px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .38);
    scroll-snap-align: start;
}

.banner-slide::before {
    background:
        linear-gradient(180deg, rgba(5, 7, 11, .08), rgba(5, 7, 11, .24) 38%, rgba(5, 7, 11, .92)),
        linear-gradient(90deg, rgba(3, 8, 10, .72), rgba(3, 8, 10, .08) 58%);
}

.banner-copy {
    padding: 18px;
}

.banner-slide span {
    padding: 4px 8px;
    border-radius: 6px;
    color: #03130b;
    background: var(--app-green);
    font-size: 10px;
}

.banner-slide strong {
    max-width: 88%;
    margin-top: 12px;
    font-size: 28px;
    line-height: 1.08;
}

.banner-slide small {
    width: 90%;
    min-height: 0;
    margin-top: 7px;
    color: rgba(255, 255, 255, .70);
}

.banner-slide em {
    min-height: 34px;
    margin-top: 14px;
    border-radius: 8px;
    color: #04100b;
    background: linear-gradient(135deg, var(--app-green), var(--app-mint));
}

.quick-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin: 14px -12px 24px;
    padding: 0 12px 2px;
    scrollbar-width: none;
}

.quick-grid::-webkit-scrollbar {
    display: none;
}

.quick-grid a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .82);
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .06);
    font-size: 12px;
}

.section-block {
    margin-top: 26px;
}

.section-title-row {
    margin-bottom: 12px;
}

.section-title-row h2 {
    font-size: 21px;
    letter-spacing: 0;
}

.section-title-row a {
    color: var(--app-green);
}

.poster-row {
    grid-auto-columns: 30%;
    gap: 11px;
    margin-right: -12px;
    padding-right: 12px;
}

.poster-cover,
.poster-card img {
    border-radius: 8px;
    background: #121821;
    box-shadow: none;
}

.poster-cover {
    border: 1px solid rgba(255, 255, 255, .08);
}

.poster-cover::after {
    height: 52%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .82));
}

.poster-cover img,
.poster-card img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.poster-cover span {
    left: 6px;
    bottom: 6px;
    padding: 3px 6px;
    border-radius: 5px;
    color: #04100b;
    background: rgba(77, 163, 255, .92);
}

.poster-card strong {
    margin-top: 8px;
    color: #fff;
    font-size: 13px;
    line-height: 1.3;
}

.poster-card span {
    margin-top: 3px;
    color: var(--app-muted);
    font-size: 11px;
}

.compact-list,
.search-results {
    gap: 10px;
}

.compact-item,
.result-item,
.provider-panel,
.task-panel a {
    border-color: var(--app-line);
    border-radius: 8px;
    background: var(--app-panel);
    box-shadow: none;
}

.compact-item {
    grid-template-columns: 64px 1fr 20px;
    padding: 9px;
}

.compact-item img {
    width: 64px;
    height: 88px;
    border-radius: 7px;
}

.compact-item strong,
.result-item strong {
    color: #fff;
    font-size: 14px;
}

.poster-card span,
.compact-item span,
.result-item span,
.result-item p,
.result-item em {
    color: var(--app-muted);
}

.compact-item em,
.result-item em {
    color: var(--app-green);
}

.ranking-list a {
    min-height: 52px;
    border-color: var(--app-line);
    background: rgba(255, 255, 255, .045);
}

.ranking-list span {
    border-radius: 8px;
    color: #04100b;
    background: var(--app-green);
}

.ranking-list a:nth-child(2) span {
    background: var(--app-blue);
}

.ranking-list a:nth-child(3) span {
    background: var(--app-gold);
}

.ranking-list em {
    color: var(--app-muted);
}

.bottom-tabs {
    width: min(480px, 100%);
    padding: 8px 18px calc(8px + env(safe-area-inset-bottom));
    border-top-color: rgba(255, 255, 255, .08);
    background: rgba(7, 10, 14, .88);
}

.bottom-tabs a {
    gap: 4px;
    color: rgba(255, 255, 255, .45);
}

.bottom-tabs a.active {
    color: var(--app-green);
}

.bottom-tabs a.active svg {
    filter: drop-shadow(0 0 10px rgba(77, 163, 255, .22));
}

.sticky-search {
    margin: -14px -12px 0;
    padding: max(14px, env(safe-area-inset-top)) 12px 12px;
    background: rgba(5, 7, 11, .92);
    backdrop-filter: blur(18px);
}

.search-panel {
    padding: 10px;
    border-color: var(--app-line);
    background: rgba(255, 255, 255, .045);
    box-shadow: none;
}

.search-input {
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
}

.search-input button {
    color: #04100b;
    background: var(--app-green);
}

.filter-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
    display: none;
}

.filter-row select {
    flex: 0 0 auto;
    min-width: 104px;
    height: 36px;
    border-color: rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .065);
    font-size: 12px;
}

.hot-search a,
.tag-row a {
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .06);
}

.result-item {
    grid-template-columns: 92px 1fr;
    padding: 9px;
}

.result-item img {
    width: 92px;
    height: 130px;
    border-radius: 8px;
}

.detail-hero {
    min-height: 420px;
    margin: -14px -12px 0;
    padding: 70px 12px 18px;
}

.detail-hero::before {
    background:
        linear-gradient(180deg, rgba(5, 7, 11, .06), rgba(5, 7, 11, .40) 38%, #05070b 94%),
        linear-gradient(90deg, rgba(77, 163, 255, .10), transparent 62%);
}

.detail-hero-content {
    grid-template-columns: 118px 1fr;
    gap: 13px;
}

.detail-hero-content img {
    width: 118px;
    border-radius: 8px;
    border-color: rgba(255, 255, 255, .16);
}

.detail-status {
    margin-bottom: 8px;
    color: #04100b;
    background: var(--app-green);
}

.detail-hero-content h1 {
    font-size: 27px;
}

.detail-hero-content p,
.detail-hero-content span {
    color: rgba(255, 255, 255, .68);
}

.detail-score-row span {
    border-color: rgba(255, 255, 255, .09);
    background: rgba(255, 255, 255, .06);
}

.detail-score-row strong {
    color: var(--app-green);
}

.detail-actions {
    position: static;
    grid-template-columns: 1.35fr 1fr 1fr;
    margin: 12px 0 24px;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
}

.button.primary {
    color: #04100b;
    background: linear-gradient(135deg, var(--app-green), var(--app-mint));
}

.button.ghost,
.button.ghost-light {
    color: rgba(255, 255, 255, .88);
    border-color: rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .07);
}

.tag-row a {
    color: rgba(255, 255, 255, .82);
    font-weight: 800;
}

.summary {
    color: rgba(255, 255, 255, .70);
}

.meta-grid div,
.episode-grid a,
.share-card,
.share-stat-row div,
.task-rule-list div,
.task-event-list div {
    border-color: var(--app-line);
    background: rgba(255, 255, 255, .055);
}

.provider-panel {
    border-color: rgba(77, 163, 255, .14);
}

.provider-panel span {
    color: var(--provider-color, var(--app-green));
}

.paywall-strip {
    border-color: rgba(255, 215, 106, .24);
    background: linear-gradient(135deg, rgba(255, 215, 106, .12), rgba(255, 255, 255, .04));
}

.episode-grid {
    gap: 8px;
}

.episode-grid a {
    min-height: 64px;
}

.episode-grid a.active,
.episode-grid a:hover {
    color: #04100b;
    background: var(--app-green);
}

.me-header,
.auth-card,
.creator-hero {
    border-color: var(--app-line);
    background:
        linear-gradient(135deg, rgba(77, 163, 255, .10), rgba(255, 91, 138, .06)),
        var(--app-panel);
    box-shadow: none;
}

.avatar {
    color: #04100b;
    background: linear-gradient(135deg, var(--app-green), var(--app-blue));
}

.task-panel {
    gap: 9px;
}

.task-panel a {
    min-height: 80px;
}

.vip-member-panel {
    border: 1px solid rgba(255, 215, 106, .18);
    border-radius: 8px;
    padding: 14px;
    background: linear-gradient(135deg, rgba(255, 215, 106, .12), rgba(255, 255, 255, .04));
}

.vip-plan-row div {
    border-color: rgba(255, 255, 255, .10);
    background: rgba(5, 7, 11, .58);
}

.auth-card input,
.invite-copy-box input {
    border-color: rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .07);
}

.task-hero-page,
.task-card {
    border-color: var(--app-line);
    background: var(--app-panel);
    box-shadow: none;
}

.task-hero-page {
    background:
        linear-gradient(135deg, rgba(77, 163, 255, .11), rgba(255, 91, 138, .07)),
        var(--app-panel);
}

.task-score-card,
.task-card-icon,
.invite-copy-box button {
    color: #04100b;
    background: linear-gradient(135deg, var(--app-green), var(--app-mint));
}

.task-card-icon.gold {
    background: linear-gradient(135deg, var(--app-gold), var(--app-green));
}

.task-card span,
.task-event-list em {
    color: var(--app-green);
}

.share-page-hero {
    margin: -14px -12px 0;
}

.share-page-hero::before {
    background:
        linear-gradient(180deg, rgba(5, 7, 11, .08), rgba(5, 7, 11, .44) 42%, #05070b 92%),
        linear-gradient(90deg, rgba(77, 163, 255, .10), transparent 60%);
}

@media (max-width: 390px) {
    .poster-row {
        grid-auto-columns: 32%;
    }

    .banner-slide {
        min-height: 218px;
    }

    .detail-actions {
        grid-template-columns: 1fr;
    }
}

/* H5 light streaming background v4 */
.h5-body {
    --app-bg: #f6f8fc;
    --app-panel: #ffffff;
    --app-panel-2: #eef3fb;
    --app-line: rgba(15, 23, 42, .08);
    --app-text: #101828;
    --app-muted: rgba(16, 24, 40, .58);
    --app-green: #2f80ff;
    --app-mint: #ff4f86;
    --app-blue: #7657ff;
    --app-gold: #c98918;
    --cyan: var(--app-green);
    --rose: var(--app-mint);
    --gold: var(--app-gold);
    --green: var(--app-green);
    color: var(--app-text);
    background:
        radial-gradient(circle at 50% -180px, rgba(47, 128, 255, .16), transparent 36%),
        linear-gradient(180deg, #f8fafc 0%, #eef3fb 46%, #f7f9fc 100%);
}

.h5-body .h5-home-top {
    background: linear-gradient(180deg, rgba(248, 250, 252, .96), rgba(248, 250, 252, .82) 72%, transparent);
}

.h5-body .h5-locale a {
    color: rgba(16, 24, 40, .56);
    border-color: rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .78);
}

.h5-body .h5-locale a.active {
    color: #fff;
    background: var(--app-green);
}

.h5-body .h5-header h1,
.h5-body .section-title-row h2,
.h5-body .compact-item strong,
.h5-body .result-item strong,
.h5-body .poster-card strong,
.h5-body .ranking-list strong,
.h5-body .me-header h1,
.h5-body .auth-card h1,
.h5-body .task-card h2,
.h5-body .task-rule-list strong,
.h5-body .task-event-list strong {
    color: var(--app-text);
}

.h5-body .eyebrow,
.h5-body .h5-header .eyebrow,
.h5-body .section-title-row .eyebrow,
.h5-body .sticky-search .eyebrow {
    color: var(--app-green);
}

.h5-body .brand-mark,
.h5-body .button.primary,
.h5-body .search-input button,
.h5-body .episode-grid a.active,
.h5-body .episode-grid a:hover,
.h5-body .task-score-card,
.h5-body .task-card-icon,
.h5-body .invite-copy-box button {
    color: #fff;
    background: linear-gradient(135deg, var(--app-green), var(--app-blue));
}

.h5-body .round-action,
.h5-body .icon-button,
.h5-body .button.ghost,
.h5-body .button.ghost-light {
    color: rgba(16, 24, 40, .82);
    border-color: rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .82);
}

.h5-body .tiny-vip {
    color: #2a1902;
    border-color: rgba(201, 137, 24, .18);
    background: linear-gradient(135deg, #ffd76a, #fff0b7);
}

.h5-body .quick-grid a,
.h5-body .compact-item,
.h5-body .result-item,
.h5-body .provider-panel,
.h5-body .task-panel a,
.h5-body .ranking-list a,
.h5-body .search-panel,
.h5-body .meta-grid div,
.h5-body .episode-grid a,
.h5-body .share-card,
.h5-body .share-stat-row div,
.h5-body .task-rule-list div,
.h5-body .task-event-list div,
.h5-body .me-header,
.h5-body .auth-card,
.h5-body .creator-hero,
.h5-body .task-hero-page,
.h5-body .task-card,
.h5-body .vip-member-panel,
.h5-body .vip-plan-row div {
    color: var(--app-text);
    border-color: var(--app-line);
    background: var(--app-panel);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.h5-body .poster-cover,
.h5-body .poster-card > img {
    border-color: rgba(15, 23, 42, .08);
    background: #e6ecf5;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .10);
}

.h5-body .poster-card span,
.h5-body .compact-item span,
.h5-body .result-item span,
.h5-body .result-item p,
.h5-body .me-header p,
.h5-body .auth-card p,
.h5-body .summary,
.h5-body .task-card p,
.h5-body .task-card small,
.h5-body .task-rule-list span,
.h5-body .task-event-list small,
.h5-body .paywall-strip span {
    color: var(--app-muted);
}

.h5-body .compact-item em,
.h5-body .result-item em,
.h5-body .section-title-row a,
.h5-body .bottom-tabs a.active,
.h5-body .task-card span,
.h5-body .task-event-list em {
    color: var(--app-green);
}

.h5-body .search-input,
.h5-body .filter-row select,
.h5-body .auth-card input,
.h5-body .invite-copy-box input {
    color: var(--app-text);
    border-color: rgba(15, 23, 42, .08);
    background: #f1f5fb;
}

.h5-body .search-input input,
.h5-body .filter-row select {
    color: var(--app-text);
}

.h5-body .hot-search span {
    color: rgba(16, 24, 40, .46);
}

.h5-body .hot-search a,
.h5-body .tag-row a {
    color: rgba(16, 24, 40, .78);
    border-color: rgba(15, 23, 42, .08);
    background: #ffffff;
}

.h5-body .bottom-tabs {
    border-top-color: rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 -12px 28px rgba(15, 23, 42, .08);
}

.h5-body .bottom-tabs a {
    color: rgba(16, 24, 40, .46);
}

.h5-body .bottom-tabs a.active {
    color: var(--app-green);
}

.h5-body .bottom-tabs a.active svg {
    filter: drop-shadow(0 0 10px rgba(47, 128, 255, .20));
}

.h5-body .sticky-search {
    background: rgba(248, 250, 252, .92);
}

.h5-body .ranking-list span,
.h5-body .poster-cover span,
.h5-body .detail-status {
    color: #fff;
    background: var(--app-green);
}

.h5-body .ranking-list a:nth-child(2) span {
    background: var(--app-blue);
}

.h5-body .ranking-list a:nth-child(3) span {
    background: var(--app-mint);
}

.h5-body .detail-hero-content h1,
.h5-body .detail-hero-content p,
.h5-body .detail-hero-content span,
.h5-body .banner-slide strong,
.h5-body .banner-slide small,
.h5-body .banner-slide em {
    color: #fff;
}

.h5-body .detail-score-row span {
    color: rgba(255, 255, 255, .78);
    border-color: rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .20);
}

.h5-body .detail-score-row strong {
    color: #fff;
}

.h5-body .paywall-strip {
    border-color: rgba(201, 137, 24, .16);
    background: #fff8e7;
}

.h5-body .paywall-strip strong {
    color: #4b3205;
}

.h5-body .paywall-strip svg {
    color: var(--app-gold);
}

.h5-body .task-card-icon.gold {
    color: #2a1902;
    background: linear-gradient(135deg, #ffd76a, #fff0b7);
}

/* PC light official showcase v3 */
body:has(.pc-cinema) {
    color: #101828;
    background:
        radial-gradient(circle at 50% -180px, rgba(47, 128, 255, .14), transparent 34%),
        linear-gradient(180deg, #f8fafc 0%, #eef3fb 46%, #f7f9fc 100%);
}

.pc-cinema {
    min-height: 88vh;
    color: #101828;
    background:
        radial-gradient(circle at 72% 22%, rgba(47, 128, 255, .16), transparent 32%),
        linear-gradient(180deg, #f8fafc 0%, #eef3fb 100%);
}

.pc-cinema::after {
    height: 160px;
    background: linear-gradient(180deg, transparent, #f7f9fc);
}

.pc-cinema .pc-hero-overlay {
    background:
        linear-gradient(115deg, rgba(47, 128, 255, .12), transparent 46%),
        linear-gradient(290deg, rgba(255, 79, 134, .10), transparent 48%);
}

.pc-logo,
.pc-cinema .pc-hero-content h1,
.pc-section-heading h2,
.pc-promo-panel h2 {
    color: #101828;
}

.pc-logo::before {
    background: linear-gradient(135deg, #2f80ff, #7657ff);
    box-shadow: 0 12px 26px rgba(47, 128, 255, .22);
}

.pc-cinema .pc-nav-links a,
.pc-text-link {
    color: rgba(16, 24, 40, .76);
    border-color: rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

.pc-cinema .pc-nav-links a:hover,
.pc-text-link:hover {
    color: #2f80ff;
    border-color: rgba(47, 128, 255, .22);
    background: #fff;
}

.pc-cinema .pc-hero-content .eyebrow,
.pc-section-heading .eyebrow,
.pc-promo-panel .eyebrow {
    color: #2f80ff;
    border-color: rgba(47, 128, 255, .16);
    background: rgba(47, 128, 255, .08);
}

.pc-cinema .pc-hero-content p:not(.eyebrow) {
    color: rgba(16, 24, 40, .70);
}

.pc-cinema .button.primary {
    color: #fff;
    background: linear-gradient(135deg, #2f80ff, #7657ff);
    box-shadow: 0 14px 32px rgba(47, 128, 255, .22);
}

.pc-cinema .button.ghost-light {
    color: rgba(16, 24, 40, .82);
    border-color: rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .78);
}

.pc-proof-row span {
    color: rgba(16, 24, 40, .62);
    border-color: rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .07);
}

.pc-proof-row strong {
    color: #101828;
}

.pc-screen {
    border-color: rgba(15, 23, 42, .08);
    background: #fff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, .16);
}

.pc-screen-shade {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .56)),
        linear-gradient(90deg, rgba(0, 0, 0, .42), transparent 58%);
}

.pc-screen-badge {
    color: #fff;
    background: #2f80ff;
}

.pc-play-orb {
    color: #fff;
    background: linear-gradient(135deg, #2f80ff, #7657ff);
    box-shadow: 0 16px 34px rgba(47, 128, 255, .24);
}

.pc-watch-stack a {
    border-color: rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .07);
}

.pc-watch-stack span {
    color: #2f80ff;
}

.pc-watch-stack strong {
    color: #101828;
}

.pc-watch-stack small {
    color: rgba(16, 24, 40, .56);
}

.pc-main {
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3fb 52%, #f8fafc 100%);
}

.pc-poster-card {
    color: #101828;
}

.pc-poster-card img {
    border-color: rgba(15, 23, 42, .08);
    background: #e6ecf5;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .12);
}

.pc-poster-card:hover img {
    border-color: rgba(47, 128, 255, .28);
    box-shadow: 0 20px 46px rgba(15, 23, 42, .16);
}

.pc-rank {
    color: #fff;
    background: #2f80ff;
}

.pc-poster-card strong {
    color: #101828;
}

.pc-poster-card span {
    color: rgba(16, 24, 40, .56);
}

.pc-poster-card em {
    color: #2f80ff;
}

.pc-promo-panel {
    color: #101828;
    border-color: rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .09);
}

.pc-promo-panel p:not(.eyebrow) {
    color: rgba(16, 24, 40, .62);
}

.pc-promo-panel span {
    color: #2f80ff;
}

.pc-vip-panel {
    background:
        linear-gradient(135deg, rgba(47, 128, 255, .10), rgba(255, 255, 255, .88)),
        #fff;
}

.pc-mobile-panel {
    background:
        linear-gradient(135deg, rgba(118, 87, 255, .10), rgba(255, 255, 255, .88)),
        #fff;
}

.pc-share-panel {
    background:
        linear-gradient(135deg, rgba(255, 79, 134, .10), rgba(255, 255, 255, .88)),
        #fff;
}

@media (max-width: 760px) {
    .pc-cinema .pc-nav-links a {
        background: rgba(255, 255, 255, .86);
    }
}

.comment-form {
    display: grid;
    gap: 10px;
}

.comment-form textarea {
    width: 100%;
    min-height: 96px;
    padding: 12px 14px;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
    color: var(--text);
    background: rgba(255, 255, 255, .88);
    resize: vertical;
}

.comment-form button {
    justify-self: flex-start;
}

.comment-login,
.comment-list article,
.vip-order-list article {
    display: grid;
    gap: 6px;
    padding: 13px 14px;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
}

.comment-login {
    grid-template-columns: 1fr auto;
    align-items: center;
}

.comment-list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.comment-list strong,
.vip-order-list strong {
    color: var(--text);
    font-size: 14px;
}

.comment-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.comment-list time,
.vip-order-list small {
    color: var(--muted);
    font-size: 12px;
}

.vip-plan-row form {
    margin: 0;
}

.vip-plan-row button {
    width: 100%;
    min-height: 34px;
    border: 0;
    border-radius: 8px;
    color: #101828;
    background: #fff;
    font-weight: 900;
    cursor: pointer;
}

.vip-order-list {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.vip-order-list span {
    justify-self: flex-start;
    padding: 3px 8px;
    border-radius: 999px;
    color: #067647;
    background: #dcfae6;
    font-size: 12px;
    font-weight: 900;
}

.vip-order-list span.pending {
    color: #7a4b00;
    background: #fff3c6;
}

.vip-order-list span.cancelled {
    color: #b42318;
    background: #fee4e2;
}

.notice-strip,
.home-ad-strip {
    display: grid;
    gap: 10px;
    margin: 12px 0;
}

.notice-strip div,
.home-ad-strip .ad-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 10px;
    align-items: center;
    padding: 12px 13px;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 8px;
    color: var(--text);
    background: rgba(255, 255, 255, .86);
}

.notice-strip svg {
    width: 18px;
    height: 18px;
    color: #2f80ff;
}

.notice-strip span,
.home-ad-strip span {
    grid-column: 2;
    color: var(--muted);
    font-size: 12px;
}

.home-ad-strip img {
    width: 72px;
    height: 48px;
    grid-row: span 2;
    border-radius: 8px;
    object-fit: cover;
    background: rgba(16, 24, 40, .08);
}

.detail-ad-strip,
.player-ad-strip {
    margin: 0 0 16px;
}

.home-ad-strip .ad-card {
    color: #151820;
}

.ad-card-text {
    grid-template-columns: 1fr;
}

.ad-card-text span,
.ad-card-html .ad-html {
    grid-column: 1 / -1;
}

.ad-html {
    min-width: 0;
    color: inherit;
}

.ad-popup {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(15, 23, 42, .48);
    backdrop-filter: blur(8px);
}

.ad-popup-card {
    position: relative;
    width: min(360px, 100%);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(15, 23, 42, .28);
}

.ad-popup-close {
    position: absolute;
    z-index: 2;
    top: -12px;
    right: -12px;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: #101828;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.ad-popup-content {
    display: grid;
    gap: 10px;
    padding: 14px;
    color: #101828;
    text-decoration: none;
}

.ad-popup-content img {
    width: 100%;
    max-height: 260px;
    border-radius: 8px;
    object-fit: cover;
    background: #eef2f7;
}

.ad-popup-content video {
    width: 100%;
    max-height: 260px;
    border-radius: 8px;
    background: #000;
    object-fit: contain;
}

.ad-popup-content strong {
    font-size: 17px;
    line-height: 1.35;
}

.ad-popup-content span {
    color: rgba(16, 24, 40, .64);
    font-size: 13px;
    line-height: 1.55;
}

.report-box {
    margin: 12px 0 20px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

.report-box summary {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(248, 250, 252, .72);
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    list-style: none;
}

.report-box summary::-webkit-details-marker {
    display: none;
}

.report-box form,
.comment-report form {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.report-box textarea,
.comment-report textarea,
.bullet-form input[name="body"] {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: #f8fafc;
    outline: none;
    background: rgba(255, 255, 255, .08);
}

.report-box textarea,
.comment-report textarea {
    min-height: 74px;
    padding: 10px 11px;
    resize: vertical;
}

.comment-report {
    margin-top: 8px;
}

.comment-report summary {
    color: rgba(248, 250, 252, .48);
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    list-style: none;
}

.comment-report button {
    justify-self: start;
    min-height: 32px;
    border: 0;
    border-radius: 8px;
    color: #101828;
    background: var(--cyan);
    font-weight: 900;
}

.bullet-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.video-stage {
    position: relative;
}

.bullet-layer span {
    position: absolute;
    left: 100%;
    min-width: max-content;
    max-width: 90%;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .24);
    font-size: 14px;
    font-weight: 900;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .7);
    animation: bullet-fly 6.2s linear forwards;
}

@keyframes bullet-fly {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100vw - 100%));
    }
}

.bullet-form {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    gap: 8px;
    margin-top: 12px;
}

.bullet-form input[type="color"] {
    width: 42px;
    height: 42px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
}

.bullet-form input[name="body"] {
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
}

.bullet-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 8px;
    color: #101828;
    background: var(--cyan);
}

.bullet-form svg {
    width: 18px;
    height: 18px;
}

.player-report {
    margin-bottom: 0;
}

.legal-link-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 26px 0 0;
    color: rgba(248, 250, 252, .50);
    font-size: 12px;
    font-weight: 800;
}

.h5-body {
    --text: var(--app-text);
    --muted: var(--app-muted);
}

.h5-body .report-box {
    color: var(--app-text);
    border-color: var(--app-line);
    background: rgba(255, 255, 255, .88);
}

.h5-body .report-box summary,
.h5-body .comment-report summary,
.h5-body .legal-link-row {
    color: rgba(16, 24, 40, .66);
}

.h5-body .report-box textarea,
.h5-body .comment-report textarea {
    color: var(--app-text);
    border-color: rgba(15, 23, 42, .10);
    background: #fff;
}

.h5-body .comment-report button {
    color: #fff;
    background: var(--app-green);
}

/* H5 video app refresh v5 */
.h5-body {
    --app-bg: #f4f7fb;
    --app-panel: rgba(255, 255, 255, .94);
    --app-panel-2: #eef3fb;
    --app-line: rgba(15, 23, 42, .09);
    --app-text: #101828;
    --app-muted: rgba(16, 24, 40, .62);
    --app-primary: #246bfe;
    --app-pink: #ff4f86;
    --app-violet: #7657ff;
    --app-gold: #d99018;
    --cyan: var(--app-primary);
    --rose: var(--app-pink);
    --gold: var(--app-gold);
    --green: var(--app-primary);
    color: var(--app-text);
    background:
        radial-gradient(circle at 15% -140px, rgba(255, 79, 134, .16), transparent 38%),
        radial-gradient(circle at 82% -120px, rgba(36, 107, 254, .18), transparent 36%),
        linear-gradient(180deg, #fbfcff 0%, #eef3fb 48%, #f8fafc 100%);
    font-size: 16px;
}

.h5-shell {
    width: min(560px, 100%);
    padding: max(16px, env(safe-area-inset-top)) 16px calc(104px + env(safe-area-inset-bottom));
}

.h5-body .h5-home-top,
.h5-body .sticky-search {
    margin-inline: -16px;
    padding-inline: 16px;
    background: linear-gradient(180deg, rgba(251, 252, 255, .96), rgba(251, 252, 255, .84) 76%, transparent);
}

.h5-body .h5-header h1 {
    font-size: 32px;
    line-height: 1.06;
}

.h5-body .eyebrow,
.h5-body .h5-header .eyebrow,
.h5-body .section-title-row .eyebrow,
.h5-body .sticky-search .eyebrow {
    color: var(--app-pink);
    font-size: 12px;
}

.h5-body .brand-mark,
.h5-body .button.primary,
.h5-body .search-input button {
    color: #fff;
    background: linear-gradient(135deg, var(--app-primary), var(--app-violet));
}

.h5-body .brand-mark {
    width: 46px;
    height: 46px;
}

.h5-body .brand-mark svg {
    width: 22px;
    height: 22px;
}

.h5-body .round-action,
.h5-body .icon-button,
.h5-body .button.ghost,
.h5-body .button.ghost-light {
    color: rgba(16, 24, 40, .86);
    border-color: var(--app-line);
    background: rgba(255, 255, 255, .88);
}

.h5-body .banner-strip {
    grid-auto-columns: 92%;
    margin: 0 -16px;
    padding: 0 16px 8px;
}

.h5-body .banner-slide {
    min-height: 300px;
}

.h5-body .banner-slide strong {
    font-size: 34px;
}

.h5-body .quick-grid {
    margin-inline: -16px;
    padding-inline: 16px;
}

.h5-body .quick-grid a {
    min-height: 42px;
    padding: 0 16px;
    color: rgba(16, 24, 40, .82);
    background: rgba(255, 255, 255, .92);
}

.h5-body .section-block {
    margin-top: 32px;
}

.h5-body .section-title-row h2 {
    color: var(--app-text);
    font-size: 25px;
}

.h5-body .poster-row {
    grid-auto-columns: 34%;
    gap: 14px;
    margin-right: -16px;
    padding-right: 16px;
}

.h5-body .poster-card strong,
.h5-body .compact-item strong,
.h5-body .result-item strong,
.h5-body .ranking-list strong,
.h5-body .me-header h1 {
    color: var(--app-text);
}

.h5-body .poster-card strong {
    font-size: 15px;
}

.h5-body .poster-card span,
.h5-body .compact-item span,
.h5-body .result-item span,
.h5-body .result-item p,
.h5-body .me-header p,
.h5-body .auth-card p,
.h5-body .summary {
    color: var(--app-muted);
}

.h5-body .compact-item,
.h5-body .result-item,
.h5-body .provider-panel,
.h5-body .task-panel a,
.h5-body .ranking-list a,
.h5-body .search-panel,
.h5-body .meta-grid div,
.h5-body .episode-grid a,
.h5-body .share-card,
.h5-body .share-stat-row div,
.h5-body .me-header,
.h5-body .auth-card,
.h5-body .creator-hero,
.h5-body .task-hero-page,
.h5-body .task-card,
.h5-body .vip-member-panel,
.h5-body .vip-plan-row div,
.h5-body .continue-card,
.h5-body .me-stat-grid div {
    color: var(--app-text);
    border-color: var(--app-line);
    background: var(--app-panel);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.h5-body .compact-item {
    grid-template-columns: 76px 1fr 22px;
    padding: 11px;
}

.h5-body .compact-item img {
    width: 76px;
    height: 104px;
}

.h5-body .bottom-tabs {
    width: min(560px, 100%);
    padding: 10px 22px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .94);
}

.h5-body .bottom-tabs a {
    color: rgba(16, 24, 40, .48);
    font-size: 12px;
}

.h5-body .bottom-tabs a.active {
    color: var(--app-primary);
}

.h5-body .bottom-tabs svg {
    width: 23px;
    height: 23px;
}

.h5-body .me-header {
    position: relative;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    overflow: hidden;
    padding: 22px;
    border-radius: 8px;
}

.h5-body .me-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(36, 107, 254, .14), transparent 44%),
        linear-gradient(300deg, rgba(255, 79, 134, .12), transparent 42%);
    pointer-events: none;
}

.h5-body .me-header > * {
    position: relative;
}

.h5-body .avatar {
    width: 68px;
    height: 68px;
    color: #fff;
    background: linear-gradient(135deg, var(--app-pink), var(--app-violet));
    font-size: 28px;
}

.h5-body .avatar img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.h5-body .me-profile-copy {
    min-width: 0;
}

.h5-body .me-profile-copy h1 {
    margin: 4px 0 5px;
    overflow-wrap: anywhere;
    font-size: 27px;
    line-height: 1.08;
}

.h5-body .me-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.h5-body .me-badge-row span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    color: var(--app-primary);
    background: rgba(36, 107, 254, .09);
    font-size: 12px;
    font-weight: 900;
}

.h5-body .me-badge-row svg {
    width: 14px;
    height: 14px;
}

.h5-body .me-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px;
    margin-top: 12px;
}

.h5-body .me-stat-grid div {
    display: grid;
    place-items: center;
    min-height: 74px;
    border: 1px solid var(--app-line);
    border-radius: 8px;
}

.h5-body .me-stat-grid strong {
    color: var(--app-text);
    font-size: 24px;
    line-height: 1;
}

.h5-body .me-stat-grid span {
    margin-top: 7px;
    color: var(--app-muted);
    font-size: 12px;
    font-weight: 800;
}

.h5-body .me-action-panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 12px;
}

.h5-body .me-action-panel a {
    min-height: 94px;
    padding: 12px 9px;
}

.h5-body .me-action-panel svg {
    width: 22px;
    height: 22px;
    color: var(--app-primary);
}

.h5-body .me-action-panel span {
    color: var(--app-text);
    font-size: 13px;
}

.h5-body .me-action-panel strong {
    color: var(--app-muted);
    font-size: 11px;
}

.h5-body .continue-card {
    display: grid;
    grid-template-columns: 102px 1fr;
    gap: 14px;
    align-items: center;
    margin-top: 14px;
    padding: 12px;
    border: 1px solid var(--app-line);
    border-radius: 8px;
}

.h5-body .continue-card img {
    width: 102px;
    aspect-ratio: 2 / 3;
    border-radius: 8px;
    object-fit: cover;
}

.h5-body .continue-card h2 {
    margin: 4px 0 7px;
    color: var(--app-text);
    font-size: 22px;
    line-height: 1.15;
}

.h5-body .continue-card span {
    display: block;
    color: var(--app-muted);
    font-size: 13px;
    line-height: 1.5;
}

.h5-body .continue-card .button {
    margin-top: 12px;
    min-height: 40px;
}

.h5-body .vip-plan-row {
    gap: 10px;
}

.h5-body .vip-plan-row div {
    color: var(--app-text);
}

.h5-body .vip-plan-row span,
.h5-body .vip-plan-row small {
    color: var(--app-muted);
}

.player-body {
    --player-bg: #05070d;
    --player-panel: rgba(18, 21, 29, .92);
    --player-line: rgba(255, 255, 255, .10);
    --player-text: #f8fbff;
    --player-muted: rgba(248, 251, 255, .62);
    --player-primary: #19f7d2;
    --player-pink: #ff5b8a;
    color: var(--player-text);
    background:
        radial-gradient(circle at 18% -120px, rgba(255, 91, 138, .18), transparent 34%),
        radial-gradient(circle at 86% -120px, rgba(25, 247, 210, .14), transparent 34%),
        linear-gradient(180deg, #05070d 0%, #0d1018 54%, #06070c 100%);
}

.player-shell {
    width: min(860px, 100%);
    background: transparent;
}

.player-top {
    min-height: 78px;
}

.player-top strong {
    font-size: 18px;
}

.player-top span {
    color: var(--player-muted);
    font-size: 13px;
}

.video-stage {
    margin: 0 12px;
    padding: 6px;
    border: 1px solid var(--player-line);
    border-radius: 8px;
    background: #000;
    overflow: hidden;
}

.video-stage video {
    border-radius: 8px;
}

.bullet-layer {
    inset: 6px;
    transition: opacity .18s ease;
}

.bullet-layer.is-hidden {
    opacity: 0;
}

.bullet-layer span {
    padding: 4px 10px;
    color: #fff;
    background: rgba(0, 0, 0, .36);
    border: 1px solid rgba(255, 255, 255, .16);
    font-size: 16px;
    letter-spacing: 0;
    white-space: nowrap;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .82);
}

.bullet-layer span.preview {
    background: rgba(25, 247, 210, .22);
    border-color: rgba(25, 247, 210, .38);
}

@keyframes bullet-fly {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-860px - 100%));
    }
}

.player-controls {
    gap: 14px;
    padding: 16px;
}

.player-meta-strip span,
.source-tabs button,
.speed-tabs button,
.bullet-form,
.report-box {
    border: 1px solid var(--player-line);
    background: var(--player-panel);
}

.source-tabs button,
.speed-tabs button {
    min-height: 42px;
    color: var(--player-text);
}

.source-tabs button.active,
.speed-tabs button.active {
    color: #04100b;
    background: linear-gradient(135deg, var(--player-primary), #a6ff6b);
}

.bullet-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 2px;
    padding: 12px;
    border-radius: 8px;
}

.bullet-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.bullet-toolbar::-webkit-scrollbar {
    display: none;
}

.bullet-toolbar button,
.bullet-toolbar label {
    flex: 0 0 auto;
    min-height: 34px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: var(--player-text);
    background: rgba(255, 255, 255, .07);
}

.bullet-toolbar button {
    cursor: pointer;
}

.bullet-toolbar [data-bullet-toggle] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 11px;
    font-weight: 900;
}

.bullet-toolbar [data-bullet-toggle].active {
    color: #04100b;
    background: var(--player-primary);
}

.bullet-toolbar svg {
    width: 16px;
    height: 16px;
}

.bullet-toolbar label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
}

.bullet-toolbar input[type="color"] {
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
}

.bullet-toolbar [data-bullet-color] {
    width: 34px;
    padding: 0;
    background:
        radial-gradient(circle, var(--bullet-swatch) 0 42%, transparent 44%),
        rgba(255, 255, 255, .07);
}

.bullet-toolbar [data-bullet-color].active {
    border-color: var(--player-primary);
}

.bullet-compose {
    display: grid;
    grid-template-columns: 1fr 46px;
    gap: 8px;
}

.bullet-compose input[name="body"],
.bullet-form input[name="body"] {
    min-width: 0;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: var(--player-text);
    background: rgba(255, 255, 255, .08);
}

.bullet-compose input[name="body"]::placeholder {
    color: rgba(248, 251, 255, .46);
}

.bullet-compose button[type="submit"] {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 8px;
    color: #04100b;
    background: linear-gradient(135deg, var(--player-primary), #a6ff6b);
    cursor: pointer;
}

.bullet-compose button[type="submit"]:disabled {
    opacity: .58;
    cursor: progress;
}

.bullet-hint {
    margin: 0;
    color: var(--player-muted);
    font-size: 12px;
    line-height: 1.5;
}

.player-ad-strip a {
    color: #101828;
}

@media (max-width: 520px) {
    .h5-body .banner-strip {
        grid-auto-columns: 100%;
    }

    .h5-body .poster-row {
        grid-auto-columns: 38%;
    }

    .h5-body .me-action-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .h5-body .continue-card {
        grid-template-columns: 92px 1fr;
    }

    .h5-body .continue-card img {
        width: 92px;
    }
}

@media (max-width: 390px) {
    .h5-shell {
        padding-inline: 12px;
    }

    .h5-body .h5-home-top,
    .h5-body .sticky-search {
        margin-inline: -12px;
        padding-inline: 12px;
    }

    .h5-body .poster-row {
        grid-auto-columns: 42%;
    }

    .h5-body .me-stat-grid {
        gap: 7px;
    }

    .h5-body .me-stat-grid strong {
        font-size: 21px;
    }

    .h5-body .me-profile-copy h1 {
        font-size: 24px;
    }
}

/* Profile settings and light player refresh */
.h5-body .me-settings {
    display: grid;
    gap: 12px;
}

.h5-body .profile-form,
.h5-body .settings-list,
.h5-body .settings-row {
    border: 1px solid var(--app-line);
    border-radius: 8px;
    background: var(--app-panel);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.h5-body .profile-form {
    display: grid;
    gap: 12px;
    padding: 14px;
}

.h5-body .profile-form-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
}

.h5-body .avatar.small {
    width: 48px;
    height: 48px;
    font-size: 20px;
}

.h5-body .settings-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    color: var(--app-primary);
    background: rgba(101, 87, 255, .10);
}

.h5-body .settings-icon-badge svg {
    width: 22px;
    height: 22px;
}

.h5-body .profile-form-head strong,
.h5-body .profile-form-head span,
.h5-body .profile-form label span {
    display: block;
}

.h5-body .profile-form-head strong {
    color: var(--app-text);
    font-size: 16px;
}

.h5-body .profile-form-head span,
.h5-body .profile-form label span {
    margin-top: 3px;
    color: var(--app-muted);
    font-size: 12px;
    font-weight: 800;
}

.h5-body .profile-form label {
    display: grid;
    gap: 7px;
}

.h5-body .profile-form input {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 8px;
    color: var(--app-text);
    background: #f6f8fc;
    outline: none;
}

.h5-body .profile-form .button {
    width: 100%;
}

.h5-body .password-form {
    scroll-margin-top: 18px;
}

.h5-body .settings-list {
    display: grid;
    overflow: hidden;
}

.h5-body .settings-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 52px;
    padding: 0 14px;
    border-width: 0 0 1px;
    border-radius: 0;
    color: var(--app-text);
    box-shadow: none;
}

.h5-body .settings-list .settings-row:last-child {
    border-bottom: 0;
}

.h5-body .settings-row span,
.h5-body .settings-row button span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    font-weight: 900;
}

.h5-body .settings-row svg {
    width: 18px;
    height: 18px;
    color: var(--app-primary);
}

.h5-body .settings-row > svg,
.h5-body .settings-row button > svg {
    color: rgba(16, 24, 40, .36);
}

.h5-body .settings-row em {
    max-width: 46%;
    overflow: hidden;
    color: var(--app-muted);
    font-size: 12px;
    font-style: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.h5-body .logout-row {
    padding: 0;
}

.h5-body .logout-row button {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 100%;
    min-height: 52px;
    padding: 0 14px;
    border: 0;
    color: var(--app-text);
    background: transparent;
    cursor: pointer;
}

.h5-body .simple-top {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.h5-body .simple-top h1 {
    margin: 2px 0 4px;
    color: var(--app-text);
    font-size: 24px;
    line-height: 1.15;
}

.h5-body .simple-top span {
    color: var(--app-muted);
    font-size: 12px;
    font-weight: 800;
}

.h5-body .button.compact {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
    white-space: nowrap;
}

.h5-body .inbox-top form {
    margin: 0;
}

.h5-body .inbox-section {
    display: grid;
    gap: 12px;
}

.h5-body .inbox-list {
    display: grid;
    gap: 10px;
}

.h5-body .inbox-card {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    align-items: flex-start;
    padding: 13px;
    border: 1px solid var(--app-line);
    border-radius: 8px;
    background: var(--app-panel);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
}

.h5-body .inbox-card.unread {
    border-color: rgba(36, 107, 254, .28);
    background: linear-gradient(180deg, rgba(36, 107, 254, .07), rgba(255, 255, 255, .96));
}

.h5-body .inbox-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    color: var(--app-primary);
    background: rgba(36, 107, 254, .10);
}

.h5-body .inbox-icon svg {
    width: 18px;
    height: 18px;
}

.h5-body .inbox-card-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
}

.h5-body .inbox-card strong {
    color: var(--app-text);
    font-size: 15px;
    line-height: 1.35;
}

.h5-body .inbox-card em {
    padding: 3px 7px;
    border-radius: 999px;
    color: var(--app-primary);
    background: rgba(36, 107, 254, .10);
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
}

.h5-body .inbox-card p {
    margin: 7px 0 6px;
    color: rgba(16, 24, 40, .72);
    font-size: 13px;
    line-height: 1.6;
}

.h5-body .inbox-card span {
    display: block;
    color: var(--app-muted);
    font-size: 12px;
    font-weight: 700;
}

.h5-body .text-link {
    display: inline-flex;
    margin-top: 9px;
    color: var(--app-primary);
    font-size: 13px;
    font-weight: 900;
}

.h5-body .notice-card {
    background: #fff;
}

.player-body {
    --player-bg: #f4f7fb;
    --player-panel: rgba(255, 255, 255, .94);
    --player-line: rgba(15, 23, 42, .10);
    --player-text: #101828;
    --player-muted: rgba(16, 24, 40, .62);
    --player-primary: #246bfe;
    --player-pink: #ff4f86;
    color: var(--player-text);
    background:
        radial-gradient(circle at 18% -120px, rgba(255, 79, 134, .15), transparent 34%),
        radial-gradient(circle at 86% -120px, rgba(36, 107, 254, .16), transparent 34%),
        linear-gradient(180deg, #fbfcff 0%, #eef3fb 48%, #f8fafc 100%);
}

.player-shell {
    background: transparent;
}

.player-top {
    color: var(--player-text);
}

.player-top em {
    color: var(--player-pink);
}

.player-top span {
    color: var(--player-muted);
}

.player-body .round-action {
    color: rgba(16, 24, 40, .86);
    border-color: var(--player-line);
    background: rgba(255, 255, 255, .90);
}

.player-meta-strip span,
.source-tabs button,
.speed-tabs button,
.bullet-form,
.player-report {
    color: var(--player-text);
    border-color: var(--player-line);
    background: var(--player-panel);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.player-meta-strip span {
    color: rgba(16, 24, 40, .70);
}

.source-tabs span {
    color: var(--player-muted);
}

.source-tabs button.active,
.speed-tabs button.active,
.bullet-toolbar [data-bullet-toggle].active,
.bullet-compose button[type="submit"] {
    color: #fff;
    background: linear-gradient(135deg, var(--player-primary), #7657ff);
}

.bullet-toolbar button,
.bullet-toolbar label {
    color: var(--player-text);
    border-color: rgba(15, 23, 42, .10);
    background: #f6f8fc;
}

.bullet-toolbar [data-bullet-color] {
    background:
        radial-gradient(circle, var(--bullet-swatch) 0 42%, transparent 44%),
        #f6f8fc;
}

.bullet-compose input[name="body"],
.bullet-form input[name="body"] {
    color: var(--player-text);
    border-color: rgba(15, 23, 42, .10);
    background: #f6f8fc;
}

.bullet-compose input[name="body"]::placeholder {
    color: rgba(16, 24, 40, .42);
}

.bullet-hint,
.player-report summary {
    color: var(--player-muted);
}

.player-report textarea {
    color: var(--player-text);
    border-color: rgba(15, 23, 42, .10);
    background: #f6f8fc;
}

.player-report .button.ghost[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 92px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(36, 107, 254, .22);
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--player-primary), #7657ff);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.player-ad-strip a {
    color: var(--player-text);
    background: var(--player-panel);
}

.player-video-ad {
    position: absolute;
    z-index: 6;
    left: 16px;
    right: 16px;
    bottom: 42px;
    display: grid;
    margin: 0;
    pointer-events: auto;
}

.player-video-ad .ad-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    min-height: 96px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    color: #fff;
    background: rgba(0, 0, 0, .68);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .38);
    backdrop-filter: blur(8px);
}

.player-video-ad img,
.player-video-ad video {
    width: 100%;
    height: clamp(110px, 22vw, 168px);
    border-radius: 0;
    object-fit: cover;
    background: #000;
    box-shadow: none;
}

.player-video-ad .ad-card > div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    gap: 3px;
    padding: 26px 44px 12px 14px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .72));
}

.player-video-ad strong {
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-video-ad span {
    grid-column: auto;
    overflow: hidden;
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-video-ad .ad-card-text,
.player-video-ad .ad-card-html {
    min-height: 82px;
    padding: 16px 44px 16px 16px;
}

.player-video-ad .ad-card-text > div,
.player-video-ad .ad-card-html .ad-html {
    position: static;
    padding: 0;
    background: transparent;
}

.player-video-ad-close {
    position: absolute;
    z-index: 2;
    top: 8px;
    right: 8px;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, .68);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.player-video-ad-close:disabled {
    min-width: 38px;
    color: rgba(255, 255, 255, .92);
    background: rgba(0, 0, 0, .72);
    cursor: not-allowed;
    font-size: 12px;
    font-weight: 900;
}

.player-preroll {
    position: absolute;
    z-index: 12;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    color: #fff;
    background: #000;
    pointer-events: auto;
}

.player-preroll-item,
.player-preroll-media {
    position: absolute;
    inset: 0;
    display: block;
    color: #fff;
    background: #000;
}

.player-preroll-item[hidden] {
    display: none;
}

.player-preroll img,
.player-preroll video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
}

.player-preroll-html {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 22px;
    overflow: auto;
    background: #05070d;
}

.player-preroll-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    gap: 4px;
    padding: 48px 18px 16px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .78));
}

.player-preroll-caption strong,
.player-preroll-caption span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-preroll-caption strong {
    font-size: 18px;
    font-weight: 900;
}

.player-preroll-caption span {
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
}

.player-preroll-skip {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    min-width: 86px;
    min-height: 34px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, .72);
    font-size: 13px;
    font-weight: 900;
}

.player-preroll-skip:disabled {
    color: rgba(255, 255, 255, .84);
    cursor: not-allowed;
}

@media (max-width: 520px) {
    .player-video-ad {
        left: 10px;
        right: 10px;
        bottom: 38px;
    }

    .player-video-ad img {
        height: 96px;
    }
}

/* Final H5 settings, danmu, and provider badge cleanup */
.h5-body .avatar-upload-field {
    gap: 8px;
}

.h5-body .avatar-upload-field small {
    color: var(--app-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.h5-body .profile-form input[type="file"] {
    min-height: auto;
    padding: 10px 12px;
    line-height: 1.3;
}

.h5-body .settings-menu {
    border-bottom: 1px solid var(--app-line);
    background: var(--app-panel);
}

.h5-body .settings-menu .settings-row {
    width: 100%;
    list-style: none;
    cursor: pointer;
}

.h5-body .settings-menu .settings-row::-webkit-details-marker {
    display: none;
}

.h5-body .settings-menu[open] .settings-row {
    border-bottom-color: rgba(15, 23, 42, .08);
}

.h5-body .settings-menu-body {
    padding: 0 12px 12px;
}

.h5-body .settings-menu-body.compact-list {
    gap: 8px;
}

.h5-body .settings-menu-body .compact-item {
    border: 1px solid rgba(15, 23, 42, .08);
    background: #f8fafc;
}

.h5-body .settings-menu-body.poster-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    overflow: visible;
}

.h5-body .settings-menu-body .poster-card {
    min-width: 0;
}

.h5-body .settings-menu-body .empty-state {
    grid-column: 1 / -1;
    margin: 0;
}

.bullet-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
}

.bullet-toolbar [data-bullet-toggle] {
    flex: 0 0 auto;
    max-width: 100%;
    min-width: 118px;
    height: 38px;
    justify-content: center;
    padding-inline: 14px;
    white-space: nowrap;
}

.bullet-toolbar [data-bullet-toggle] span {
    overflow: visible;
    text-overflow: clip;
}

.bullet-toolbar label,
.bullet-toolbar [data-bullet-color],
.bullet-toolbar input[type="color"] {
    display: none;
}

.subtitle-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.subtitle-tabs button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--player-line);
    border-radius: 8px;
    color: var(--player-text);
    background: var(--player-panel);
    font-weight: 800;
}

.subtitle-tabs button.active {
    color: #fff;
    border-color: var(--player-primary);
    background: linear-gradient(135deg, var(--player-primary), #7657ff);
}

.subtitle-tabs span {
    color: var(--player-muted);
    font-size: 13px;
}

.provider-panel .provider-category-label,
.creator-hero > .provider-category-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 3px;
    padding: 3px 7px;
    border: 1px solid rgba(36, 107, 254, .14);
    border-radius: 999px;
    color: rgba(16, 24, 40, .64);
    background: rgba(36, 107, 254, .07);
    font-size: 11px;
    font-weight: 850;
    line-height: 1.1;
}

.creator-hero > .provider-category-label {
    margin-inline: auto;
}

.provider-panel .verified-badge,
.creator-hero .verified-badge {
    color: #fff;
    background: var(--verify-color, #246bfe);
}

.h5-body .support-content {
    display: grid;
    gap: 14px;
}

.h5-body .support-contact-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 11px;
    align-items: center;
    padding: 13px;
    border: 1px solid rgba(36, 107, 254, .14);
    border-radius: 8px;
    background: rgba(36, 107, 254, .06);
}

.h5-body .support-contact-card > svg {
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--app-primary), #7657ff);
}

.h5-body .support-contact-card span {
    display: block;
    color: var(--app-muted);
    font-size: 12px;
    font-weight: 850;
}

.h5-body .support-contact-card strong {
    display: block;
    margin-top: 3px;
    color: var(--app-text);
    font-size: 16px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.h5-body .support-body {
    color: rgba(16, 24, 40, .78);
    font-size: 14px;
    line-height: 1.8;
}

.task-redeem-form {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 8px;
}

.task-redeem-form input {
    min-width: 0;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 8px;
    color: var(--app-text);
    background: #fff;
    font-weight: 900;
}

.task-redeem-form input:disabled,
.task-redeem-form button:disabled {
    opacity: .55;
    cursor: not-allowed;
}

/* Entertainment-style H5 refresh */
.h5-body {
    --app-bg: #f7f8fb;
    --app-panel: rgba(255, 255, 255, .96);
    --app-line: rgba(18, 24, 38, .08);
    --app-text: #111827;
    --app-muted: rgba(17, 24, 39, .58);
    --app-primary: #1977ff;
    --app-pink: #ff3f8e;
    --app-gold: #bf8b2f;
    color: var(--app-text);
    background:
        linear-gradient(180deg, rgba(238, 232, 255, .9) 0, rgba(245, 247, 252, .92) 210px, #f7f8fb 100%);
}

.h5-shell {
    width: min(520px, 100%);
    padding: max(12px, env(safe-area-inset-top)) 14px calc(96px + env(safe-area-inset-bottom));
}

.h5-body .h5-locale {
    justify-content: flex-end;
    margin-bottom: 7px;
}

.h5-body .h5-locale a {
    min-height: 28px;
    padding: 0 10px;
    border: 0;
    border-radius: 9px;
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 6px 18px rgba(17, 24, 39, .06);
    font-size: 12px;
}

.h5-body .h5-locale a.active {
    color: #fff;
    background: linear-gradient(135deg, #1977ff, #6b5cff);
}

.h5-body .h5-home-top {
    position: relative;
    margin: 0 -14px 8px;
    padding: 8px 14px 6px;
    background: transparent;
}

.h5-body .brand-lockup {
    gap: 11px;
}

.h5-body .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #3f7cff, #7b5cff);
    box-shadow: 0 14px 28px rgba(25, 119, 255, .22);
}

.h5-body .h5-header .eyebrow {
    margin: 0;
    color: var(--app-pink);
    font-size: 12px;
    letter-spacing: 0;
}

.h5-body .h5-header h1 {
    margin: 1px 0 0;
    font-size: 30px;
    line-height: 1;
}

.h5-body .header-actions {
    gap: 8px;
}

.h5-body .tiny-vip {
    min-height: 34px;
    border: 0;
    border-radius: 10px;
    color: #2b1b06;
    background: linear-gradient(135deg, #ffe29c, #ffc24e);
    box-shadow: 0 10px 20px rgba(191, 139, 47, .18);
}

.h5-body .round-action {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 10px 22px rgba(17, 24, 39, .08);
}

.h5-body .home-search-bar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    margin: 4px 0 14px;
}

.h5-body .home-search-pill {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 999px;
    color: rgba(17, 24, 39, .58);
    background: rgba(255, 255, 255, .72);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7), 0 10px 26px rgba(17, 24, 39, .07);
    font-size: 15px;
    font-weight: 850;
}

.h5-body .home-search-pill svg {
    width: 23px;
    height: 23px;
    color: rgba(17, 24, 39, .42);
}

.h5-body .home-filter-link {
    min-height: 40px;
    padding: 0 4px;
    color: #5f4b12;
    font-size: 18px;
    font-weight: 950;
}

.h5-body .notice-strip {
    border-radius: 16px;
}

.h5-body .banner-strip {
    grid-auto-columns: 86%;
    gap: 12px;
    margin: 4px -14px 0;
    padding: 0 14px 6px;
    scroll-snap-type: x mandatory;
}

.h5-body .banner-slide {
    min-height: 248px;
    border-radius: 17px;
    box-shadow: 0 18px 42px rgba(17, 24, 39, .16);
    scroll-snap-align: start;
}

.h5-body .banner-slide::before {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .16) 42%, rgba(0, 0, 0, .72)),
        linear-gradient(90deg, rgba(0, 0, 0, .45), transparent 54%);
}

.h5-body .banner-copy {
    padding: 18px;
}

.h5-body .banner-copy span,
.h5-body .poster-cover span,
.h5-body .home-feed-cover span {
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #1977ff, #5b67ff);
    font-size: 11px;
    font-weight: 950;
}

.h5-body .banner-slide strong {
    max-width: 82%;
    font-size: 29px;
    line-height: 1.02;
}

.h5-body .banner-slide small {
    max-width: 90%;
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
}

.h5-body .banner-slide em {
    width: fit-content;
    min-height: 38px;
    margin-top: 14px;
    padding: 0 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, #4778ff, #ff4f93);
    box-shadow: 0 12px 28px rgba(255, 63, 142, .28);
}

.h5-body .home-channel-row {
    display: flex;
    gap: 18px;
    margin: 10px -14px 0;
    padding: 0 14px 6px;
    overflow-x: auto;
    scrollbar-width: none;
}

.h5-body .home-channel-row::-webkit-scrollbar {
    display: none;
}

.h5-body .home-channel-row a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0;
    border: 0;
    color: rgba(17, 24, 39, .72);
    background: transparent;
    box-shadow: none;
    font-size: 17px;
    font-weight: 950;
    white-space: nowrap;
}

.h5-body .home-channel-row a:nth-child(2) {
    color: #111827;
    font-size: 25px;
}

.h5-body .section-block {
    margin-top: 27px;
}

.h5-body .section-title-row {
    margin-bottom: 12px;
}

.h5-body .section-title-row .eyebrow {
    color: var(--app-pink);
    font-size: 12px;
}

.h5-body .section-title-row h2 {
    font-size: 24px;
    letter-spacing: 0;
}

.h5-body .section-title-row a {
    color: #1977ff;
    font-weight: 950;
}

.h5-body .poster-row {
    grid-auto-columns: 32%;
    gap: 12px;
    margin-right: -14px;
    padding-right: 14px;
}

.h5-body .poster-card,
.h5-body .home-feed-card {
    color: var(--app-text);
}

.h5-body .poster-cover,
.h5-body .poster-card > img {
    border-radius: 9px;
    box-shadow: 0 12px 26px rgba(17, 24, 39, .12);
}

.h5-body .poster-card strong,
.h5-body .home-feed-card strong {
    margin-top: 9px;
    color: var(--app-text);
    font-size: 15px;
    line-height: 1.26;
}

.h5-body .poster-card span,
.h5-body .home-feed-card em {
    margin-top: 4px;
    color: rgba(17, 24, 39, .52);
    font-size: 12px;
    font-style: normal;
}

.h5-body .home-feed-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
}

.h5-body .home-feed-card {
    display: grid;
    min-width: 0;
}

.h5-body .home-feed-cover {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10.2;
    border-radius: 12px;
    background: #dce2ec;
    box-shadow: 0 12px 28px rgba(17, 24, 39, .12);
}

.h5-body .home-feed-cover::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .52));
}

.h5-body .home-feed-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h5-body .home-feed-cover span {
    position: absolute;
    right: 8px;
    bottom: 7px;
    z-index: 1;
    padding: 4px 7px;
    background: rgba(0, 0, 0, .42);
}

.h5-body .ranking-list a,
.h5-body .compact-item,
.h5-body .result-item,
.h5-body .search-panel,
.h5-body .provider-panel,
.h5-body .vip-member-panel,
.h5-body .settings-list,
.h5-body .profile-form {
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 30px rgba(17, 24, 39, .07);
}

.h5-body .bottom-tabs {
    left: 50%;
    width: min(520px, 100%);
    min-height: 72px;
    padding: 8px 18px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(17, 24, 39, .06);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -12px 34px rgba(17, 24, 39, .08);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
}

.h5-body .bottom-tabs a {
    gap: 2px;
    color: rgba(17, 24, 39, .54);
    font-size: 11px;
    font-weight: 800;
}

.h5-body .bottom-tabs svg {
    width: 22px;
    height: 22px;
}

.h5-body .bottom-tabs a.active {
    color: #b07933;
}

.h5-body .bottom-tabs a.active svg {
    color: #b07933;
}

.h5-body .bottom-tabs .vip-tab strong {
    display: grid;
    place-items: center;
    width: 30px;
    height: 28px;
    color: #111827;
    font-size: 31px;
    font-weight: 950;
    line-height: 1;
}

.h5-body .bottom-tabs .vip-tab.active strong {
    color: #b07933;
}

.h5-body .me-top-actions {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    margin: 4px 0 18px;
}

.h5-body .me-top-actions a {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: #111827;
}

.h5-body .me-top-actions svg {
    width: 25px;
    height: 25px;
    stroke-width: 2.6;
}

.h5-body .me-top-actions em {
    position: absolute;
    right: 1px;
    top: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4f68;
}

.h5-body .me-header {
    grid-template-columns: auto 1fr;
    padding: 22px 24px 20px;
    border: 0;
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 30px rgba(17, 24, 39, .07);
}

.h5-body .me-header::before {
    background:
        radial-gradient(circle at 14% 20%, rgba(191, 139, 47, .18), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(25, 119, 255, .07));
}

.h5-body .me-header .round-action {
    display: none;
}

.h5-body .avatar {
    width: 74px;
    height: 74px;
    border: 3px solid rgba(255, 255, 255, .86);
    border-radius: 22px;
    background: linear-gradient(135deg, #fff0cc, #e4b36a);
    box-shadow: 0 12px 26px rgba(191, 139, 47, .18);
}

.h5-body .me-profile-copy h1 {
    font-size: 24px;
}

.h5-body .me-badge-row span {
    min-height: 24px;
    padding: 0 8px;
    color: #8b6b32;
    background: rgba(191, 139, 47, .12);
}

.h5-body .me-stat-grid {
    margin-top: -2px;
    padding: 2px 18px 14px;
    border-radius: 0 0 22px 22px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 30px rgba(17, 24, 39, .05);
}

.h5-body .me-stat-grid div {
    min-height: 62px;
    border: 0;
    box-shadow: none;
    background: transparent;
}

.h5-body .me-stat-grid div + div {
    border-left: 1px solid rgba(17, 24, 39, .08);
}

.h5-body .me-stat-grid strong {
    color: #111827;
    font-size: 21px;
}

.h5-body .me-action-panel {
    gap: 0;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 30px rgba(17, 24, 39, .07);
}

.h5-body .me-action-panel a {
    min-height: 96px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.h5-body .me-action-panel svg {
    width: 29px;
    height: 29px;
    color: #111827;
    stroke-width: 2.3;
}

.h5-body .me-action-panel span {
    margin-top: 8px;
    font-size: 13px;
}

.h5-body .me-action-panel strong {
    margin-top: 2px;
    font-size: 11px;
}

.h5-body .me-settings {
    margin-top: 26px;
}

.h5-body .settings-row {
    min-height: 60px;
    padding: 0 18px;
}

.h5-body .settings-row svg {
    color: #111827;
    stroke-width: 2.4;
}

.native-notice-prompt {
    position: fixed;
    left: 50%;
    bottom: calc(86px + env(safe-area-inset-bottom));
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
    width: min(480px, calc(100% - 28px));
    padding: 12px 12px 12px 16px;
    color: #111827;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 44px rgba(17, 24, 39, .16);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
}

.native-notice-prompt div {
    min-width: 0;
}

.native-notice-prompt strong,
.native-notice-prompt span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.native-notice-prompt strong {
    font-size: 14px;
    font-weight: 950;
}

.native-notice-prompt span {
    margin-top: 2px;
    color: rgba(17, 24, 39, .58);
    font-size: 12px;
    font-weight: 700;
}

.native-notice-prompt button {
    display: inline-grid;
    place-items: center;
    min-width: 42px;
    height: 34px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #1977ff, #ff4f9a);
    font-size: 13px;
    font-weight: 900;
}

.native-notice-prompt [data-native-notice-close] {
    min-width: 34px;
    color: rgba(17, 24, 39, .62);
    background: rgba(17, 24, 39, .08);
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 420px) {
    .h5-body .h5-header h1 {
        font-size: 28px;
    }

    .h5-body .banner-strip {
        grid-auto-columns: 88%;
    }

    .h5-body .poster-row {
        grid-auto-columns: 35%;
    }

    .h5-body .home-feed-grid {
        gap: 17px 12px;
    }

    .native-notice-prompt {
        grid-template-columns: 1fr auto;
    }

    .native-notice-prompt [data-native-notice-close] {
        position: absolute;
        top: -10px;
        right: -8px;
        width: 28px;
        min-width: 28px;
        height: 28px;
    }
}
