* {
    box-sizing: border-box;
}

:root {
    --pink: #ec4899;
    --purple: #8b5cf6;
    --orange: #f97316;
    --red: #ef4444;
    --teal: #14b8a6;
    --blue: #2563eb;
    --green: #16a34a;
    --text: #1f2937;
    --muted: #6b7280;
    --soft: #f9fafb;
    --line: #e5e7eb;
    --shadow: 0 24px 60px rgba(31, 41, 55, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: linear-gradient(180deg, #fff7fb 0%, #ffffff 40%, #f8fafc 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #ffffff;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 12px 28px rgba(139, 92, 246, 0.35);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    padding: 10px 16px;
    color: #4b5563;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--purple);
    background: #f5f3ff;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    color: #ffffff;
    font-size: 22px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

main {
    min-height: 70vh;
}

.hero-shell {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(236, 72, 153, 0.24), transparent 32%), linear-gradient(135deg, #fff1f8 0%, #f1edff 45%, #e8f7ff 100%);
}

.hero-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.45;
}

.hero-glow-one {
    top: 70px;
    left: 10%;
    background: var(--pink);
}

.hero-glow-two {
    right: 8%;
    bottom: 40px;
    background: var(--blue);
}

.hero-track {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0 94px;
}

.hero-slide {
    display: none;
    min-height: 500px;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    align-items: center;
    gap: 54px;
    opacity: 0;
    transform: translateY(18px);
}

.hero-slide.is-active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
    animation: heroFade 0.62s ease both;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pink);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-content h1,
.page-hero h1 {
    margin: 14px 0 20px;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    background: linear-gradient(90deg, #db2777, #7c3aed, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p,
.page-hero p {
    max-width: 660px;
    margin: 0;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.9;
}

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

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    color: #7c3aed;
    border-radius: 999px;
    background: linear-gradient(90deg, #fce7f3, #ede9fe);
    font-size: 12px;
    font-weight: 800;
}

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

.primary-button,
.ghost-button,
.small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    box-shadow: 0 16px 30px rgba(236, 72, 153, 0.28);
}

.primary-button:hover,
.ghost-button:hover,
.small-button:hover {
    transform: translateY(-2px);
}

.ghost-button,
.small-button {
    color: #6d28d9;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.16);
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 28px;
    background: #111827;
    box-shadow: var(--shadow);
}

.hero-poster img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.42s ease;
}

.hero-poster:hover img {
    transform: scale(1.05);
}

.hero-poster::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.78));
}

.hero-poster span {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 700;
}

.hero-controls {
    position: absolute;
    right: 0;
    bottom: 34px;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.hero-controls button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    color: #7c3aed;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 32px rgba(31, 41, 55, 0.14);
    cursor: pointer;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dots .hero-dot {
    width: 10px;
    height: 10px;
    min-height: 0;
    padding: 0;
    background: rgba(124, 58, 237, 0.28);
    box-shadow: none;
}

.hero-dots .hero-dot.is-active {
    width: 28px;
    background: linear-gradient(90deg, var(--pink), var(--purple));
}

.section {
    padding: 74px 0;
}

.soft-section {
    padding: 74px 0;
    background: linear-gradient(90deg, #eff6ff, #faf5ff);
}

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

.section-head h2 {
    margin: 8px 0 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.section-head a {
    color: #7c3aed;
    font-weight: 900;
}

.section-head.compact h2 {
    font-size: 30px;
}

.section-kicker.blue {
    color: var(--blue);
}

.section-kicker.green {
    color: var(--green);
}

.section-kicker.orange {
    color: var(--orange);
}

.section-kicker.teal {
    color: var(--teal);
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 15px 36px rgba(31, 41, 55, 0.11);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(31, 41, 55, 0.18);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111827;
}

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

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

.poster-link::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.48));
    opacity: 0;
    transition: opacity 0.22s ease;
}

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

.poster-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .poster-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

