:root {
    --red: #dc2626;
    --red-dark: #7f1d1d;
    --orange: #f97316;
    --yellow: #facc15;
    --blue: #2563eb;
    --purple: #7c3aed;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
    --soft-shadow: 0 14px 36px rgba(15, 23, 42, 0.11);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--slate-800);
    background: linear-gradient(135deg, #fff7ed 0%, #f8fafc 42%, #fff1f2 100%);
    min-height: 100vh;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.nav-wrap {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 900;
    font-size: 22px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.28);
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 20px;
    letter-spacing: -0.02em;
}

.brand-text small {
    color: var(--slate-500);
    margin-top: 4px;
    font-size: 12px;
}

.nav-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    flex: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--slate-600);
    font-weight: 700;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}

.top-search {
    display: flex;
    align-items: center;
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    overflow: hidden;
    min-width: 300px;
}

.top-search input {
    border: 0;
    outline: 0;
    background: transparent;
    padding: 11px 14px 11px 18px;
    min-width: 0;
    width: 100%;
}

.top-search button,
.page-filter button,
.hero-search button {
    border: 0;
    cursor: pointer;
    color: var(--white);
    font-weight: 800;
    background: linear-gradient(135deg, var(--red), var(--orange));
    padding: 11px 18px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--slate-100);
    border-radius: 14px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--slate-700);
}

.hero-carousel {
    position: relative;
    min-height: 680px;
    color: var(--white);
    overflow: hidden;
    background: var(--slate-950);
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
    filter: saturate(1.1) contrast(1.05);
}

.hero-bg::after,
.detail-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 10%, rgba(249, 115, 22, 0.42), transparent 34%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(127, 29, 29, 0.76), rgba(2, 6, 23, 0.82));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) 420px;
    align-items: center;
    gap: 64px;
    padding: 74px 0 132px;
}

.eyebrow {
    margin: 0 0 14px;
    color: #fde68a;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 13px;
}

.eyebrow.dark {
    color: var(--red);
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-copy h2 {
    margin-top: 14px;
    font-size: clamp(32px, 4.8vw, 58px);
}

.hero-desc,
.lead-text,
.page-hero p {
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.84);
    max-width: 760px;
}

.hero-tags,
.tag-row,
.detail-meta,
.card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.hero-tags span,
.tag-row span,
.detail-meta span,
.card-meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 11px;
    font-weight: 800;
    font-size: 12px;
}

.hero-tags span {
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

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

.primary-btn,
.ghost-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: var(--white);
    background: linear-gradient(135deg, var(--red), var(--orange));
    padding: 14px 24px;
    box-shadow: 0 16px 35px rgba(220, 38, 38, 0.3);
}

.ghost-btn {
    color: var(--white);
    padding: 13px 23px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.ghost-btn.dark {
    color: var(--slate-800);
    background: var(--white);
    border-color: var(--slate-200);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.hero-poster {
    display: block;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 560px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.hero-control {
    position: absolute;
    top: 48%;
    z-index: 4;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    color: var(--white);
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(12px);
    font-size: 38px;
    cursor: pointer;
}

.hero-control.prev {
    left: 24px;
}

.hero-control.next {
    right: 24px;
}

.hero-dots {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 82px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 36px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
}

.hero-dot.active {
    background: var(--white);
}

.hero-search {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: min(760px, calc(100% - 32px));
    display: grid;
    grid-template-columns: 1fr auto;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.hero-search input {
    border: 0;
    outline: 0;
    padding: 18px 24px;
    color: var(--slate-800);
    background: transparent;
}

.section-wrap {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 64px 0;
}

.intro-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding-top: 0;
}

.intro-card,
.side-panel,
.overview-card,
.article-block,
.player-block {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.76);
    border-radius: var(--radius);
    box-shadow: var(--soft-shadow);
}

.intro-card {
    padding: 24px;
    display: grid;
    gap: 8px;
}

.intro-card strong {
    font-size: 23px;
}

.intro-card span {
    color: var(--slate-500);
    line-height: 1.6;
}

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

.section-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.04em;
}

.section-head a,
.text-link {
    color: var(--red);
    font-weight: 900;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    border-radius: 22px;
    padding: 22px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--soft-shadow);
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.12));
}

