:root {
    --color-primary: #102a43;
    --color-secondary: #243b53;
    --color-accent: #f59e0b;
    --color-accent-strong: #d97706;
    --color-text-primary: #f0f4f8;
    --color-text-secondary: #bcccdc;
    --color-text-muted: #829ab1;
    --color-border: #334e68;
    --color-night: #0a1929;
    --color-night-deep: #06111f;
    --shadow-night: 0 20px 60px rgba(0, 0, 0, .55);
    --shadow-glow: 0 0 32px rgba(251, 191, 36, .3);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: radial-gradient(circle at 10% 0%, rgba(245, 158, 11, .12), transparent 28%), var(--color-night);
    color: var(--color-text-primary);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1,
h2,
h3 {
    font-family: Outfit, Inter, system-ui, sans-serif;
    line-height: 1.15;
}

.container-custom {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.site-main {
    min-height: 100vh;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(6, 17, 31, .94);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: .02em;
}

.logo-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: #06111f;
    box-shadow: var(--shadow-glow);
}

.logo-text {
    font-size: 22px;
    background: linear-gradient(90deg, #fbbf24, #d97706);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link,
.mobile-nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--color-text-secondary);
    transition: color .25s ease, background .25s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: #fbbf24;
    background: rgba(245, 158, 11, .1);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(188, 204, 220, .18);
    border-radius: 12px;
    background: rgba(16, 42, 67, .72);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--color-text-primary);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    border-top: 1px solid rgba(188, 204, 220, .14);
}

.mobile-nav-inner {
    display: grid;
    gap: 8px;
    padding: 14px 0 20px;
}

.hero-section {
    position: relative;
    height: 82vh;
    min-height: 620px;
    overflow: hidden;
    background: var(--color-night-deep);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.08);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 17, 31, .96), rgba(6, 17, 31, .68) 43%, rgba(6, 17, 31, .22)),
        linear-gradient(0deg, #0a1929 0%, rgba(10, 25, 41, .22) 44%, rgba(10, 25, 41, .08) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-top: 120px;
    padding-bottom: 88px;
}

.hero-copy {
    max-width: 760px;
    animation: fadeIn .6s ease both;
}

.eyebrow {
    margin-bottom: 12px;
    color: #fbbf24;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    font-size: clamp(38px, 7vw, 76px);
    font-weight: 900;
    letter-spacing: -.04em;
}

.hero-summary {
    max-width: 680px;
    margin-top: 22px;
    color: var(--color-text-secondary);
    font-size: clamp(16px, 2vw, 21px);
}

.hero-tags,
.detail-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-top: 24px;
}

.hero-tags span,
.detail-tags span,
.tag-row span {
    border: 1px solid rgba(245, 158, 11, .28);
    border-radius: 999px;
    background: rgba(245, 158, 11, .1);
    color: #fcd34d;
}

.hero-tags span,
.detail-tags span {
    padding: 7px 12px;
}

.tag-row span {
    padding: 4px 8px;
    font-size: 12px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 800;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease, border .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: #06111f;
    box-shadow: var(--shadow-glow);
}

.btn-ghost {
    border: 1px solid rgba(188, 204, 220, .24);
    background: rgba(16, 42, 67, .54);
    color: var(--color-text-primary);
    backdrop-filter: blur(10px);
}

.hero-rank-link,
.section-link,
.channel-enter {
    color: #fbbf24;
    font-weight: 800;
}

.hero-card {
    width: min(340px, 30vw);
    padding: 24px;
    border: 1px solid rgba(245, 158, 11, .22);
    border-radius: 26px;
    background: rgba(16, 42, 67, .68);
    box-shadow: var(--shadow-night);
    backdrop-filter: blur(18px);
}

.hero-card span,
.hero-card em {
    display: block;
    color: #fcd34d;
    font-style: normal;
}

.hero-card strong {
    display: block;
    margin: 12px 0 8px;
    font-size: 26px;
    line-height: 1.2;
}

