:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-100: #f1f5f9;
    --gray-950: #030712;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --cyan: #06b6d4;
    --cyan-dark: #0891b2;
    --blue: #2563eb;
    --rose: #f43f5e;
    --yellow: #f59e0b;
    --shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.12);
    --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.22);
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--gray-900);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #f8fafc 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    color: var(--white);
    background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
    box-shadow: 0 12px 26px rgba(2, 6, 23, 0.32);
}

.nav-container {
    max-width: 1240px;
    height: 66px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.32);
}

.brand-text {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #67e8f9, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
    display: none;
}

.main-nav a,
.mobile-nav a {
    color: rgba(255, 255, 255, 0.78);
    border-radius: 12px;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.main-nav a {
    padding: 9px 12px;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
    color: var(--white);
    background: rgba(148, 163, 184, 0.18);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.mobile-toggle span {
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 10px 20px 18px;
    background: var(--slate-800);
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

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

.mobile-nav a {
    padding: 10px 12px;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 540px;
    overflow: hidden;
    background: var(--slate-950);
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-slide.is-active img {
    animation: heroScale 8s ease forwards;
}

@keyframes heroScale {
    from {
        transform: scale(1.02);
    }
    to {
        transform: scale(1.08);
    }
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.62) 42%, rgba(2, 6, 23, 0.22) 100%);
}

.hero-glow {
    position: absolute;
    width: 460px;
    height: 460px;
    right: 8%;
    bottom: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.28), rgba(6, 182, 212, 0));
    filter: blur(3px);
}

.hero-inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    height: 100%;
    padding: 0 22px;
    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 690px;
    color: var(--white);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-kicker span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 700;
    background: rgba(6, 182, 212, 0.92);
    color: var(--white);
}

.hero-kicker em {
    color: rgba(255, 255, 255, 0.78);
    font-style: normal;
}

.hero h1,
.hero h2 {
    margin: 0 0 18px;
    font-size: clamp(40px, 6vw, 78px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    font-weight: 950;
}

.hero p {
    margin: 0 0 28px;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.section-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

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

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 16px 28px rgba(6, 182, 212, 0.3);
}

.btn-secondary {
    color: var(--gray-900);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-light:hover {
    transform: translateY(-2px) scale(1.01);
}

.hero-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--white);
    background: rgba(2, 6, 23, 0.42);
    backdrop-filter: blur(12px);
    font-size: 34px;
    line-height: 1;
}

.hero-control:hover {
    background: rgba(2, 6, 23, 0.72);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

.hero-dots {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    transition: width 0.25s ease, background 0.25s ease;
}

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

.content-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 54px 22px;
}

.page-hero {
    background: linear-gradient(135deg, #ecfeff, #eff6ff 56%, #ffffff);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.page-hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 52px 22px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--gray-500);
    font-size: 14px;
}

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

.page-hero h1,
.content-wrap h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 950;
}

.page-hero p {
    max-width: 790px;
    margin: 0;
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 18px;
}

.section-block {
    margin-bottom: 62px;
}

.section-card {
    border-radius: 28px;
    padding: 28px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.section-tint {
    background: linear-gradient(135deg, #ecfeff, #eff6ff);
    border-radius: 32px;
    padding: 32px;
}

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

.section-head h2 {
    margin: 0;
    font-size: clamp(25px, 3vw, 38px);
    letter-spacing: -0.03em;
    font-weight: 950;
}

.section-head p {
    margin: 8px 0 0;
    color: var(--gray-500);
    line-height: 1.7;
}

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

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

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

.poster-frame {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
    box-shadow: var(--shadow-soft);
}

.poster-frame img,
.horizontal-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.55s ease;
}

.poster-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0.72));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.poster-type {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    background: rgba(2, 6, 23, 0.64);
    backdrop-filter: blur(8px);
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%) scale(0.82);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.movie-card:hover .poster-frame img,
.movie-card:hover .horizontal-poster img {
    transform: scale(1.09);
    filter: saturate(1.08);
}

.movie-card:hover .poster-frame::after,
.movie-card:hover .poster-play {
    opacity: 1;
}

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

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

.movie-card h3 {
    margin: 0 0 7px;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 850;
}

.movie-card h3 a:hover {
    color: var(--cyan-dark);
}

