:root {
    --pink-50: #fff1f6;
    --pink-100: #ffe4ee;
    --pink-200: #fecddc;
    --pink-300: #fda4c5;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(219, 39, 119, 0.14);
    --shadow-card: 0 14px 36px rgba(31, 41, 55, 0.10);
    --radius-large: 28px;
    --radius-card: 20px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--gray-800);
    background: linear-gradient(180deg, var(--white), var(--pink-50));
    line-height: 1.65;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(255, 241, 246, 0.94), rgba(255, 228, 238, 0.94));
    box-shadow: 0 8px 24px rgba(219, 39, 119, 0.10);
    backdrop-filter: blur(16px);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--pink-600);
    font-weight: 800;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    box-shadow: 0 10px 22px rgba(236, 72, 153, 0.28);
    font-size: 13px;
}

.brand-name {
    font-size: clamp(20px, 2.2vw, 28px);
}

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

.nav-link {
    color: var(--gray-700);
    font-weight: 650;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--pink-600);
}

.nav-link:hover {
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.10);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--pink-600);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
}

.mobile-nav.is-open {
    display: grid;
    gap: 10px;
}

.mobile-link {
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--gray-700);
    background: rgba(255, 255, 255, 0.72);
    font-weight: 650;
}

.mobile-link.is-active {
    color: var(--pink-600);
    background: var(--white);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 84px 0 72px;
    background: linear-gradient(120deg, var(--pink-100), #fff7fb 44%, var(--pink-100));
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(50px);
    opacity: 0.45;
    pointer-events: none;
}

.hero-glow-one {
    width: 220px;
    height: 220px;
    left: 7%;
    top: 12%;
    background: var(--pink-300);
}

.hero-glow-two {
    width: 300px;
    height: 300px;
    right: 4%;
    bottom: 8%;
    background: #fbcfe8;
}

.hero-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 48px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--pink-600);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0;
    color: var(--gray-800);
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-lead,
.page-hero p {
    max-width: 720px;
    margin: 24px 0 0;
    color: var(--gray-600);
    font-size: clamp(16px, 1.7vw, 21px);
}

.hero-search,
.inline-filter {
    display: flex;
    width: min(100%, 620px);
    margin-top: 28px;
    padding: 8px;
    border: 1px solid rgba(236, 72, 153, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
}

.hero-search input,
.inline-filter input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 18px;
    color: var(--gray-800);
    background: transparent;
}

.hero-search button,
.inline-filter button,
.primary-action,
.secondary-action,
.panel-link,
.player-start {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-search button,
.inline-filter button,
.primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    color: var(--white);
    background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
    box-shadow: 0 14px 28px rgba(236, 72, 153, 0.28);
}

.secondary-action,
.panel-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.hero-search button:hover,
.inline-filter button:hover,
.primary-action:hover,
.secondary-action:hover,
.panel-link:hover,
.player-start:hover {
    transform: translateY(-2px);
}

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

.hero-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-shortcuts a {
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--pink-600);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(236, 72, 153, 0.18);
    font-weight: 700;
}

.hero-showcase {
    position: relative;
    min-height: 560px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(219, 39, 119, 0.24);
    background: var(--gray-900);
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.5s ease, transform 0.7s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

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

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.86), rgba(17, 24, 39, 0.18));
}

.hero-slide-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    color: var(--white);
}

.hero-slide-content span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    font-weight: 700;
}

.hero-slide-content h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3vw, 44px);
    line-height: 1.1;
}

.hero-slide-content p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.86);
}

.hero-slide-content a {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--white);
    color: var(--pink-600);
    font-weight: 800;
}

.hero-dots {
    position: absolute;
    right: 24px;
    top: 24px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

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

.hero-dot.is-active {
    width: 28px;
    background: var(--white);
}

.section {
    padding: 76px 0;
    background: linear-gradient(180deg, var(--pink-50), var(--white));
}

.section-white {
    background: var(--white);
}

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

.section-heading h2 {
    margin: 0;
    color: var(--gray-800);
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.15;
}

.section-heading a,
.text-link {
    color: var(--pink-600);
    font-weight: 800;
}

.compact-heading {
    display: block;
}

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

.category-tile,
.category-overview-card,
.movie-card,
.ranking-card,
.side-card,
.ranking-panel {
    border: 1px solid rgba(236, 72, 153, 0.12);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.category-tile {
    padding: 24px;
    border-radius: var(--radius-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover,
.movie-card:hover,
.ranking-card:hover,
.compact-card:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 52px rgba(219, 39, 119, 0.16);
    border-color: rgba(236, 72, 153, 0.30);
}

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
}

.category-tile h2,
.category-overview-card h2 {
    margin: 0 0 8px;
    font-size: 20px;
}

.category-tile p,
.category-overview-card p {
    margin: 0;
    color: var(--gray-600);
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pink-100), var(--gray-100));
}

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

.movie-card:hover .movie-poster img,
.compact-card:hover img,
.ranking-card:hover img {
    transform: scale(1.06);
}

.poster-year {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(17, 24, 39, 0.72);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.movie-info {
    padding: 16px;
}

.movie-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--pink-600);
    font-size: 13px;
    font-weight: 800;
}

.movie-info h2 {
    margin: 8px 0 8px;
    font-size: 18px;
    line-height: 1.28;
}

