:root {
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --red-600: #dc2626;
    --pink-700: #be185d;
    --slate-900: #0f172a;
    --gray-950: #030712;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 20px 50px rgba(15, 23, 42, 0.14);
    --shadow-lg: 0 30px 80px rgba(127, 29, 29, 0.24);
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-900);
    background: var(--gray-50);
    line-height: 1.6;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #fee2e2, #ffe4e6);
}

button,
input,
select {
    font: inherit;
}

[hidden] {
    display: none !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--red-600), var(--rose-600), var(--pink-700));
    box-shadow: 0 12px 36px rgba(190, 24, 93, 0.28);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
    padding: 9px 12px;
    border-radius: 12px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.nav-search input {
    width: 170px;
    border: 0;
    outline: 0;
    color: var(--white);
    background: transparent;
    padding: 8px 10px;
}

.nav-search input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.nav-search button {
    border: 0;
    border-radius: 12px;
    color: var(--rose-600);
    background: var(--white);
    font-weight: 800;
    padding: 8px 14px;
    cursor: pointer;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
}

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

.hero-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, #dc2626 0%, #e11d48 48%, #be185d 100%);
    min-height: 660px;
    padding: 74px 0 52px;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.24), transparent 24%),
        radial-gradient(circle at 82% 22%, rgba(251, 113, 133, 0.45), transparent 22%),
        linear-gradient(0deg, rgba(3, 7, 18, 0.24), rgba(3, 7, 18, 0));
}

.hero-carousel {
    position: relative;
    z-index: 1;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.hero-slide {
    display: none;
    align-items: center;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
    gap: 50px;
    min-height: 480px;
}

.hero-slide.active {
    display: grid;
    animation: fadeRise 0.65s ease both;
}

.hero-copy {
    max-width: 760px;
}

.hero-kicker,
.page-hero p,
.section-heading p,
.showcase-copy p,
.eyebrow,
.section-heading.inside p {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffe4e6;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-copy p {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 2vw, 22px);
}

.hero-tags,
.detail-tags,
.tag-row,
.movie-card-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin: 26px 0;
}

.hero-tags span,
.detail-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.hero-tags span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    padding: 8px 13px;
    backdrop-filter: blur(10px);
}

.hero-actions,
.footer-links,
.mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.primary-btn,
.ghost-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: var(--rose-600);
    background: var(--white);
    padding: 13px 22px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.ghost-btn {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    padding: 13px 22px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.hero-poster {
    position: relative;
    min-height: 430px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(1deg);
    isolation: isolate;
}

.hero-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 7, 18, 0.64), rgba(3, 7, 18, 0.03));
}

.hero-play {
    position: absolute;
    z-index: 1;
    left: 28px;
    bottom: 28px;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--rose-600);
    background: var(--white);
    font-size: 22px;
    box-shadow: var(--shadow-md);
}

.hero-dots {
    position: relative;
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

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

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

.hero-search {
    position: relative;
    z-index: 2;
    width: min(820px, calc(100% - 32px));
    margin: 34px auto 0;
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    border-radius: 16px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--gray-900);
    font-weight: 700;
}

.hero-search button {
    border: 0;
    border-radius: 16px;
    padding: 0 24px;
    color: var(--white);
    background: var(--gray-900);
    font-weight: 900;
    cursor: pointer;
}

.section-wrap,
.detail-wrap {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.section-wrap {
    padding: 64px 0;
}

.intro-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: -36px;
    position: relative;
    z-index: 4;
    padding: 0 0 34px;
}

.intro-strip div {
    border-radius: 22px;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.intro-strip span {
    display: block;
    color: var(--rose-600);
    font-size: 13px;
    font-weight: 900;
}

.intro-strip strong {
    display: block;
    margin-top: 6px;
    font-size: 22px;
}

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

.section-heading p,
.showcase-copy p,
.eyebrow,
.section-heading.inside p {
    color: var(--rose-600);
}

.section-heading h2,
.showcase-copy h2,
.content-card h2 {
    margin: 0;
    color: var(--gray-900);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--rose-100);
}

.poster-wrap img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

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

.year-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(3, 7, 18, 0.18);
}

.year-badge {
    top: 12px;
    right: 12px;
    padding: 6px 10px;
    font-size: 12px;
    background: var(--rose-600);
}

.rank-badge {
    left: 12px;
    top: 12px;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #f97316, #e11d48);
}

.movie-card-body {
    padding: 16px;
}

.movie-card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.4;
    color: var(--gray-900);
}

.movie-card-title:hover {
    color: var(--rose-600);
}

.movie-card-meta {
    margin: 10px 0;
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 800;
}

.movie-card-meta span + span::before,
.detail-meta span + span::before {
    content: "·";
    margin-right: 8px;
    color: var(--gray-300);
}

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

.tag-row span {
    color: var(--rose-700, #be123c);
    background: var(--rose-50);
    padding: 5px 9px;
}

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

.category-card,
.category-overview-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-card {
    min-height: 260px;
    display: flex;
    align-items: end;
}

.category-card img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(3, 7, 18, 0.82), rgba(3, 7, 18, 0.15));
}

.category-card div {
    position: relative;
    z-index: 2;
    padding: 22px;
    color: var(--white);
}

.category-card h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.category-card p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.82);
}

.category-card span {
    font-weight: 900;
    color: #fecdd3;
}

.split-showcase {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 26px;
    align-items: stretch;
}

.showcase-copy {
    border-radius: 28px;
    padding: 34px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-600), var(--red-600));
    box-shadow: var(--shadow-md);
}

