:root {
    --primary: #9333ea;
    --primary-dark: #6b21a8;
    --pink: #ec4899;
    --blue: #3b82f6;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #e5e7eb;
    --bg: #fff7ff;
    --card: #ffffff;
    --shadow: 0 20px 60px rgba(88, 28, 135, 0.14);
    --radius: 24px;
}

* {
    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(--text);
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 36%, #fdf2f8 100%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, #7e22ce, #9333ea, #db2777);
    box-shadow: 0 16px 40px rgba(126, 34, 206, 0.22);
}

.header-inner {
    max-width: 1380px;
    height: 68px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 900;
    white-space: nowrap;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #7e22ce;
    background: #fff;
    box-shadow: inset 0 0 0 5px rgba(236, 72, 153, 0.13);
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    width: 220px;
    padding: 10px;
    display: grid;
    gap: 4px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 10px 12px;
    border-radius: 12px;
    color: #4b5563;
}

.dropdown-menu a:hover {
    color: var(--primary);
    background: #faf5ff;
}

.header-search {
    display: flex;
    align-items: center;
    width: 310px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.header-search input,
.mobile-search input {
    min-width: 0;
    flex: 1;
    height: 36px;
    padding: 0 12px;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
    color: rgba(255, 255, 255, 0.78);
}

.header-search button,
.mobile-search button {
    height: 34px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    color: var(--primary-dark);
    background: #fff;
    cursor: pointer;
    font-weight: 700;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.mobile-nav {
    display: none;
    padding: 0 24px 18px;
    gap: 8px;
}

.mobile-search {
    display: flex;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.hero-carousel {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background: radial-gradient(circle at 20% 15%, rgba(236, 72, 153, 0.55), transparent 32%), linear-gradient(135deg, #351064 0%, #7e22ce 48%, #db2777 100%);
}

.hero-orb {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    filter: blur(6px);
    opacity: 0.24;
    background: #fff;
    animation: float 7s ease-in-out infinite;
}

.hero-orb-one {
    left: 8%;
    top: 8%;
}

.hero-orb-two {
    right: 10%;
    bottom: 12%;
    animation-delay: -3s;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
    align-items: center;
    gap: 52px;
    max-width: 1380px;
    margin: 0 auto;
    padding: 92px 24px 112px;
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    pointer-events: none;
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    filter: blur(2px) saturate(1.2);
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(35, 10, 70, 0.96), rgba(88, 28, 135, 0.68), rgba(219, 39, 119, 0.72));
}

.hero-content {
    max-width: 800px;
}

.eyebrow {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

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

.hero-content h1,
.page-hero h1,
.detail-main h1 {
    margin: 0;
    font-size: clamp(40px, 6vw, 78px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-summary,
.page-hero p,
.detail-one-line {
    max-width: 760px;
    margin: 24px 0 0;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.86);
}

.hero-tags,
.movie-tags,
.large-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.hero-tags span,
.movie-tags span,
.large-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #7e22ce;
    background: #f5e8ff;
}

.hero-tags span,
.large-tags span {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.22s ease;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(90deg, var(--primary), var(--pink));
    box-shadow: 0 18px 32px rgba(236, 72, 153, 0.26);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 42px rgba(236, 72, 153, 0.36);
}

.btn-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
}

.hero-poster {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(10, 0, 35, 0.38);
    transform: rotate(2deg);
    background: linear-gradient(145deg, #9333ea, #ec4899);
}

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

.hero-poster span {
    position: absolute;
    left: 20px;
    bottom: 20px;
    min-width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: rgba(147, 51, 234, 0.82);
    backdrop-filter: blur(8px);
    font-weight: 800;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 36px;
    z-index: 4;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-controls button {
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.hero-controls > button {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 28px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    opacity: 0.58;
}

.hero-dot.active {
    width: 34px;
    opacity: 1;
    background: #fff;
}

.section {
    max-width: 1380px;
    margin: 0 auto;
    padding: 72px 24px;
}

.section-overlap {
    margin-top: -48px;
    position: relative;
    z-index: 4;
}

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

.section-heading.compact {
    margin-bottom: 20px;
}

.section-heading h2,
.panel-heading h2,
.content-card h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.15;
}

.section-more,
.panel-heading a {
    color: var(--primary);
    font-weight: 800;
}

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

.category-card {
    position: relative;
    min-height: 190px;
    padding: 24px;
    border-radius: 28px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #7e22ce, #ec4899);
    box-shadow: var(--shadow);
    transition: 0.22s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card strong,
.category-card em,
.category-card p {
    position: relative;
    z-index: 2;
    display: block;
}

.category-card strong {
    font-size: 24px;
}

.category-card em {
    margin-top: 6px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
}

.category-card p {
    margin: 18px 0 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.86);
}

.category-card img {
    position: absolute;
    right: -18px;
    bottom: -40px;
    width: 140px;
    height: 190px;
    object-fit: cover;
    border-radius: 18px;
    opacity: 0.28;
    transform: rotate(10deg);
}

.category-glow {
    position: absolute;
    inset: -40% auto auto -30%;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
}

.two-column-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 30px;
    align-items: start;
}

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

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

.movie-card {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 48px rgba(88, 28, 135, 0.1);
    transition: 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(88, 28, 135, 0.18);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(145deg, #ede9fe, #fce7f3);
}

.movie-poster img,
.rank-cover img,
.ranking-row-cover img,
.detail-cover img,
.overview-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-poster img {
    transition: transform 0.35s ease;
}

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

.poster-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 9px;
    border-radius: 999px;
    color: #fff;
    background: rgba(126, 34, 206, 0.86);
    backdrop-filter: blur(6px);
    font-size: 12px;
    font-weight: 800;
}

.poster-play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--pink));
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.3);
}