.movie-card p {
    margin: 0;
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card-large .poster-frame {
    aspect-ratio: 16 / 11;
    border-radius: 24px;
}

.movie-card-large h3 {
    font-size: 22px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    color: var(--gray-500);
    font-size: 13px;
}

.card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-meta span + span::before {
    content: "·";
    color: #cbd5e1;
    margin-right: 1px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border-radius: 999px;
    color: var(--gray-600);
    background: var(--gray-100);
    font-size: 12px;
    font-weight: 700;
}

.movie-card-horizontal {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    overflow: hidden;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.horizontal-poster {
    position: relative;
    overflow: hidden;
    min-height: 112px;
    background: var(--slate-800);
}

.horizontal-body {
    padding: 14px;
}

.horizontal-body h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

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

.category-panel {
    padding: 24px;
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.category-panel h3 {
    margin: 0 0 16px;
    padding-left: 13px;
    border-left: 5px solid var(--cyan);
    font-size: 22px;
    font-weight: 950;
}

.category-panel p {
    margin: 0 0 18px;
    color: var(--gray-500);
    line-height: 1.7;
}

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

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    padding: 24px;
    border-radius: 26px;
    color: var(--white);
    background: linear-gradient(135deg, var(--slate-900), var(--cyan-dark));
    box-shadow: var(--shadow-soft);
}

.category-tile:nth-child(2n) {
    background: linear-gradient(135deg, var(--slate-900), var(--blue));
}

.category-tile:nth-child(3n) {
    background: linear-gradient(135deg, var(--slate-900), var(--rose));
}

.category-tile::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -40px;
    bottom: -46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.category-tile h2 {
    position: relative;
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 950;
}

.category-tile p {
    position: relative;
    margin: 0 0 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.category-tile span {
    position: relative;
    display: inline-flex;
    font-weight: 850;
}

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

.rank-link {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rank-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.rank-num {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--white);
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-weight: 950;
    font-size: 13px;
}

.rank-title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 850;
}

.rank-meta {
    color: var(--gray-500);
    font-size: 13px;
    white-space: nowrap;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px 180px;
    gap: 12px;
    margin: 0 0 28px;
    padding: 18px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 0 14px;
    color: var(--gray-800);
    background: var(--white);
    outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
}

.empty-state {
    display: none;
    padding: 34px;
    border-radius: 24px;
    text-align: center;
    color: var(--gray-500);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

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

.detail-main {
    background: #f8fafc;
}

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

.player-card,
.detail-card,
.sidebar-card {
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.player-card {
    overflow: hidden;
    margin-bottom: 26px;
}

.player-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--slate-950);
}

.player-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--slate-950);
}

.play-layer {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.62));
    cursor: pointer;
}

.player-box.is-playing .play-layer,
.play-layer[hidden] {
    display: none;
}

.play-button {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-size: 34px;
    box-shadow: 0 22px 45px rgba(6, 182, 212, 0.34);
    transition: transform 0.22s ease;
}

.play-layer:hover .play-button {
    transform: scale(1.07);
}

.detail-card {
    padding: 28px;
}

.detail-card h1 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.16;
    letter-spacing: -0.03em;
    font-weight: 950;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--gray-200);
}

.detail-meta span {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--gray-700);
    background: var(--gray-100);
    font-weight: 750;
    font-size: 14px;
}

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

.detail-section h2 {
    margin: 0 0 12px;
    font-size: 23px;
    font-weight: 950;
}

.detail-section p {
    margin: 0 0 12px;
    color: var(--gray-700);
    line-height: 1.86;
}

.review-box {
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fafc, #ecfeff);
    border: 1px solid rgba(6, 182, 212, 0.16);
}

.sidebar-card {
    padding: 22px;
    margin-bottom: 22px;
}

.sidebar-card h2 {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 950;
}

.cover-side {
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 16 / 10;
    margin-bottom: 16px;
    background: var(--slate-800);
}

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

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

.related-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 16px;
    background: #f8fafc;
    transition: background 0.22s ease, transform 0.22s ease;
}

.related-item:hover {
    transform: translateY(-2px);
    background: #ecfeff;
}

.related-thumb {
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16 / 10;
    background: var(--slate-800);
}

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

.related-item h3 {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 850;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-item p {
    margin: 0;
    color: var(--gray-500);
    font-size: 13px;
}

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px 22px 34px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 16px;
    color: var(--white);
}

.site-footer p {
    margin: 0;
    line-height: 1.8;
    color: #94a3b8;
}

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

.site-footer a:hover {
    color: #67e8f9;
}

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 22px 28px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    color: #94a3b8;
    font-size: 14px;
}

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

    .movie-grid.featured-grid,
    .detail-layout,
    .rank-board {
        grid-template-columns: 1fr;
    }

    .main-nav {
        max-width: 680px;
    }
}

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

    .mobile-toggle {
        display: flex;
    }

    .hero {
        height: 72vh;
        min-height: 540px;
    }

    .hero-control {
        display: none;
    }

    .movie-grid,
    .movie-grid.featured-grid,
    .category-preview-grid,
    .category-overview,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 560px) {
    .nav-container {
        height: 62px;
        padding: 0 16px;
    }

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

    .hero-inner,
    .content-wrap,
    .page-hero-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .hero p {
        font-size: 16px;
    }

    .section-tint,
    .section-card,
    .category-panel,
    .detail-card,
    .sidebar-card {
        padding: 20px;
        border-radius: 22px;
    }

    .movie-card-horizontal,
    .related-item {
        grid-template-columns: 110px minmax(0, 1fr);
    }

    .horizontal-poster {
        min-height: 92px;
    }

    .rank-link {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .rank-meta {
        grid-column: 2;
    }
}
