:root {
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --blue-50: #eff6ff;
    --cyan-50: #ecfeff;
    --yellow-300: #fde047;
    --orange-500: #f97316;
    --pink-600: #db2777;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.14), 0 8px 10px -6px rgb(0 0 0 / 0.12);
    --radius-lg: 18px;
    --radius-xl: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(135deg, var(--blue-50), var(--cyan-50));
    color: var(--gray-900);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
    font: inherit;
}

.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(--green-600), var(--emerald-700));
    box-shadow: var(--shadow-md);
}

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

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--emerald-800);
    background: var(--yellow-300);
    box-shadow: 0 12px 28px rgb(0 0 0 / 0.18);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a,
.mobile-menu a,
.category-strip a {
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a {
    padding: 8px 10px;
    border-radius: 999px;
    font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--yellow-300);
    background: rgb(255 255 255 / 0.14);
}

.mobile-menu-button {
    display: none;
    color: var(--white);
    border: 0;
    border-radius: 12px;
    padding: 8px 12px;
    background: rgb(255 255 255 / 0.16);
}

.mobile-menu {
    display: none;
    border-top: 1px solid rgb(255 255 255 / 0.18);
    background: var(--emerald-800);
}

.mobile-menu.open {
    display: grid;
    gap: 8px;
    padding: 14px 20px 18px;
}

.mobile-menu a {
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 700;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--yellow-300);
    background: rgb(255 255 255 / 0.12);
}

.category-strip {
    border-top: 1px solid rgb(255 255 255 / 0.16);
    background: rgb(6 95 70 / 0.42);
}

.category-strip-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-strip-inner::-webkit-scrollbar {
    display: none;
}

.category-strip a {
    flex: 0 0 auto;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.15);
    font-size: 14px;
    white-space: nowrap;
}

.category-strip a:hover {
    color: var(--yellow-300);
    transform: translateY(-1px);
}

.hero-shell {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at 15% 18%, rgb(253 224 71 / 0.30), transparent 28%), linear-gradient(135deg, #064e3b, #16a34a 48%, #06b6d4);
}

.hero-glow {
    position: absolute;
    inset: auto -160px -260px auto;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgb(253 224 71 / 0.28);
    filter: blur(35px);
}

.hero-slider {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 520px;
    margin: 0 auto;
    padding: 76px 0 28px;
}

.hero-slide {
    position: absolute;
    inset: 76px 0 28px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.62fr);
    gap: 42px;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    color: #064e3b;
    background: var(--yellow-300);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 820px;
    margin: 0 0 14px;
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.hero-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.16;
}

.hero-copy p {
    max-width: 720px;
    margin: 0;
    color: rgb(255 255 255 / 0.90);
    font-size: 18px;
    line-height: 1.8;
}

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

.hero-actions {
    margin-top: 30px;
}

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

.primary-button {
    color: #064e3b;
    background: var(--yellow-300);
    box-shadow: 0 18px 36px rgb(0 0 0 / 0.18);
}

.secondary-button {
    color: var(--white);
    background: rgb(255 255 255 / 0.18);
    border: 1px solid rgb(255 255 255 / 0.28);
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.hero-poster {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.24);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgb(255 255 255 / 0.22), rgb(255 255 255 / 0.05));
    box-shadow: 0 30px 70px rgb(0 0 0 / 0.22);
}

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

.hero-poster img.is-hidden,
.poster-frame img.is-hidden,
.rank-thumb img.is-hidden,
.category-cover img.is-hidden,
.detail-cover img.is-hidden,
.hero-mini-list img.is-hidden {
    opacity: 0;
}

.hero-poster span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--white);
    background: rgb(17 24 39 / 0.72);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 800;
}

.hero-dots {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.35);
}

.hero-dot.active {
    background: var(--yellow-300);
}

.hero-mini-list {
    position: relative;
    z-index: 3;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.hero-mini-list a {
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgb(255 255 255 / 0.16);
    border-radius: 16px;
    background: rgb(255 255 255 / 0.14);
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-mini-list a:hover {
    transform: translateY(-3px);
    background: rgb(255 255 255 / 0.22);
}

.hero-mini-list img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--green-600), var(--emerald-700));
}

