:root {
    --bg: #f8fafc;
    --text: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --card: #ffffff;
    --amber: #d97706;
    --amber-dark: #b45309;
    --orange: #ea580c;
    --slate: #0f172a;
    --shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 8px 20px rgba(15, 23, 42, 0.08);
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(251, 191, 36, 0.18), transparent 36rem),
        linear-gradient(180deg, #fff7ed 0%, #f8fafc 22rem, #f8fafc 100%);
}

body.is-locked {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.site-header__inner {
    width: min(1240px, calc(100% - 32px));
    height: 66px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand__mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 10px 24px rgba(217, 119, 6, 0.28);
    font-size: 14px;
}

.brand__text {
    font-size: 24px;
    line-height: 1;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.04em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #374151;
    font-weight: 650;
}

.site-nav > a,
.nav-dropdown > a {
    padding: 22px 0;
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--amber);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown__panel {
    position: absolute;
    left: -16px;
    top: calc(100% - 4px);
    width: 190px;
    padding: 10px;
    border: 1px solid rgba(229, 231, 235, 0.82);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.22s ease;
}

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

.nav-dropdown__panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #374151;
}

.nav-dropdown__panel a:hover {
    background: #fff7ed;
    color: var(--amber);
}

.header-search,
.mobile-search {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    background: #ffffff;
    border-radius: 999px;
    overflow: hidden;
}

.header-search input,
.mobile-search input {
    width: 220px;
    border: 0;
    outline: 0;
    padding: 10px 4px 10px 16px;
    background: transparent;
}

.header-search button,
.mobile-search button {
    border: 0;
    width: 42px;
    height: 42px;
    cursor: pointer;
    color: #6b7280;
    background: transparent;
    transition: color 0.2s ease, background 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover {
    color: var(--amber);
    background: #fff7ed;
}

.mobile-toggle {
    display: none;
    border: 0;
    border-radius: 12px;
    background: #f3f4f6;
    width: 42px;
    height: 42px;
    cursor: pointer;
    font-size: 22px;
}

.mobile-menu {
    display: none;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
    border-top: 1px solid rgba(229, 231, 235, 0.9);
}

.mobile-menu.is-open {
    display: grid;
    gap: 12px;
}

.mobile-menu a {
    padding: 8px 4px;
    color: #374151;
    font-weight: 650;
}

.mobile-menu__cats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 14px;
    padding-left: 8px;
}

.home-hero {
    width: min(1240px, calc(100% - 32px));
    margin: 32px auto 0;
}

.hero-stage {
    position: relative;
    height: 600px;
    border-radius: 28px;
    overflow: hidden;
    background: #111827;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s 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__overlay,
.detail-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 48%);
}

.hero-slide__content {
    position: absolute;
    left: clamp(28px, 6vw, 70px);
    bottom: clamp(36px, 8vw, 88px);
    max-width: 720px;
    color: #ffffff;
}

.hero-kicker,
.detail-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #fbbf24;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero-slide h1,
.hero-slide h2 {
    margin: 0 0 16px;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.06em;
    text-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.hero-slide h1 + h2 {
    margin-top: -6px;
    color: #f8fafc;
    font-size: clamp(28px, 4vw, 46px);
}

.hero-meta {
    margin: 0 0 10px;
    color: #fde68a;
    font-size: 18px;
    font-weight: 650;
}

.hero-desc {
    margin: 0 0 26px;
    max-width: 640px;
    color: #e5e7eb;
    font-size: 17px;
    line-height: 1.8;
}

.hero-actions,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

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

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.33);
}

.btn-primary:hover {
    box-shadow: 0 18px 38px rgba(217, 119, 6, 0.42);
}

.btn-ghost {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 36px;
    line-height: 1;
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.28);
}

.hero-arrow--prev {
    left: 22px;
}

.hero-arrow--next {
    right: 22px;
}

.hero-dots {
    position: absolute;
    right: 38px;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.hero-dot.is-active {
    width: 30px;
    background: #fbbf24;
}

.content-section {
    padding: 56px 0;
}

.content-section--soft {
    background: rgba(255, 255, 255, 0.56);
    backdrop-filter: blur(12px);
}

.content-section--warm {
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.95), rgba(255, 251, 235, 0.82));
}

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

.section-title > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title span {
    color: var(--amber);
    font-size: 22px;
}

.section-title h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 34px);
    letter-spacing: -0.04em;
}

.section-more {
    color: var(--amber);
    font-weight: 800;
}

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

.movie-grid--six {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.78);
    border-radius: 20px;
    background: var(--card);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.movie-card__poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #e5e7eb;
}

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

.movie-card:hover .movie-card__poster img {
    transform: scale(1.08);
}

.movie-card__shade {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 62%);
    transition: opacity 0.25s ease;
}

.movie-card:hover .movie-card__shade {
    opacity: 1;
}

.movie-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--amber);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
    transition: 0.25s ease;
}

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

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 6px 9px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(185, 28, 28, 0.92);
    font-size: 12px;
    font-weight: 900;
}

.movie-card__body {
    padding: 16px;
}

.movie-card--compact .movie-card__body {
    padding: 13px;
}

.movie-card h3 {
    margin: 0 0 7px;
    font-size: 18px;
    line-height: 1.25;
}

.movie-card--compact h3 {
    font-size: 16px;
}

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

.movie-card__meta {
    margin: 0 0 10px;
    color: #6b7280;
    font-size: 14px;
}

.movie-card__desc {
    display: -webkit-box;
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: 32px;
    align-items: start;
}