.movie-info p {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 12px;
    color: var(--gray-600);
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-list span {
    padding: 4px 9px;
    border-radius: 999px;
    color: var(--pink-600);
    background: var(--pink-50);
    font-size: 12px;
    font-weight: 700;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
}

.ranking-panel {
    position: sticky;
    top: 104px;
    align-self: start;
    padding: 24px;
    border-radius: var(--radius-large);
}

.rank-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rank-list a {
    display: grid;
    grid-template-columns: 38px 62px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.rank-list strong {
    color: var(--pink-600);
    font-size: 20px;
}

.rank-list img {
    width: 62px;
    height: 82px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--pink-100);
}

.rank-list b,
.rank-list small {
    display: block;
}

.rank-list small {
    color: var(--gray-500);
}

.panel-link {
    width: 100%;
    margin-top: 18px;
}

.highlight-band {
    background: linear-gradient(90deg, var(--pink-100), var(--pink-50), var(--pink-100));
}

.highlight-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 40px;
    border-radius: var(--radius-large);
    background: rgba(255, 255, 255, 0.60);
    box-shadow: var(--shadow-soft);
}

.highlight-inner h2 {
    margin: 0 0 10px;
    font-size: clamp(26px, 3vw, 42px);
}

.highlight-inner p:last-child {
    margin: 0;
    color: var(--gray-600);
}

.page-hero {
    padding: 70px 0;
    background: linear-gradient(120deg, var(--pink-100), #fff7fb, var(--pink-100));
}

.category-hero,
.search-hero,
.ranking-hero {
    position: relative;
    overflow: hidden;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 22px;
    padding: 20px;
    border-radius: var(--radius-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-cover-set img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    object-fit: cover;
    background: var(--pink-100);
}

.inline-filter {
    max-width: 560px;
}

.empty-state {
    display: none;
    margin-top: 26px;
    padding: 26px;
    border-radius: var(--radius-card);
    color: var(--gray-600);
    text-align: center;
    background: var(--pink-50);
}

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

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

.ranking-card {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    border-radius: var(--radius-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-cover {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--pink-100);
}

.ranking-cover span {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    padding: 4px 9px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    font-weight: 900;
}

.ranking-cover img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.detail-wrap {
    padding: 34px 0 76px;
    color: var(--white);
    background: linear-gradient(180deg, var(--gray-900), #1d1420 48%, var(--gray-800));
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 32px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

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

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

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-overlay img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
    filter: blur(2px) saturate(1.15);
}

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

.player-start {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: var(--pink-600);
    background: var(--white);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

.player-start span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
}

.detail-main h1 {
    margin: 28px 0 12px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.12;
}

.detail-meta span {
    color: var(--pink-100);
    background: rgba(236, 72, 153, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 5px 10px;
}

.detail-one-line {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.content-panel,
.side-card {
    margin-top: 22px;
    padding: 24px;
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: none;
}

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

.content-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.review-panel {
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.16), rgba(244, 63, 94, 0.12));
}

.detail-side {
    align-self: start;
    position: sticky;
    top: 104px;
}

.poster-card img {
    width: 100%;
    border-radius: 18px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    margin-bottom: 16px;
    background: var(--pink-100);
}

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

.compact-card {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, background 0.2s ease;
}

.compact-card img {
    grid-row: span 2;
    width: 66px;
    height: 88px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--pink-100);
    transition: transform 0.3s ease;
}

.compact-card span {
    color: var(--white);
    font-weight: 800;
}

.compact-card small {
    color: rgba(255, 255, 255, 0.62);
}

.site-footer {
    background: linear-gradient(180deg, var(--pink-50), var(--pink-100));
    color: var(--gray-700);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
    padding: 54px 0 38px;
}

.footer-grid h2 {
    margin: 0 0 14px;
    color: var(--gray-800);
    font-size: 18px;
}

.footer-grid p {
    color: var(--gray-600);
}

.footer-grid ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid a:hover {
    color: var(--pink-600);
}

.footer-bottom {
    border-top: 1px solid rgba(236, 72, 153, 0.14);
    padding: 18px 0;
    text-align: center;
    color: var(--gray-500);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-copy,
.hero-showcase,
.section-heading,
.movie-card,
.category-tile,
.ranking-card {
    animation: fadeUp 0.55s ease both;
}

@media (max-width: 1100px) {
    .hero-layout,
    .detail-grid,
    .two-column {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        min-height: 520px;
    }

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

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

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

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

    .menu-toggle {
        display: block;
    }

    .header-inner {
        min-height: 66px;
    }

    .hero-section,
    .page-hero {
        padding: 48px 0;
    }

    .hero-layout {
        gap: 32px;
    }

    .hero-showcase {
        min-height: 430px;
        border-radius: 24px;
    }

    .hero-search,
    .inline-filter {
        border-radius: 24px;
        flex-direction: column;
        gap: 8px;
    }

    .hero-search input,
    .inline-filter input {
        min-height: 44px;
    }

    .section {
        padding: 52px 0;
    }

    .section-heading,
    .highlight-inner {
        display: block;
    }

    .section-heading a,
    .highlight-inner .primary-action {
        margin-top: 16px;
    }

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

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

    .category-cover-set {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

    .brand-name {
        font-size: 18px;
    }

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

    .hero-showcase {
        min-height: 360px;
    }

    .hero-slide-content {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .category-grid,
    .movie-grid,
    .compact-grid,
    .wide-grid,
    .overview-grid,
    .ranking-grid {
        grid-template-columns: 1fr;
    }

    .category-cover-set {
        grid-template-columns: repeat(2, 1fr);
    }

    .movie-card-large {
        display: grid;
        grid-template-columns: 118px minmax(0, 1fr);
    }

    .movie-card-large .movie-poster {
        height: 100%;
    }

    .movie-card-large .movie-info p {
        -webkit-line-clamp: 3;
    }

    .detail-wrap {
        padding-top: 22px;
    }

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