:root {
    --color-primary: #0891b2;
    --color-primary-dark: #0e7490;
    --color-blue: #2563eb;
    --color-ink: #111827;
    --color-muted: #6b7280;
    --color-soft: #f3f8fb;
    --color-line: #e5e7eb;
    --shadow-card: 0 18px 45px rgba(15, 23, 42, 0.10);
    --shadow-hover: 0 24px 60px rgba(8, 145, 178, 0.18);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-ink);
    background: #f8fafc;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.brand-mark {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-blue));
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(8, 145, 178, 0.32);
}

.brand-text {
    font-size: 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link {
    padding: 9px 16px;
    color: #334155;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--color-primary-dark);
    background: rgba(8, 145, 178, 0.10);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: rgba(8, 145, 178, 0.10);
    border-radius: 14px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--color-primary-dark);
    border-radius: 999px;
}

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

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

.mobile-nav__link {
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 14px;
    font-weight: 700;
}

.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #06b6d4 0%, #2563eb 48%, #172554 100%);
}

.hero-pattern,
.page-hero::before,
.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}

.hero-slider {
    position: relative;
    min-height: 680px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.65s ease, visibility 0.65s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    filter: saturate(1.1) contrast(1.05);
    transform: scale(1.03);
    opacity: 0.38;
}

.hero-slide__shade {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 45%, rgba(34, 211, 238, 0.30), transparent 32%), linear-gradient(90deg, rgba(2, 6, 23, 0.72), rgba(15, 23, 42, 0.30));
}

.hero-slide__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 56px;
    align-items: center;
    min-height: 680px;
    padding: 86px 0 118px;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.hero-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.12;
}

.hero-copy p,
.page-hero p {
    max-width: 760px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 14px;
    color: #ecfeff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 28px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    color: #075985;
    background: #e0f7ff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.hero .tag-pill,
.detail-hero .tag-pill {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.30);
}

.btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(12px);
}

.hero-poster {
    display: block;
    transform: rotate(2deg);
    transition: transform 0.35s ease;
}

.hero-poster:hover {
    transform: rotate(0deg) translateY(-8px);
}

.poster-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #0f172a, #0e7490 48%, #1d4ed8);
    background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.20), rgba(14, 116, 144, 0.52)), var(--cover-image);
    background-size: cover;
    background-position: center;
    border-radius: 22px;
    box-shadow: var(--shadow-card);
}

.poster-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.25s ease, transform 0.45s ease;
}

.poster-image.is-missing {
    opacity: 0;
}

.hero-poster__frame {
    border: 5px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 34px 90px rgba(2, 6, 23, 0.45);
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateX(-50%);
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

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

.hero-search form {
    display: flex;
    width: min(440px, 42vw);
    padding: 6px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.22);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 16px;
    background: transparent;
    color: #0f172a;
}

.hero-search button {
    border: 0;
    padding: 10px 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-blue));
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
}

.section {
    position: relative;
    padding: 78px 0;
}

.section-light {
    background: #f8fafc;
}

.section-white {
    background: #fff;
}

.section-split {
    background: linear-gradient(180deg, #ffffff 0%, #eef8fc 100%);
}

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

.section-head.centered {
    display: grid;
    justify-items: center;
    text-align: center;
}

.section-head.compact {
    align-items: center;
    margin-bottom: 20px;
}

.section-head h2,
.content-card h2,
.side-card h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-head p {
    max-width: 620px;
    margin: 10px auto 0;
    color: var(--color-muted);
}

.section-kicker {
    color: var(--color-primary-dark);
    background: #cffafe;
    border: 0;
}

.text-link {
    color: var(--color-primary-dark);
    font-weight: 900;
}

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

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

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

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

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

.movie-card__link {
    display: block;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.movie-card__link:hover {
    transform: translateY(-8px);
    border-color: rgba(8, 145, 178, 0.30);
    box-shadow: var(--shadow-hover);
}

.movie-card__link:hover .poster-image {
    transform: scale(1.08);
}

.movie-card__body {
    padding: 16px 16px 18px;
}

.movie-card__meta,
.movie-card__foot,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.movie-card__meta span,
.movie-card__foot span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    background: #f1f5f9;
    border-radius: 999px;
}

.movie-card h3 {
    display: -webkit-box;
    min-height: 54px;
    margin: 12px 0 8px;
    overflow: hidden;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

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

.category-card,
.category-overview {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 28px;
    color: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover,
.category-overview:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.20);
}

.category-card::after,
.category-overview::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
}