.list-grid,
.rank-panel,
.rank-showcase {
    display: grid;
    gap: 14px;
}

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

.list-card {
    display: grid;
    grid-template-columns: 82px auto;
    gap: 14px;
    align-items: center;
    position: relative;
    padding: 12px;
    border: 1px solid rgba(229, 231, 235, 0.76);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.list-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.list-card__poster {
    display: block;
    width: 82px;
    height: 108px;
    overflow: hidden;
    border-radius: 12px;
    background: #e5e7eb;
}

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

.list-card__rank {
    position: absolute;
    right: 14px;
    top: 12px;
    color: var(--amber);
    font-weight: 900;
}

.list-card__body h3 {
    margin: 0 36px 6px 0;
    font-size: 17px;
}

.list-card__body a:hover {
    color: var(--amber);
}

.list-card__body p,
.list-card__body span {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.55;
}

.list-card__body span {
    display: -webkit-box;
    margin-top: 6px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 66px;
    color: #ffffff;
    background:
        radial-gradient(circle at 14% 20%, rgba(251, 191, 36, 0.42), transparent 28rem),
        linear-gradient(135deg, #111827, #1f2937 45%, #92400e);
}

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

.page-hero p {
    margin: 0 0 8px;
    color: #fbbf24;
    font-weight: 850;
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 54px);
    letter-spacing: -0.06em;
}

.page-hero span {
    display: block;
    max-width: 740px;
    color: #e5e7eb;
    font-size: 18px;
    line-height: 1.8;
}

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

.category-tile {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.category-tile__covers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 160px;
    overflow: hidden;
}

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

.category-tile__body {
    padding: 20px;
}

.category-tile__body h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.category-tile__body p {
    margin: 0 0 18px;
    color: #4b5563;
    line-height: 1.7;
}

.category-tile__body span {
    color: var(--amber);
    font-weight: 850;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(130px, 180px)) auto;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.filter-panel input,
.filter-panel select,
.filter-panel button {
    width: 100%;
    min-height: 44px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 0 12px;
    color: #111827;
    background: #ffffff;
    outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.14);
}

.filter-panel button {
    cursor: pointer;
    color: #ffffff;
    border-color: transparent;
    background: var(--slate);
    font-weight: 800;
}

.empty-state {
    margin: 28px 0;
    padding: 22px;
    border-radius: 16px;
    color: #92400e;
    background: #fffbeb;
}

.detail-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    color: #ffffff;
    background: #0f172a;
}

.detail-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) saturate(1.05);
    transform: scale(1.02);
}

.detail-hero__inner {
    position: relative;
    z-index: 1;
    padding: 32px 0 58px;
}

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

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

.detail-head {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 34px;
    align-items: end;
}

.detail-poster {
    width: 250px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.52);
    border-radius: 24px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

.detail-head h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.detail-one-line {
    max-width: 830px;
    margin: 0 0 24px;
    color: #e5e7eb;
    font-size: 18px;
    line-height: 1.8;
}

.detail-tags {
    margin-bottom: 26px;
}

.detail-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    font-size: 14px;
}

.detail-layout {
    padding-top: 40px;
}

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

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

.player-card,
.article-card,
.meta-card {
    border: 1px solid rgba(229, 231, 235, 0.76);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
}

.player-card {
    overflow: hidden;
    background: #020617;
}

.video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

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

.video-cover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.18));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-cover span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 16px 42px rgba(217, 119, 6, 0.46);
    font-size: 34px;
    transform: translateX(3px);
}

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

.article-card,
.meta-card {
    padding: 24px;
}

.article-card h2,
.meta-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.article-card p {
    margin: 0;
    color: #374151;
    font-size: 16px;
    line-height: 1.9;
}

.meta-card dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.meta-card dt {
    color: #6b7280;
    font-size: 13px;
}

.meta-card dd {
    margin: -8px 0 6px;
    color: #111827;
    font-weight: 700;
    line-height: 1.6;
}

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

.site-footer__inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 28px;
}

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

.footer-logo {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 22px;
}

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

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

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(75, 85, 99, 0.7);
    color: #9ca3af;
}

[hidden] {
    display: none !important;
}

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

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

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

    .two-column-section,
    .detail-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 760px) {
    .container,
    .site-header__inner,
    .mobile-menu,
    .home-hero,
    .site-footer__inner {
        width: min(100% - 24px, 1240px);
    }

    .brand__text {
        font-size: 20px;
    }

    .hero-stage {
        height: 520px;
        border-radius: 22px;
    }

    .hero-slide__content {
        left: 22px;
        right: 22px;
        bottom: 72px;
    }

    .hero-actions {
        gap: 8px;
    }

    .btn {
        padding: 10px 16px;
    }

    .hero-arrow {
        top: auto;
        bottom: 18px;
        transform: none;
    }

    .hero-dots {
        left: 50%;
        right: auto;
        bottom: 30px;
        transform: translateX(-50%);
    }

    .movie-grid,
    .movie-grid--six,
    .movie-grid--catalog,
    .category-grid,
    .rank-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .content-section {
        padding: 38px 0;
    }

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

    .detail-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .detail-poster {
        width: 180px;
    }

    .detail-hero {
        min-height: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .mobile-menu__cats,
    .movie-grid,
    .movie-grid--six,
    .movie-grid--catalog,
    .category-grid,
    .rank-showcase {
        grid-template-columns: 1fr;
    }

    .movie-card__poster {
        aspect-ratio: 16 / 11;
    }

    .list-card {
        grid-template-columns: 74px auto;
    }

    .list-card__poster {
        width: 74px;
        height: 98px;
    }
}