.category-card span,
.category-card p {
    position: relative;
    z-index: 2;
}

.category-card span {
    font-size: 22px;
    font-weight: 900;
}

.category-card p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.category-card:hover img {
    transform: scale(1.08);
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #fee2e2, #ffedd5);
}

.poster-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.66), transparent 50%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
    opacity: 1;
}

.play-chip {
    position: absolute;
    right: 12px;
    bottom: 12px;
    color: var(--white);
    background: rgba(220, 38, 38, 0.92);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 900;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-chip {
    opacity: 1;
    transform: translateY(0);
}

.card-body {
    padding: 18px;
}

.card-title,
.rank-title {
    display: block;
    color: var(--slate-900);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.32;
}

.card-title:hover,
.rank-title:hover {
    color: var(--red);
}

.card-meta {
    margin-top: 10px;
}

.card-meta span {
    color: var(--slate-600);
    background: var(--slate-100);
    padding: 5px 9px;
    font-size: 11px;
}

.card-body p,
.rank-item p,
.side-panel p,
.overview-card p,
.article-block p {
    color: var(--slate-600);
    line-height: 1.72;
}

.card-body p {
    min-height: 76px;
}

.tag-row span {
    color: var(--red);
    background: #fff1f2;
}

.compact-card .card-body {
    padding: 14px;
}

.compact-card .card-title {
    font-size: 16px;
}

.compact-card .card-body p {
    display: none;
}

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

.compact-head {
    margin-bottom: 18px;
}

.rank-list {
    display: grid;
    gap: 14px;
}

.rank-item {
    display: grid;
    grid-template-columns: auto 92px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.rank-num,
.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--red), var(--orange));
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(220, 38, 38, 0.22);
}

.rank-num {
    width: 38px;
    height: 38px;
    border-radius: 12px;
}

.rank-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    min-width: 34px;
    height: 34px;
    border-radius: 999px;
}

.rank-poster {
    display: block;
    width: 92px;
    height: 118px;
    border-radius: 14px;
    overflow: hidden;
    background: #fee2e2;
}

.rank-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-panel {
    padding: 28px;
}

.side-panel h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.wide {
    width: 100%;
    margin-top: 14px;
}

.side-links,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.side-links a,
.footer-links a {
    color: var(--slate-700);
    background: var(--slate-100);
    border-radius: 999px;
    padding: 9px 13px;
    font-weight: 800;
}

.page-hero {
    color: var(--white);
    padding: 84px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 28%);
}

.page-hero > * {
    position: relative;
    z-index: 2;
}

.red-hero,
.orange-hero {
    background: linear-gradient(135deg, #7f1d1d, #ea580c, #0f172a);
}

.purple-hero {
    background: linear-gradient(135deg, #581c87, #1d4ed8, #0f172a);
}

.blue-hero {
    background: linear-gradient(135deg, #172554, #2563eb, #0f172a);
}

.page-hero p {
    margin-left: auto;
    margin-right: auto;
}

.page-filter {
    width: min(720px, 100%);
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: 1fr auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.22);
}

.page-filter input {
    border: 0;
    outline: 0;
    background: transparent;
    padding: 16px 22px;
    color: var(--slate-800);
}

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

.overview-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 24px;
    padding: 18px;
    align-items: center;
}

.overview-cover {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    height: 180px;
    overflow: hidden;
    border-radius: 18px;
    background: #fee2e2;
}

.overview-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview-card h2 {
    margin: 0;
    font-size: 28px;
}

.detail-hero {
    position: relative;
    color: var(--white);
    min-height: 610px;
    overflow: hidden;
    background: var(--slate-950);
}

.detail-bg {
    position: absolute;
    inset: 0;
}

.detail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
}

.detail-wrap {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 70px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    margin-bottom: 38px;
}