.hero-card em {
    color: var(--color-text-secondary);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(188, 204, 220, .24);
    border-radius: 999px;
    background: rgba(6, 17, 31, .58);
    color: #fff;
    font-size: 40px;
    line-height: 1;
    backdrop-filter: blur(14px);
    transform: translateY(-50%);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

.hero-dots {
    position: absolute;
    right: 0;
    bottom: 38px;
    left: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-dot {
    width: 36px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(240, 244, 248, .3);
}

.hero-dot.is-active {
    background: #fbbf24;
    box-shadow: var(--shadow-glow);
}

.section-spacing {
    padding: 76px 0;
}

.inner-page {
    padding-top: 76px;
}

.index-intro {
    padding-top: 48px;
}

.intro-panel {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 420px);
    gap: 28px;
    align-items: center;
    padding: 32px;
    border: 1px solid rgba(188, 204, 220, .14);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(16, 42, 67, .9), rgba(36, 59, 83, .58));
    box-shadow: var(--shadow-night);
}

.intro-panel h2,
.section-head h2,
.hot-board-copy h2,
.detail-section h2,
.info-panel h2 {
    font-size: clamp(28px, 4vw, 44px);
}

.intro-panel p,
.hot-board-copy p,
.page-hero p,
.detail-lead,
.detail-section p,
.channel-panel p,
.category-card-body p {
    color: var(--color-text-secondary);
}

.quick-search label {
    display: block;
    margin-bottom: 10px;
    color: var(--color-text-secondary);
    font-weight: 700;
}

.quick-search div,
.search-panel {
    display: flex;
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(188, 204, 220, .18);
    border-radius: 18px;
    background: rgba(6, 17, 31, .62);
}

.quick-search input,
.search-panel input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--color-text-primary);
}

.quick-search button {
    border: 0;
    border-radius: 12px;
    background: #f59e0b;
    color: #06111f;
    font-weight: 800;
    padding: 10px 18px;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

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

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

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(188, 204, 220, .12);
    border-radius: 18px;
    background: rgba(16, 42, 67, .72);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.movie-card-link:hover {
    border-color: rgba(245, 158, 11, .35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    transform: translateY(-6px) scale(1.02);
}

.movie-poster {
    position: relative;
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #102a43, #06111f);
}

.movie-card-compact .movie-poster {
    aspect-ratio: 2 / 3;
}

.movie-poster img,
.category-thumbs img,
.hot-list-item img,
.detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease, opacity .25s ease;
}

.movie-card-link:hover .movie-poster img {
    transform: scale(1.1);
}

.image-muted {
    opacity: 0;
}

.movie-poster figcaption {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, .76), rgba(0, 0, 0, .1));
    opacity: 0;
    transition: opacity .25s ease;
}

.movie-card-link:hover figcaption {
    opacity: 1;
}

.play-mark,
.player-play {
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(245, 158, 11, .92);
    color: #06111f;
    box-shadow: var(--shadow-glow);
}

.play-mark {
    width: 54px;
    height: 54px;
    font-size: 22px;
}

.score-pill,
.rank-badge {
    position: absolute;
    top: 12px;
    z-index: 2;
    border-radius: 999px;
    background: rgba(0, 0, 0, .68);
    color: #fbbf24;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.score-pill {
    right: 12px;
    padding: 6px 9px;
}

.rank-badge {
    left: 12px;
    padding: 6px 10px;
}

.movie-card-body {
    padding: 16px;
}

