:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --orange-500: #f97316;
    --blue-500: #3b82f6;
    --red-500: #ef4444;
    --rose-500: #f43f5e;
    --purple-500: #a855f7;
    --teal-500: #14b8a6;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    --soft-shadow: 0 10px 25px rgba(15, 23, 42, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: #111827;
    background: linear-gradient(180deg, var(--slate-50), #eef2f7 42%, #ffffff);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

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

button,
input,
select {
    font: inherit;
}

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

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

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

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

.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--slate-950);
    background: linear-gradient(135deg, #fbbf24, var(--orange-500));
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
}

.brand-text {
    font-size: 1.25rem;
    background: linear-gradient(90deg, #fbbf24, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-link,
.mobile-link {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 650;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: #fbbf24;
}

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

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    border-radius: 99px;
}

.mobile-nav {
    display: none;
    padding: 8px 16px 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

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

.mobile-link {
    display: block;
    padding: 11px 14px;
    border-radius: 12px;
}

.mobile-link:hover,
.mobile-link.active {
    background: rgba(255, 255, 255, 0.08);
}

.hero-slider {
    position: relative;
    min-height: 560px;
    height: 72vh;
    overflow: hidden;
    color: var(--white);
    background: var(--slate-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.55s ease, transform 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 20%, rgba(245, 158, 11, 0.30), transparent 28%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(15, 23, 42, 0.60) 45%, rgba(15, 23, 42, 0.22)),
        linear-gradient(0deg, rgba(15, 23, 42, 0.98), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) 340px;
    align-items: center;
    gap: 48px;
}

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    color: #92400e;
    background: #fef3c7;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title {
    margin: 0;
    font-size: clamp(2.3rem, 5vw, 4.6rem);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero-copy p {
    max-width: 620px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
}

.hero-meta,
.card-meta,
.info-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hero-meta {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.hero-meta span,
.info-strip span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.hero-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-tags span,
.detail-tags span {
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    font-size: 0.88rem;
}

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

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

.primary-button {
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 16px 30px rgba(245, 158, 11, 0.32);
}

.primary-button:hover,
.ghost-button:hover,
.outline-button:hover {
    transform: translateY(-2px);
}

.primary-button.small {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.ghost-button {
    color: var(--white);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.outline-button {
    color: var(--slate-800);
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.outline-button.full {
    width: 100%;
    margin-top: 8px;
}

.hero-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    box-shadow: 0 35px 75px rgba(0, 0, 0, 0.42);
}

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

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

.hero-dot {
    width: 36px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
}

.hero-dot.active {
    background: #fbbf24;
}

.quick-search,
.content-section,
.category-section,
.catalog-tools,
.ranking-panel,
.overview-list,
.detail-article {
    margin-top: 56px;
}

.quick-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    gap: 24px;
    align-items: center;
    padding: 28px;
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 28px;
    box-shadow: var(--soft-shadow);
}

.quick-search h2,
.section-heading h2,
.page-hero h1,
.detail-article h1,
.overview-copy h2 {
    margin: 0;
    color: var(--slate-800);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.quick-search h2,
.section-heading h2,
.overview-copy h2 {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.quick-search p,
.overview-copy p,
.page-hero p,
.footer-grid p,
.detail-article p,
.landscape-body p,
.card-summary {
    color: var(--slate-600);
}

.filter-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.filter-row.compact {
    justify-content: flex-end;
}

.filter-input,
.filter-select {
    min-height: 46px;
    border: 1px solid rgba(100, 116, 139, 0.25);
    border-radius: 14px;
    background: var(--white);
    color: var(--slate-800);
    outline: none;
    box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.03);
}

.filter-input {
    width: min(100%, 420px);
    padding: 0 16px;
}

.filter-select {
    padding: 0 14px;
}

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

.section-heading a {
    color: var(--amber-600);
    font-weight: 800;
}

.section-kicker {
    color: #92400e;
    background: #fffbeb;
}

.section-kicker.blue {
    color: #1d4ed8;
    background: #dbeafe;
}

.section-kicker.red {
    color: #b91c1c;
    background: #fee2e2;
}

.section-kicker.orange {
    color: #c2410c;
    background: #ffedd5;
}

.section-kicker.purple {
    color: #7e22ce;
    background: #f3e8ff;
}

.section-kicker.rose {
    color: #be123c;
    background: #ffe4e6;
}

.section-kicker.teal {
    color: #0f766e;
    background: #ccfbf1;
}

.section-kicker.slate {
    color: var(--slate-700);
    background: var(--slate-100);
}

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

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

.movie-card,
.landscape-card,
.category-tile,
.overview-panel,
.ranking-row,
.detail-card {
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.20);
    box-shadow: var(--soft-shadow);
}

.movie-card {
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover,
.landscape-card:hover,
.category-tile:hover,
.ranking-row:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.poster-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: var(--slate-100);
}

.poster-frame img,
.landscape-cover img,
.detail-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover .poster-frame img,
.landscape-card:hover .landscape-cover img {
    transform: scale(1.08);
}

.rating-badge,
.rank-badge,
.score-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(245, 158, 11, 0.30);
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    min-width: 42px;
    height: 28px;
    padding: 0 8px;
    border-radius: 10px;
    font-size: 0.82rem;
}

.rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    font-size: 1rem;
}

.rank-badge.large {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
}

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

.movie-card h3,
.landscape-card h3 {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--slate-800);
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.movie-card:hover h3,
.landscape-card:hover h3 {
    color: var(--amber-600);
}

.card-summary {
    display: -webkit-box;
    min-height: 42px;
    margin: 9px 0 0;
    overflow: hidden;
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    justify-content: space-between;
    margin-top: 10px;
    color: var(--slate-500);
    font-size: 0.78rem;
}

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

.landscape-card {
    overflow: hidden;
    border-radius: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.landscape-cover {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--slate-100);
}

.landscape-body {
    padding: 16px;
}

.landscape-body p {
    display: -webkit-box;
    margin: 8px 0 0;
    overflow: hidden;
    font-size: 0.92rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.category-section,
.warm-block {
    padding: 34px;
    border-radius: 34px;
}

.category-section {
    color: var(--white);
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
    box-shadow: var(--shadow);
}

.category-section .section-heading h2,
.category-section .section-heading a {
    color: var(--white);
}

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

.category-tile {
    display: grid;
    gap: 12px;
    min-height: 210px;
    padding: 22px;
    overflow: hidden;
    border-radius: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile span {
    color: var(--slate-900);
    font-size: 1.35rem;
    font-weight: 900;
}

.category-tile p {
    margin: 0;
    color: var(--slate-600);
}

.category-tile .tile-links {
    display: grid;
    gap: 6px;
    align-self: end;
    color: var(--slate-700);
    font-size: 0.9rem;
    font-weight: 700;
}

.category-tile.amber { background: linear-gradient(135deg, #fffbeb, #fed7aa); }
.category-tile.blue { background: linear-gradient(135deg, #eff6ff, #bfdbfe); }
.category-tile.red { background: linear-gradient(135deg, #fff1f2, #fecdd3); }
.category-tile.purple { background: linear-gradient(135deg, #faf5ff, #e9d5ff); }
.category-tile.rose { background: linear-gradient(135deg, #fff1f2, #fecdd3); }
.category-tile.orange { background: linear-gradient(135deg, #fff7ed, #fed7aa); }
.category-tile.teal { background: linear-gradient(135deg, #f0fdfa, #99f6e4); }
.category-tile.slate { background: linear-gradient(135deg, #f8fafc, #cbd5e1); }

.warm-block {
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.page-hero {
    padding: 70px 0 64px;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 5%, rgba(245, 158, 11, 0.34), transparent 30%),
        linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

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

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

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

.catalog-tools {
    padding: 20px;
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
}

.empty-state {
    padding: 30px;
    text-align: center;
    color: var(--slate-500);
    background: var(--white);
    border-radius: 18px;
}

.overview-list {
    display: grid;
    gap: 28px;
}

.overview-panel {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 28px;
    padding: 28px;
    border-radius: 28px;
}

.overview-copy p {
    margin: 12px 0 20px;
}

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

.ranking-panel {
    display: grid;
    gap: 12px;
}

.ranking-row {
    display: grid;
    grid-template-columns: 56px 70px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 12px 16px;
    border-radius: 18px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ranking-number {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    background: var(--slate-800);
    border-radius: 14px;
    font-weight: 900;
}

.ranking-row:nth-child(-n + 3) .ranking-number {
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
}

.ranking-row img {
    width: 70px;
    height: 92px;
    object-fit: cover;
    border-radius: 12px;
}

.ranking-title {
    overflow: hidden;
    color: var(--slate-800);
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-meta {
    color: var(--slate-500);
    font-size: 0.9rem;
}

.detail-top {
    padding: 40px 0 50px;
    color: var(--white);
    background:
        radial-gradient(circle at 86% 0%, rgba(245, 158, 11, 0.32), transparent 28%),
        linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

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

.player-panel {
    padding: 12px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

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

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 12px;
    color: var(--white);
    border: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.50), rgba(2, 6, 23, 0.16));
    cursor: pointer;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.play-circle {
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    color: var(--slate-950);
    background: linear-gradient(135deg, #fbbf24, var(--orange-500));
    border-radius: 999px;
    box-shadow: 0 20px 45px rgba(245, 158, 11, 0.34);
    font-size: 2rem;
}

.detail-card {
    overflow: hidden;
    border-radius: 24px;
}

.detail-card img {
    aspect-ratio: 2 / 3;
}

.detail-card-body {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.detail-card-body p {
    margin: 0;
    color: var(--slate-600);
    font-weight: 700;
}

.score-pill {
    width: fit-content;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
}

.detail-article {
    max-width: 920px;
    padding: 0 0 8px;
}

.detail-article h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.detail-article .lead {
    margin-top: 14px;
    font-size: 1.15rem;
}

.detail-tags span {
    color: var(--slate-800);
    background: #fef3c7;
}

.info-strip {
    margin: 24px 0;
}

.info-strip span {
    color: var(--slate-700);
    background: var(--slate-100);
}

.detail-article h2 {
    margin: 30px 0 10px;
    color: var(--slate-800);
    font-size: 1.55rem;
}

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

.site-footer {
    margin-top: 76px;
    color: rgba(255, 255, 255, 0.76);
    background: var(--slate-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr);
    gap: 34px;
    padding: 44px 0;
}

.footer-brand {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 900;
}

.footer-grid h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 1rem;
}

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

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

.footer-bottom {
    padding: 18px 0;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

@media (max-width: 1024px) {
    .hero-content,
    .detail-grid,
    .overview-panel {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        display: none;
    }

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

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

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

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

    .nav-toggle {
        display: block;
    }

    .hero-slider {
        min-height: 620px;
        height: auto;
    }

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

    .hero-content {
        padding: 52px 0 74px;
    }

    .quick-search,
    .filter-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .quick-search {
        display: grid;
    }

    .filter-row {
        display: grid;
    }

    .filter-row.compact {
        justify-content: stretch;
    }

    .filter-input,
    .filter-select,
    .outline-button {
        width: 100%;
    }

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

    .poster-grid,
    .catalog-grid,
    .related-grid,
    .overview-posters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .landscape-grid,
    .trend-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-section,
    .warm-block {
        padding: 22px;
        border-radius: 26px;
    }

    .ranking-row {
        grid-template-columns: 46px 58px minmax(0, 1fr);
    }

    .ranking-row img {
        width: 58px;
        height: 76px;
    }

    .ranking-meta {
        grid-column: 3;
    }

    .detail-card {
        max-width: 280px;
    }

    .page-hero,
    .detail-top {
        padding: 44px 0;
    }
}

@media (max-width: 460px) {
    .site-container {
        width: min(100% - 22px, 1180px);
    }

    .poster-grid,
    .catalog-grid,
    .related-grid,
    .overview-posters {
        gap: 12px;
    }

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

    .movie-card h3 {
        font-size: 0.92rem;
    }

    .card-summary {
        display: none;
    }
}