.hero-mini-list span {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 720px;
    margin: 8px 0 0;
    color: var(--gray-500);
    line-height: 1.8;
}

.section-heading > a {
    flex: 0 0 auto;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--green-700);
    background: var(--green-100);
    font-weight: 800;
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgb(229 231 235 / 0.92);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    border-color: rgb(34 197 94 / 0.42);
    box-shadow: var(--shadow-xl);
}

.poster-frame {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 2.8;
    background: radial-gradient(circle at 20% 15%, rgb(253 224 71 / 0.55), transparent 26%), linear-gradient(135deg, var(--green-600), var(--emerald-700));
}

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

.movie-card:hover .poster-frame img {
    transform: scale(1.06);
}

.poster-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--white);
    background: rgb(17 24 39 / 0.72);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

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

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--gray-500);
    font-size: 12px;
}

.movie-meta-line a,
.movie-meta-line span {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
}

.movie-meta-line a {
    color: var(--green-700);
    font-weight: 800;
}

.movie-card h3,
.rank-info h3 {
    margin: 9px 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.movie-card h3 a:hover,
.rank-info h3 a:hover,
.category-overview-card h2 a:hover {
    color: var(--green-700);
}

.movie-card p,
.rank-info p,
.category-overview-card p {
    margin: 0;
    color: var(--gray-500);
    line-height: 1.7;
}

.movie-card p {
    min-height: 54px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row {
    margin-top: 14px;
}

.tag-row span {
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--pink-600);
    background: #fce7f3;
    font-size: 12px;
    font-weight: 700;
}

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

.category-card {
    min-height: 190px;
    padding: 24px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background: linear-gradient(135deg, var(--green-600), var(--emerald-700));
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card span {
    display: inline-flex;
    margin-bottom: 26px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #064e3b;
    background: var(--yellow-300);
    font-weight: 800;
}

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

.category-card p,
.category-card small {
    color: rgb(255 255 255 / 0.86);
    line-height: 1.7;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 64px 96px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.rank-number {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #064e3b;
    background: var(--yellow-300);
    font-weight: 900;
}

.rank-thumb {
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--green-600), var(--emerald-700));
}

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

.rank-info h3 {
    margin-top: 0;
}

.page-hero {
    padding: 82px 0;
    color: var(--white);
    background: radial-gradient(circle at 85% 15%, rgb(253 224 71 / 0.22), transparent 25%), linear-gradient(135deg, #064e3b, var(--green-600), #0891b2);
}

.page-hero h1 {
    max-width: 860px;
    margin: 0 0 18px;
    font-size: clamp(34px, 6vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgb(255 255 255 / 0.90);
    font-size: 18px;
    line-height: 1.8;
}

.category-overview-grid {
    display: grid;
    gap: 22px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.category-cover {
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--green-600), var(--emerald-700));
}

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

.category-overview-card span {
    color: var(--green-700);
    font-weight: 900;
}

.category-overview-card h2 {
    margin: 6px 0 8px;
    font-size: 28px;
}

.category-sample-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.category-sample-links a {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--green-700);
    background: var(--green-100);
    font-size: 13px;
    font-weight: 700;
}

.filter-panel {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.filter-panel label {
    flex: 1 1 auto;
    display: grid;
    gap: 8px;
    color: var(--gray-700);
    font-weight: 800;
}

.filter-panel input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    padding: 0 18px;
    color: var(--gray-900);
    background: var(--gray-50);
    outline: none;
}

.filter-panel input:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 4px rgb(34 197 94 / 0.12);
}

.filter-count {
    flex: 0 0 auto;
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(90deg, var(--green-600), var(--emerald-700));
    font-weight: 900;
}

.detail-hero {
    padding: 54px 0 40px;
    color: var(--white);
    background: radial-gradient(circle at 80% 20%, rgb(253 224 71 / 0.24), transparent 24%), linear-gradient(135deg, #052e25, #047857 52%, #0891b2);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.detail-cover {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--green-600), var(--emerald-700));
    box-shadow: 0 30px 70px rgb(0 0 0 / 0.28);
}

.detail-cover img {
    width: 100%;
    aspect-ratio: 2 / 2.8;
    object-fit: cover;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgb(255 255 255 / 0.78);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--yellow-300);
}

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