.movie-card-body h3 {
    min-height: 44px;
    color: var(--color-text-primary);
    font-size: 16px;
    font-weight: 800;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta-line,
.movie-one-line {
    color: var(--color-text-muted);
    font-size: 13px;
}

.movie-meta-line {
    margin-top: 8px;
}

.movie-one-line {
    min-height: 40px;
    margin-top: 8px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row {
    margin-top: 12px;
}

.hot-board {
    background: linear-gradient(135deg, rgba(6, 17, 31, .9), rgba(16, 42, 67, .72));
}

.hot-board-layout {
    display: grid;
    grid-template-columns: minmax(260px, 380px) 1fr;
    gap: 34px;
    align-items: start;
}

.hot-board-copy {
    position: sticky;
    top: 100px;
}

.hot-board-copy .btn {
    margin-top: 24px;
}

.hot-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hot-list-item {
    display: grid;
    grid-template-columns: auto 72px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(188, 204, 220, .12);
    border-radius: 18px;
    background: rgba(16, 42, 67, .58);
    transition: border .25s ease, transform .25s ease, background .25s ease;
}

.hot-list-item:hover {
    border-color: rgba(245, 158, 11, .38);
    background: rgba(36, 59, 83, .72);
    transform: translateX(4px);
}

.hot-list-item img {
    width: 72px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #102a43, #06111f);
}

.list-rank,
.list-dot {
    color: #fbbf24;
    font-weight: 900;
}

.hot-list-text strong,
.hot-list-text em {
    display: block;
}

.hot-list-text strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hot-list-text em {
    color: var(--color-text-muted);
    font-size: 13px;
    font-style: normal;
}

.hot-list-score {
    color: #fbbf24;
    font-weight: 900;
}

.category-grid,
.channel-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.category-card,
.channel-panel,
.info-panel,
.detail-section {
    border: 1px solid rgba(188, 204, 220, .12);
    border-radius: 22px;
    background: rgba(16, 42, 67, .72);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .24);
}

.category-card {
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease;
}

.category-card:hover,
.channel-panel:hover {
    border-color: rgba(245, 158, 11, .35);
    transform: translateY(-4px);
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #102a43, #06111f);
}

.category-card-body,
.channel-panel {
    padding: 18px;
}

.category-card-body strong,
.channel-title {
    display: block;
    margin-bottom: 8px;
    color: #fbbf24;
    font-size: 18px;
    font-weight: 900;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #06111f, #102a43);
}

.page-hero {
    padding: 92px 0 68px;
}

.compact-hero {
    padding-bottom: 44px;
}

.page-hero p {
    max-width: 820px;
    margin-top: 18px;
    font-size: 18px;
}

.category-nav-row,
.search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.category-nav-row a,
.search-filter {
    border: 1px solid rgba(188, 204, 220, .18);
    border-radius: 999px;
    background: rgba(16, 42, 67, .78);
    color: var(--color-text-secondary);
    padding: 9px 14px;
}

.category-nav-row a:hover,
.search-filter:hover,
.search-filter.is-active {
    border-color: rgba(245, 158, 11, .4);
    color: #fbbf24;
}

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

.channel-links {
    display: grid;
    gap: 8px;
    margin: 18px 0;
}

.channel-links a {
    color: var(--color-text-secondary);
}

.channel-links a:hover {
    color: #fbbf24;
}

.search-panel {
    max-width: 680px;
    margin-top: 26px;
    padding: 14px 18px;
}

.search-panel input {
    font-size: 18px;
}

.empty-state {
    display: none;
    margin-top: 28px;
    color: var(--color-text-muted);
    text-align: center;
}

.empty-state.is-visible {
    display: block;
}

.detail-hero {
    min-height: 620px;
    padding-top: 106px;
}

.detail-backdrop,
.detail-backdrop-shade {
    position: absolute;
    inset: 0;
}

.detail-backdrop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .38;
    filter: blur(1px) saturate(1.08);
}

.detail-backdrop-shade {
    background:
        linear-gradient(90deg, rgba(6, 17, 31, .97), rgba(6, 17, 31, .68), rgba(6, 17, 31, .82)),
        linear-gradient(0deg, #0a1929, rgba(10, 25, 41, .12));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 70px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 32px;
    color: var(--color-text-muted);
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: #fbbf24;
}

.detail-head-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 38px;
    align-items: end;
}