.showcase-copy h2 {
    color: var(--white);
}

.showcase-copy span {
    display: block;
    margin: 18px 0 26px;
    color: rgba(255, 255, 255, 0.84);
}

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

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

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

.page-hero {
    color: var(--white);
    background: linear-gradient(120deg, #be123c, #e11d48, #dc2626);
    padding: 72px 0;
}

.page-hero > div {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 62px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.page-hero span {
    display: block;
    max-width: 820px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 22px;
    padding: 18px;
}

.category-cover {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.category-overview-card h2 {
    margin: 2px 0 10px;
    font-size: 28px;
    line-height: 1.1;
}

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

.mini-links a {
    max-width: 100%;
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--gray-700);
    background: var(--gray-100);
    font-size: 13px;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(150px, 0.34fr));
    gap: 14px;
    align-items: end;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.filter-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--gray-700);
    font-size: 13px;
    font-weight: 900;
}

.filter-field input,
.filter-field select {
    width: 100%;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    outline: 0;
    color: var(--gray-900);
    background: var(--white);
    padding: 13px 14px;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.filter-field input:focus,
.filter-field select:focus {
    border-color: var(--rose-500);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.empty-state {
    margin: 36px 0;
    border-radius: 24px;
    padding: 48px 24px;
    text-align: center;
    color: var(--gray-600);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    font-weight: 900;
}

.detail-wrap {
    padding: 36px 0 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px;
    color: var(--gray-600);
    font-weight: 800;
}

.breadcrumb a {
    color: var(--rose-600);
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: 34px;
    align-items: stretch;
    padding: 28px;
    border-radius: 32px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.detail-poster {
    overflow: hidden;
    border-radius: 26px;
    aspect-ratio: 3 / 4;
    box-shadow: var(--shadow-sm);
}

.detail-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.detail-info h1 {
    margin: 0;
    max-width: 860px;
    color: var(--gray-900);
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.detail-meta {
    margin: 18px 0;
    color: var(--gray-600);
    font-weight: 900;
}

.lead-text {
    margin: 0 0 22px;
    color: var(--gray-700);
    font-size: 19px;
}

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

.detail-tags span {
    color: var(--rose-600);
    background: var(--rose-50);
    padding: 8px 12px;
}

.watch-section {
    margin: 36px 0;
    border-radius: 32px;
    padding: 26px;
    background: var(--gray-950);
    box-shadow: var(--shadow-md);
}

.watch-section .section-heading h2,
.watch-section .section-heading p {
    color: var(--white);
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000000;
    aspect-ratio: 16 / 9;
}

.movie-player-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
}

.player-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.32), rgba(3, 7, 18, 0.66));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.movie-player-button {
    width: 86px;
    height: 86px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-600);
    background: var(--white);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.movie-player-button:hover {
    transform: scale(1.08);
    background: var(--rose-50);
}

.movie-player-button span {
    margin-left: 4px;
    font-size: 30px;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.content-card p {
    margin: 18px 0 0;
    color: var(--gray-700);
    font-size: 17px;
}

.related-wrap {
    width: 100%;
}

.site-footer {
    margin-top: 72px;
    color: rgba(255, 255, 255, 0.78);
    background: var(--gray-950);
    padding: 44px 0 28px;
}

.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer-logo {
    color: var(--white);
}

.footer-inner p {
    max-width: 520px;
    margin: 12px 0 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    width: min(1280px, calc(100% - 32px));
    margin: 26px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

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

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

    .category-grid,
    .horizontal-cards,
    .rank-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .nav-toggle {
        display: inline-block;
    }

    .nav-panel {
        position: absolute;
        top: 72px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 22px;
        background: linear-gradient(135deg, var(--red-600), var(--pink-700));
        box-shadow: var(--shadow-md);
    }

    .nav-panel.open {
        display: flex;
    }

    .nav-search,
    .nav-search input {
        width: 100%;
    }

    .hero-slide,
    .detail-hero,
    .split-showcase,
    .detail-content-grid,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        min-height: 340px;
    }

    .intro-strip,
    .category-overview-grid,
    .filter-panel,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        display: grid;
    }
}

@media (max-width: 720px) {
    .site-nav {
        width: min(100% - 24px, 1280px);
        min-height: 66px;
    }

    .site-logo {
        font-size: 18px;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
    }

    .hero-section {
        min-height: auto;
        padding: 50px 0 36px;
    }

    .hero-search {
        flex-direction: column;
    }

    .hero-search button {
        min-height: 50px;
    }

    .section-wrap,
    .detail-wrap,
    .page-hero > div,
    .footer-inner,
    .copyright {
        width: min(100% - 24px, 1280px);
    }

    .section-wrap {
        padding: 42px 0;
    }

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

    .movie-card-body {
        padding: 13px;
    }

    .movie-card-title {
        font-size: 15px;
        min-height: 42px;
    }

    .movie-card p {
        font-size: 13px;
        min-height: 56px;
    }

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

    .detail-hero,
    .watch-section,
    .content-card {
        padding: 18px;
        border-radius: 24px;
    }

    .movie-player-button {
        width: 68px;
        height: 68px;
    }
}

@media (max-width: 430px) {
    .movie-grid,
    .catalog-grid,
    .rank-list,
    .full-rank-list,
    .category-grid,
    .horizontal-cards {
        grid-template-columns: 1fr;
    }

    .poster-wrap {
        aspect-ratio: 16 / 11;
    }
}