.movie-info {
    padding: 16px;
}

.movie-title {
    display: block;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.28;
    color: #111827;
}

.movie-title:hover {
    color: var(--primary);
}

.movie-meta,
.movie-desc {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.movie-desc {
    display: -webkit-box;
    min-height: 44px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ranking-panel,
.content-card,
.filter-toolbar,
.category-overview-card,
.ranking-row {
    border: 1px solid rgba(147, 51, 234, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.ranking-panel {
    padding: 24px;
}

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

.panel-heading {
    margin-bottom: 18px;
}

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

.rank-link {
    display: grid;
    grid-template-columns: 42px 54px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: #faf5ff;
    transition: 0.2s ease;
}

.rank-link:hover {
    background: #f3e8ff;
    transform: translateX(3px);
}

.rank-number {
    font-weight: 950;
    color: var(--primary);
}

.rank-cover {
    display: block;
    width: 54px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, #ede9fe, #fce7f3);
}

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

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

.rank-text em {
    margin-top: 3px;
    font-size: 12px;
    font-style: normal;
    color: var(--muted);
}

.filter-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding: 18px;
}

.filter-controls {
    display: flex;
    gap: 12px;
}

.filter-controls input,
.filter-controls select {
    height: 44px;
    min-width: 220px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: 0;
    background: #fff;
}

.filter-controls input:focus,
.filter-controls select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.12);
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.2), transparent 26%), linear-gradient(135deg, #4c1d95, #9333ea 55%, #db2777);
}

.page-hero {
    min-height: 360px;
    display: flex;
    align-items: center;
    padding: 84px max(24px, calc((100vw - 1380px) / 2 + 24px));
}

.small-hero,
.search-hero,
.ranking-hero {
    min-height: 320px;
}

.page-hero > div {
    max-width: 820px;
}

.overview-grid {
    display: grid;
    gap: 22px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    padding: 22px;
}

.overview-cover {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(145deg, #ede9fe, #fce7f3);
}

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

.category-overview-card p {
    color: var(--muted);
}

.mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mini-links a {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--primary);
    background: #faf5ff;
    font-size: 13px;
    font-weight: 700;
}

.ranking-table {
    display: grid;
    gap: 16px;
}