.breadcrumb a:hover {
    color: var(--white);
}

.detail-main {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 46px;
    align-items: center;
}

.detail-poster {
    aspect-ratio: 2 / 3;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
    background: #fee2e2;
}

.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-meta {
    margin: 18px 0;
}

.detail-meta span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.content-main {
    display: grid;
    gap: 24px;
}

.player-block,
.article-block {
    padding: 28px;
}

.player-block h2,
.article-block h2 {
    margin: 0 0 18px;
    font-size: 28px;
    letter-spacing: -0.03em;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #000;
    aspect-ratio: 16 / 9;
    box-shadow: 0 24px 70px rgba(2, 6, 23, 0.26);
}

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: var(--white);
    cursor: pointer;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.55), rgba(2, 6, 23, 0.1));
}

.player-overlay span {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(220, 38, 38, 0.92);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.35);
    font-size: 34px;
    padding-left: 5px;
}

.player-shell.is-playing .player-overlay {
    display: none;
}

.detail-side {
    position: sticky;
    top: 92px;
}

.info-list {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px 14px;
    margin: 0;
}

.info-list dt {
    color: var(--slate-500);
    font-weight: 900;
}

.info-list dd {
    margin: 0;
    color: var(--slate-800);
    font-weight: 800;
}

.side-tags {
    margin-top: 20px;
}

.large-list .rank-item {
    grid-template-columns: auto 116px minmax(0, 1fr);
    padding: 16px;
}

.large-list .rank-poster {
    width: 116px;
    height: 148px;
}

.sticky-panel {
    position: sticky;
    top: 92px;
}

.filter-empty {
    padding: 34px;
    text-align: center;
    color: var(--slate-600);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--soft-shadow);
    margin-bottom: 22px;
    font-weight: 900;
}

.site-footer {
    margin-top: 40px;
    color: var(--white);
    background: linear-gradient(135deg, var(--slate-950), #1e1b4b, #7f1d1d);
}

.footer-grid {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.4fr;
    gap: 36px;
}

.footer-grid p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.footer-grid h2 {
    margin: 0 0 16px;
    font-size: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[hidden] {
    display: none !important;
}

@media (max-width: 1100px) {
    .top-search {
        min-width: 220px;
    }

    .hero-content,
    .detail-main,
    .split-layout,
    .ranking-layout,
    .detail-content {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        display: none;
    }

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

    .intro-band {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-side,
    .sticky-panel {
        position: static;
    }
}

@media (max-width: 820px) {
    .menu-toggle {
        display: block;
    }

    .nav-wrap {
        flex-wrap: wrap;
    }

    .nav-panel {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        border-top: 1px solid var(--slate-200);
        padding-top: 14px;
    }

    .site-header.open .nav-panel {
        display: flex;
    }

    .nav-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .nav-links a {
        padding: 10px 12px;
        background: var(--slate-100);
        border-radius: 12px;
    }

    .top-search,
    .hero-search,
    .page-filter {
        min-width: 0;
        width: 100%;
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .hero-search {
        bottom: 18px;
    }

    .hero-carousel,
    .hero-content {
        min-height: 720px;
    }

    .hero-control {
        display: none;
    }

    .hero-dots {
        bottom: 118px;
    }

    .overview-grid,
    .overview-card,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .overview-cover {
        height: 220px;
    }
}

@media (max-width: 620px) {
    .section-wrap {
        padding: 42px 0;
    }

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

    .hero-desc,
    .lead-text,
    .page-hero p {
        font-size: 16px;
    }

    .hero-content {
        padding-top: 42px;
    }

    .intro-band,
    .category-grid,
    .movie-grid,
    .compact-grid {
        grid-template-columns: 1fr;
    }

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

    .rank-item,
    .large-list .rank-item {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .rank-poster,
    .large-list .rank-poster {
        display: none;
    }

    .detail-main {
        gap: 26px;
    }

    .detail-poster {
        max-width: 280px;
    }

    .player-block,
    .article-block,
    .side-panel {
        padding: 20px;
    }
}