.detail-copy p {
    max-width: 820px;
    margin: 0 0 22px;
    color: rgb(255 255 255 / 0.88);
    font-size: 18px;
    line-height: 1.8;
}

.detail-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.16);
    font-weight: 800;
}

.detail-tags span {
    color: #064e3b;
    background: var(--yellow-300);
}

.player-section {
    margin-top: -28px;
    position: relative;
    z-index: 3;
}

.movie-player {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #030712;
    box-shadow: 0 30px 70px rgb(0 0 0 / 0.26);
    aspect-ratio: 16 / 9;
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    gap: 16px;
    color: var(--white);
    border: 0;
    background: linear-gradient(180deg, rgb(3 7 18 / 0.28), rgb(3 7 18 / 0.74));
    cursor: pointer;
}

.movie-player.is-active .player-overlay {
    display: none;
}

.play-symbol {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #064e3b;
    background: var(--yellow-300);
    font-size: 34px;
    box-shadow: 0 22px 44px rgb(0 0 0 / 0.24);
}

.player-overlay strong {
    max-width: min(80%, 760px);
    text-align: center;
    font-size: clamp(20px, 3.4vw, 38px);
    line-height: 1.2;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 26px;
    padding: 48px 0 10px;
}

.detail-article,
.detail-sidebar {
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.detail-article {
    padding: 28px;
}

.detail-article h2,
.detail-sidebar h2 {
    margin: 0 0 16px;
    font-size: 26px;
}

.detail-article p {
    margin: 0 0 24px;
    color: var(--gray-700);
    font-size: 17px;
    line-height: 1.95;
}

.detail-sidebar {
    height: fit-content;
    padding: 24px;
}

.detail-sidebar dl {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px 14px;
    margin: 0;
}

.detail-sidebar dt {
    color: var(--gray-500);
    font-weight: 800;
}

.detail-sidebar dd {
    margin: 0;
    color: var(--gray-900);
    line-height: 1.6;
}

.site-footer {
    margin-top: 34px;
    color: var(--white);
    background: linear-gradient(135deg, #052e25, var(--emerald-800));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 36px;
    padding: 48px 0;
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 22px;
}

.site-footer p {
    margin: 0;
    color: rgb(255 255 255 / 0.76);
    line-height: 1.8;
}

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

.footer-links a {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.12);
}

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

.footer-bottom {
    padding: 18px 16px;
    border-top: 1px solid rgb(255 255 255 / 0.14);
    text-align: center;
    color: rgb(255 255 255 / 0.68);
}

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

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

    .hero-slide,
    .detail-layout,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

    .hero-shell {
        min-height: 940px;
    }

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

    .hero-poster img {
        min-height: 360px;
    }

    .hero-mini-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .site-logo {
        font-size: 18px;
    }

    .mobile-menu-button {
        display: inline-flex;
    }

    .nav-links {
        display: none;
    }

    .category-strip-inner {
        width: calc(100% - 24px);
    }

    .hero-shell {
        min-height: 940px;
    }

    .hero-slider {
        min-height: 700px;
        padding-top: 42px;
    }

    .hero-slide {
        inset: 42px 0 36px;
        gap: 24px;
    }

    .hero-copy p,
    .page-hero p,
    .detail-copy p {
        font-size: 16px;
    }

    .hero-mini-list,
    .movie-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading,
    .filter-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .category-overview-card,
    .rank-row {
        grid-template-columns: 1fr;
    }

    .rank-number {
        width: 46px;
        height: 46px;
    }

    .rank-thumb {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .detail-cover {
        max-width: 320px;
    }

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

@media (max-width: 520px) {
    .container,
    .site-nav,
    .hero-slider,
    .hero-mini-list {
        width: min(100% - 22px, 1180px);
    }

    .hero-shell {
        min-height: 1040px;
    }

    .hero-mini-list,
    .movie-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .movie-card p {
        min-height: auto;
    }

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

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