.theme-1 {
    background: linear-gradient(135deg, #06b6d4, #2563eb);
}

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

.theme-3 {
    background: linear-gradient(135deg, #22c55e, #0d9488);
}

.theme-4 {
    background: linear-gradient(135deg, #8b5cf6, #2563eb);
}

.theme-5 {
    background: linear-gradient(135deg, #e11d48, #7c3aed);
}

.theme-6 {
    background: linear-gradient(135deg, #0f766e, #164e63);
}

.category-card__icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.20);
    border-radius: 16px;
    font-weight: 900;
}

.category-card h3,
.category-overview h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-size: 26px;
}

.category-card p,
.category-overview p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.category-overview__main {
    display: block;
}

.category-overview__links {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    margin-top: 20px;
}

.category-overview__links a {
    color: rgba(255, 255, 255, 0.90);
    font-size: 14px;
    font-weight: 700;
}

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

.feature-panel,
.ranking-panel,
.filter-panel,
.content-card,
.player-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.feature-panel,
.ranking-panel {
    padding: 26px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 16px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.rank-row:hover {
    background: #ecfeff;
    transform: translateX(4px);
}

.rank-num,
.rank-badge {
    display: grid;
    min-width: 36px;
    height: 36px;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-blue));
    border-radius: 12px;
    font-weight: 900;
}

.rank-title {
    overflow: hidden;
    color: #0f172a;
    font-weight: 900;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-meta {
    color: #64748b;
    font-size: 13px;
    white-space: nowrap;
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #0891b2, #2563eb 52%, #172554);
}

.page-hero--compact {
    padding: 78px 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.filter-panel {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, minmax(130px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
    padding: 18px;
}

.filter-panel--simple {
    grid-template-columns: minmax(220px, 420px);
}

.filter-panel label {
    display: grid;
    gap: 7px;
    color: #334155;
    font-size: 13px;
    font-weight: 900;
}

.form-control {
    width: 100%;
    min-height: 46px;
    border: 1px solid #cbd5e1;
    outline: 0;
    padding: 0 14px;
    color: #0f172a;
    background: #fff;
    border-radius: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
}

.is-hidden {
    display: none !important;
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 16px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.poster-frame--rank {
    border-radius: 18px;
}

.ranking-card__body h2 {
    margin: 10px 0 8px;
    font-size: 22px;
    line-height: 1.25;
}

.ranking-card__body p {
    margin: 0 0 12px;
    color: var(--color-muted);
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #0f172a;
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--detail-image);
    background-size: cover;
    background-position: center;
    filter: blur(18px) saturate(1.1);
    transform: scale(1.08);
    opacity: 0.32;
}

.detail-hero__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.88), rgba(14, 116, 144, 0.54));
}

.detail-hero__inner {
    position: relative;
    z-index: 2;
    padding: 44px 0 70px;
}

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

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

.detail-intro {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.poster-frame--detail {
    border: 5px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 28px 80px rgba(2, 6, 23, 0.42);
}

.detail-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-copy p {
    max-width: 820px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.detail-meta {
    margin-bottom: 4px;
}

.detail-meta span {
    color: #e0f2fe;
    background: rgba(255, 255, 255, 0.14);
}

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

.detail-main,
.detail-side {
    display: grid;
    gap: 22px;
}

.player-card {
    padding: 16px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: radial-gradient(circle at center, #1f2937, #020617);
    border-radius: 22px;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 10px;
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.42), rgba(8, 145, 178, 0.36));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-button {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    padding-left: 5px;
    color: #fff;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    border-radius: 999px;
    box-shadow: 0 22px 50px rgba(37, 99, 235, 0.38);
    font-size: 34px;
}

.play-label {
    font-size: 18px;
    font-weight: 900;
}

.player-status {
    min-height: 24px;
    padding: 10px 4px 0;
    color: #64748b;
    font-size: 14px;
}

.content-card {
    padding: 26px;
}

.content-card h2 {
    margin-bottom: 14px;
    font-size: 26px;
}

.content-card p {
    margin: 0;
    color: #334155;
    font-size: 16px;
}

.info-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.info-list div {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.info-list dt {
    color: #64748b;
    font-weight: 800;
}

.info-list dd {
    margin: 0;
    color: #0f172a;
    font-weight: 800;
}

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(180deg, #111827, #020617);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
    padding: 54px 0;
}

.footer-brand {
    color: #fff;
    font-size: 24px;
}

.footer-brand-block p {
    max-width: 520px;
    color: #94a3b8;
}

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

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

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

.footer-bottom {
    padding: 18px 16px 28px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    color: #94a3b8;
    text-align: center;
    font-size: 14px;
}

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

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

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

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

    .nav-toggle {
        display: block;
    }

    .hero,
    .hero-slider,
    .hero-slide__inner {
        min-height: 760px;
    }

    .hero-slide__inner,
    .detail-intro {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-top: 56px;
    }

    .hero-poster {
        width: min(280px, 72vw);
        margin: 0 auto;
    }

    .hero-controls {
        display: grid;
        gap: 16px;
    }

    .hero-search form {
        width: min(560px, calc(100vw - 32px));
    }

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

    .movie-grid--catalog,
    .movie-grid--home,
    .movie-grid--feature {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-poster {
        width: min(260px, 76vw);
    }
}

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

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

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

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

    .movie-grid--catalog,
    .movie-grid--home,
    .movie-grid--feature {
        grid-template-columns: 1fr;
    }

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

    .ranking-card {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .rank-row {
        grid-template-columns: auto minmax(0, 1fr);
    }

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