.ranking-row {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 130px;
    gap: 18px;
    align-items: center;
    padding: 18px;
}

.ranking-row-cover {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(145deg, #ede9fe, #fce7f3);
}

.ranking-index {
    color: var(--primary);
    font-weight: 900;
}

.ranking-row h2 {
    margin: 4px 0;
    font-size: 24px;
}

.ranking-row p {
    margin: 0;
    color: var(--muted);
}

.ranking-score {
    text-align: center;
    color: var(--primary);
}

.ranking-score strong {
    display: block;
    font-size: 30px;
}

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

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

.detail-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    filter: blur(3px) saturate(1.2);
}

.detail-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(35, 10, 70, 0.96), rgba(88, 28, 135, 0.76));
}

.detail-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-cover {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(145deg, #ede9fe, #fce7f3);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

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

.player-section {
    padding-top: 52px;
}

.video-shell {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #0f071b;
    box-shadow: 0 30px 80px rgba(88, 28, 135, 0.2);
}

.movie-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0f071b;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 10px;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(15, 7, 27, 0.18), rgba(15, 7, 27, 0.74));
    cursor: pointer;
    transition: 0.22s ease;
}

.play-overlay span {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--pink));
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.38);
    font-size: 30px;
}

.video-shell.playing .play-overlay {
    opacity: 0;
    visibility: hidden;
}

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

.content-card {
    padding: 26px;
}

.content-card p {
    color: #4b5563;
    font-size: 17px;
}

.meta-card {
    grid-column: 1 / -1;
}

.meta-card dl {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 12px 18px;
    margin: 0;
}

.meta-card dt {
    color: var(--muted);
    font-weight: 800;
}

.meta-card dd {
    margin: 0;
}

.site-footer {
    margin-top: 60px;
    color: #fff;
    background: linear-gradient(135deg, #3b0764, #701a75);
}

.footer-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 46px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr);
    gap: 36px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 950;
}

.footer-inner p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.78);
}

.footer-small {
    font-size: 13px;
}

.footer-links strong {
    display: block;
    margin-bottom: 10px;
}

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

.footer-links a {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.cover-fallback {
    background: linear-gradient(145deg, #7e22ce, #ec4899) !important;
}

.cover-fallback::after {
    content: "高清";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.86);
    font-size: 24px;
    font-weight: 900;
}

.hidden-by-filter {
    display: none !important;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-22px);
    }
}

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

    .two-column-layout {
        grid-template-columns: 1fr;
    }

    .sticky-panel {
        position: static;
    }
}

@media (max-width: 900px) {
    .main-nav,
    .header-search {
        display: none;
    }

    .header-inner {
        height: 64px;
    }

    .mobile-menu-button {
        display: block;
        margin-left: auto;
    }

    .mobile-nav.open {
        display: grid;
    }

    .mobile-nav .nav-link {
        justify-content: flex-start;
    }

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

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-top: 82px;
    }

    .hero-poster {
        max-width: 280px;
        margin: 0 auto;
    }

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

    .section-heading,
    .filter-toolbar,
    .footer-inner,
    .detail-content,
    .detail-grid,
    .category-overview-card,
    .ranking-row {
        grid-template-columns: 1fr;
        display: grid;
    }

    .filter-controls {
        flex-direction: column;
    }

    .filter-controls input,
    .filter-controls select {
        width: 100%;
        min-width: 0;
    }

    .detail-cover {
        max-width: 300px;
    }

    .ranking-score {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .header-inner,
    .section,
    .page-hero {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .hero-content h1,
    .page-hero h1,
    .detail-main h1 {
        font-size: 36px;
    }

    .hero-summary,
    .page-hero p,
    .detail-one-line {
        font-size: 16px;
    }

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

    .category-card {
        min-height: 160px;
    }

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

    .movie-poster {
        height: 100%;
    }

    .movie-desc {
        -webkit-line-clamp: 3;
    }

    .meta-card dl {
        grid-template-columns: 1fr;
    }
}