.movie-meta-line {
    display: flex;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.movie-card h2 {
    min-height: 52px;
    margin: 8px 0;
    font-size: 18px;
    line-height: 1.42;
}

.movie-card h2 a:hover {
    color: var(--purple);
}

.movie-card p {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 14px;
    overflow: hidden;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row {
    gap: 6px;
}

.tag-row span {
    min-height: 26px;
    padding: 4px 9px;
}

.feature-list {
    display: grid;
    gap: 18px;
}

.feature-row {
    display: grid;
    grid-template-columns: 64px 220px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 18px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(31, 41, 55, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(31, 41, 55, 0.15);
}

.feature-row img {
    width: 220px;
    height: 132px;
    object-fit: cover;
    border-radius: 18px;
}

.feature-rank,
.ranking-number {
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--pink), var(--orange));
}

.feature-rank {
    width: 54px;
    height: 54px;
}

.feature-row h2,
.ranking-item h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.feature-row p,
.ranking-item p {
    margin: 0 0 10px;
    color: #6b7280;
    line-height: 1.7;
}

.feature-row span,
.ranking-item em {
    color: var(--orange);
    font-style: normal;
    font-weight: 800;
}

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

.category-tile,
.category-overview-card,
.side-card,
.detail-card,
.split-panel {
    border: 1px solid rgba(229, 231, 235, 0.84);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 36px rgba(31, 41, 55, 0.1);
}

.category-tile {
    padding: 22px;
    min-height: 218px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(139, 92, 246, 0.18);
}

.category-tile strong {
    display: block;
    margin-bottom: 10px;
    font-size: 21px;
    color: #6d28d9;
}

.category-tile p {
    margin: 0 0 16px;
    color: #6b7280;
    line-height: 1.7;
}

.category-tile div {
    display: grid;
    gap: 8px;
}

.category-tile span {
    color: #111827;
    font-size: 13px;
    font-weight: 800;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-bottom: 86px;
}

.split-panel {
    padding: 24px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 48px 70px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: #fff7fb;
}

.rank-row span {
    color: var(--pink);
    font-weight: 900;
}

.rank-row img {
    width: 70px;
    height: 48px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-row strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-row em {
    display: block;
    overflow: hidden;
    color: #6b7280;
    font-size: 12px;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.compact-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(31, 41, 55, 0.08);
}

.compact-card img {
    grid-row: span 2;
    width: 88px;
    height: 64px;
    object-fit: cover;
    border-radius: 14px;
}

.compact-card span {
    overflow: hidden;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-card em {
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-hero {
    padding: 74px 0;
    color: #ffffff;
    overflow: hidden;
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero p {
    color: #ffffff;
    background: none;
}

.gradient-orange {
    background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
}

.gradient-purple {
    background: linear-gradient(135deg, #6d28d9, #db2777, #f97316);
}

.gradient-red {
    background: linear-gradient(135deg, #ef4444, #f97316, #f59e0b);
}

.gradient-green {
    background: linear-gradient(135deg, #059669, #14b8a6, #2563eb);
}

.category-overview-list {
    display: grid;
    gap: 24px;
}

.category-overview-card {
    padding: 28px;
}

.category-overview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 10px;
}

.category-overview-head h2 {
    margin: 8px 0 0;
    font-size: 30px;
}

.category-overview-card p {
    color: #6b7280;
    line-height: 1.8;
}

.overview-samples {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 78px 148px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 16px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(31, 41, 55, 0.1);
}

.ranking-number {
    width: 64px;
    height: 64px;
    font-size: 18px;
}

.ranking-item img {
    width: 148px;
    height: 96px;
    object-fit: cover;
    border-radius: 18px;
}

.search-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 180px;
    gap: 12px;
    max-width: 820px;
    margin-top: 30px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
}

.search-panel input,
.search-panel select {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 16px;
    padding: 0 16px;
    color: #111827;
    background: #ffffff;
    font: inherit;
    outline: none;
}

.search-empty {
    display: none;
    margin-top: 18px;
    font-weight: 900;
}

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

.search-card.is-hidden {
    display: none;
}

.detail-hero {
    padding: 34px 0 82px;
    background: linear-gradient(180deg, #111827 0, #1f2937 330px, #f8fafc 330px, #ffffff 100%);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: #d1d5db;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #ffffff;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    background: #050816;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.movie-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000000;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #000000;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
}

.player-cover::after {
    position: absolute;
    inset: 0;
    content: "";
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2), rgba(0, 0, 0, 0.72));
}

.player-cover.is-hidden {
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
}

.big-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 22px 48px rgba(236, 72, 153, 0.32);
    transform: translate(-50%, -50%);
}

.player-message {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 4;
    display: none;
    padding: 10px 14px;
    color: #ffffff;
    border-radius: 14px;
    background: rgba(239, 68, 68, 0.86);
    font-size: 14px;
    font-weight: 800;
}

.player-shell.is-error .player-message {
    display: block;
}

.detail-card,
.side-card {
    padding: 24px;
    margin-top: 24px;
}

.detail-card h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.16;
}

.detail-card .lead {
    color: #4b5563;
    font-size: 18px;
    line-height: 1.9;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.detail-meta span {
    padding: 8px 13px;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    font-size: 13px;
    font-weight: 900;
}

.detail-card h2,
.side-card h2 {
    margin: 28px 0 12px;
    font-size: 24px;
}

.detail-card p {
    color: #4b5563;
    line-height: 1.95;
}

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

.poster-card img {
    width: 100%;
    border-radius: 22px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.primary-button.full {
    width: 100%;
    margin-top: 18px;
}

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

.site-footer {
    padding: 58px 0 24px;
    color: #d1d5db;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 34px;
}

.site-footer p {
    color: #9ca3af;
    line-height: 1.8;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 18px;
}

.footer-links {
    display: grid;
    gap: 10px;
}

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

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    padding-top: 22px;
    color: #9ca3af;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 14px;
}

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

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

    .split-section,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-side {
        position: static;
    }
}

@media (max-width: 820px) {
    .header-inner {
        height: 64px;
    }

    .nav-toggle {
        display: grid;
        place-items: center;
    }

    .site-nav {
        position: absolute;
        top: 64px;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 22px;
        background: #ffffff;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero-shell {
        min-height: 0;
    }

    .hero-track {
        padding: 46px 0 94px;
    }

    .hero-slide,
    .hero-slide.is-active {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-poster img {
        height: 400px;
    }

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

    .poster-link img {
        height: 230px;
    }

    .feature-row {
        grid-template-columns: 1fr;
    }

    .feature-row img {
        width: 100%;
        height: 210px;
    }

    .compact-scroll,
    .footer-grid,
    .overview-samples,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .search-panel {
        grid-template-columns: 1fr;
    }

    .ranking-item {
        grid-template-columns: 62px 96px minmax(0, 1fr);
        gap: 12px;
    }

    .ranking-item img {
        width: 96px;
        height: 70px;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .brand,
    .footer-brand {
        font-size: 18px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

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

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

    .hero-poster img {
        height: 330px;
    }

    .poster-link img {
        height: 320px;
    }

    .detail-hero {
        padding-top: 24px;
        background: linear-gradient(180deg, #111827 0, #1f2937 260px, #f8fafc 260px, #ffffff 100%);
    }
}