.detail-cover {
    overflow: hidden;
    aspect-ratio: 2 / 3;
    margin: 0;
    border: 1px solid rgba(245, 158, 11, .24);
    border-radius: 24px;
    background: linear-gradient(135deg, #102a43, #06111f);
    box-shadow: var(--shadow-night);
}

.detail-copy {
    max-width: 820px;
}

.detail-lead {
    margin-top: 18px;
    font-size: 20px;
}

.detail-tags,
.detail-stats {
    margin-top: 22px;
}

.detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-stats span {
    padding: 8px 12px;
    border: 1px solid rgba(188, 204, 220, .16);
    border-radius: 999px;
    background: rgba(16, 42, 67, .72);
    color: var(--color-text-secondary);
}

.detail-copy .btn {
    margin-top: 28px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(245, 158, 11, .2);
    border-radius: 26px;
    background: #000;
    box-shadow: var(--shadow-night);
}

.player-shell video {
    width: 100%;
    height: 100%;
    background: #000;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    border: 0;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .24)),
        radial-gradient(circle at 50% 45%, rgba(245, 158, 11, .18), transparent 34%);
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
}

.player-cover.is-hidden {
    display: none;
}

.player-play {
    width: 82px;
    height: 82px;
    font-size: 34px;
}

.detail-section,
.info-panel {
    padding: 26px;
}

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

.detail-section p {
    margin-top: 16px;
    font-size: 18px;
}

.info-panel {
    position: sticky;
    top: 100px;
}

.info-panel h2 {
    margin-bottom: 18px;
    font-size: 26px;
}

.info-panel dl {
    display: grid;
    gap: 14px;
    margin: 0;
}

.info-panel div {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(188, 204, 220, .1);
}

.info-panel dt {
    color: var(--color-text-muted);
}

.info-panel dd {
    margin: 0;
    color: var(--color-text-secondary);
}

.info-panel a {
    color: #fbbf24;
}

.related-section {
    padding-top: 24px;
}

.site-footer {
    border-top: 1px solid rgba(188, 204, 220, .12);
    background: #06111f;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 30px 0;
    color: var(--color-text-muted);
}

.footer-inner strong {
    display: block;
    color: #fbbf24;
    font-size: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links a:hover {
    color: #fbbf24;
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: #f59e0b;
    color: #06111f;
    font-weight: 900;
    box-shadow: var(--shadow-glow);
}

.back-top.is-visible {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1180px) {
    .movie-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .site-header.is-open .mobile-nav {
        display: block;
    }

    .hero-section {
        min-height: 680px;
    }

    .hero-content,
    .intro-panel,
    .hot-board-layout,
    .detail-layout,
    .detail-head-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        display: block;
        padding-top: 150px;
        padding-bottom: 88px;
    }

    .hero-card {
        display: none;
    }

    .hot-board-copy,
    .info-panel {
        position: static;
    }

    .hot-list,
    .channel-grid {
        grid-template-columns: 1fr;
    }

    .detail-cover {
        width: 220px;
    }

    .detail-hero {
        min-height: auto;
    }
}

@media (max-width: 680px) {
    .container-custom {
        width: min(100% - 22px, 1280px);
    }

    .nav-wrap {
        min-height: 66px;
    }

    .logo-text {
        font-size: 18px;
    }

    .hero-section {
        height: auto;
        min-height: 650px;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 38px;
    }

    .hero-control {
        display: none;
    }

    .hero-actions,
    .section-head,
    .footer-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .section-spacing {
        padding: 52px 0;
    }

    .intro-panel,
    .detail-section,
    .info-panel {
        padding: 20px;
    }

    .quick-search div {
        flex-direction: column;
    }

    .movie-grid,
    .category-grid,
    .ranking-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .hot-list-item {
        grid-template-columns: auto 56px 1fr;
    }

    .hot-list-score {
        display: none;
    }

    .hot-list-item img {
        width: 56px;
        height: 42px;
    }

    .movie-card-body {
        padding: 12px;
    }

    .movie-card-body h3 {
        min-height: 40px;
        font-size: 14px;
    }

    .movie-one-line {
        display: none;
    }

    .tag-row {
        display: none;
    }

    .page-hero {
        padding: 70px 0 42px;
    }

    .detail-head-grid {
        gap: 24px;
    }

    .detail-cover {
        width: 160px;
    }

    .player-shell {
        border-radius: 18px;
    }

    .player-play {
        width: 66px;
        height: 66px;
    }
}
