:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --teal-700: #0f766e;
    --cyan-800: #155e75;
    --cyan-600: #0891b2;
    --orange-500: #f97316;
    --rose-500: #f43f5e;
    --blue-600: #2563eb;
    --gray-950: #030712;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 22px 50px rgba(15, 23, 42, 0.18);
    --radius-lg: 18px;
    --radius-xl: 24px;
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--gray-900);
    background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

img {
    height: auto;
}

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

button,
input,
select {
    font: inherit;
}

button {
    border: 0;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--white);
    background: linear-gradient(90deg, var(--emerald-800), var(--teal-700), var(--cyan-800));
    box-shadow: var(--shadow-md);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.brand-subtitle {
    margin-top: 2px;
    font-size: 12px;
    color: #d1fae5;
}

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

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

.nav-links a:hover {
    color: #d1fae5;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
}

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

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

.mobile-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 12px;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: var(--gray-950);
}

.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-media {
    position: absolute;
    inset: 0;
}

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

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 32%, rgba(16, 185, 129, 0.16), transparent 38%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.20));
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 70px 0;
}

.hero-panel {
    max-width: 690px;
    color: var(--white);
}

.hero-pill,
.section-kicker,
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.hero-pill {
    padding: 7px 16px;
    margin-bottom: 18px;
    background: var(--emerald-500);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.32);
}

.hero h1 {
    margin: 0 0 16px;
    font-size: clamp(38px, 7vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-summary {
    max-width: 660px;
    margin: 0 0 24px;
    color: #e5e7eb;
    font-size: clamp(17px, 2.2vw, 22px);
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 0 0 26px;
    color: #e5e7eb;
    font-size: 14px;
}

.meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

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

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

.btn-primary {
    color: var(--white);
    background: var(--emerald-500);
    box-shadow: 0 18px 38px rgba(16, 185, 129, 0.30);
}

.btn-primary:hover {
    background: var(--emerald-600);
}

.btn-soft {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.20);
}

.btn-soft:hover {
    background: rgba(255, 255, 255, 0.22);
}

.hero-dots {
    position: absolute;
    z-index: 3;
    left: max(16px, calc((100% - 1280px) / 2));
    bottom: 32px;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 38px;
    height: 6px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
}

.hero-dot.is-active {
    background: var(--emerald-500);
}

.stats-band {
    padding: 44px 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

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

.stat-card {
    padding: 26px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 34px;
    line-height: 1;
}

.stat-card span {
    color: var(--gray-600);
}

.stat-emerald {
    background: linear-gradient(135deg, #ecfdf5, #ccfbf1);
}

.stat-emerald strong {
    color: var(--emerald-600);
}

.stat-blue {
    background: linear-gradient(135deg, #eff6ff, #cffafe);
}

.stat-blue strong {
    color: var(--blue-600);
}

.stat-amber {
    background: linear-gradient(135deg, #fffbeb, #ffedd5);
}

.stat-amber strong {
    color: #d97706;
}

.stat-rose {
    background: linear-gradient(135deg, #fff1f2, #fce7f3);
}

.stat-rose strong {
    color: var(--rose-500);
}

.section {
    padding: 68px 0;
}

.section-alt {
    background: var(--gray-50);
}

.section-dark {
    color: var(--white);
    background: linear-gradient(90deg, var(--emerald-900), #115e59, var(--cyan-800));
}

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

.section-kicker {
    padding: 6px 13px;
    margin-bottom: 10px;
    color: var(--emerald-700);
    background: #d1fae5;
}

.section-dark .section-kicker {
    color: #d1fae5;
    background: rgba(255, 255, 255, 0.12);
}

.section-title {
    margin: 0 0 6px;
    font-size: clamp(28px, 3.8vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-desc {
    margin: 0;
    color: var(--gray-600);
}

.section-dark .section-desc {
    color: #d1fae5;
}

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

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

.movie-card a {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #064e3b);
}

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

.movie-card a:hover .poster-wrap img {
    transform: scale(1.08);
    filter: saturate(1.05);
}

.poster-shade {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0);
    transition: background 0.2s ease;
}

.movie-card a:hover .poster-shade {
    background: rgba(0, 0, 0, 0.30);
}

.play-bubble {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: var(--white);
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.88);
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card a:hover .play-bubble {
    opacity: 1;
    transform: scale(1);
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    max-width: calc(100% - 20px);
    padding: 4px 8px;
    color: var(--white);
    border-radius: 7px;
    background: rgba(0, 0, 0, 0.68);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.region-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    padding: 4px 8px;
    color: var(--white);
    border-radius: 7px;
    background: var(--emerald-500);
    font-size: 12px;
    font-weight: 800;
}

.card-body {
    padding: 14px;
}

.card-title {
    display: -webkit-box;
    min-height: 42px;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--gray-900);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

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

.card-summary {
    display: -webkit-box;
    min-height: 40px;
    margin: 0 0 10px;
    overflow: hidden;
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--gray-500);
    font-size: 12px;
}

.card-meta span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.category-tile {
    position: relative;
    min-height: 178px;
    overflow: hidden;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
    transition: transform 0.22s ease, background 0.22s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.17);
}

.category-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.26), transparent 42%);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.category-tile:hover::before {
    opacity: 1;
}

.category-icon {
    position: relative;
    margin-bottom: 16px;
    font-size: 40px;
}

.category-tile h3,
.category-tile p {
    position: relative;
    margin: 0;
}

.category-tile h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.category-tile p {
    color: #d1fae5;
    font-size: 14px;
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 152px minmax(0, 1fr);
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ranking-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.ranking-cover {
    position: relative;
    min-height: 210px;
    overflow: hidden;
}

.ranking-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ranking-card:hover .ranking-cover img {
    transform: scale(1.06);
}

.rank-num {
    position: absolute;
    left: 10px;
    top: 10px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--white);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange-500), #dc2626);
    font-weight: 900;
}

.ranking-body {
    min-width: 0;
    padding: 18px;
}

.ranking-body h3 {
    display: -webkit-box;
    margin: 0 0 10px;
    overflow: hidden;
    color: var(--gray-900);
    font-size: 19px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ranking-body p {
    display: -webkit-box;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--gray-600);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.page-hero {
    color: var(--white);
    background: linear-gradient(90deg, var(--emerald-800), var(--teal-700), var(--cyan-800));
    padding: 66px 0;
}

.page-hero h1 {
    max-width: 900px;
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: #d1fae5;
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #d1fae5;
    font-size: 14px;
}

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

.filter-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    color: var(--gray-900);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    background: var(--gray-50);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.empty-state {
    display: none;
    padding: 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--gray-600);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.empty-state.is-visible {
    display: block;
}

.detail-shell {
    background: var(--gray-50);
}

.player-section {
    color: var(--white);
    background: var(--gray-950);
    padding: 34px 0 46px;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #000;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.player-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52));
    cursor: pointer;
}

.player-overlay.is-hidden {
    display: none;
}

.player-start {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.92);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
    font-weight: 900;
}

.player-start-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    color: var(--emerald-600);
    background: var(--white);
}

.player-aside {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}

.player-aside img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.player-aside-body {
    padding: 18px;
}

.player-aside-body h2 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.3;
}

.player-aside-body p {
    margin: 0;
    color: #d1d5db;
    font-size: 14px;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    padding: 46px 0 68px;
}

.detail-main,
.detail-side {
    min-width: 0;
}

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

.content-card + .content-card {
    margin-top: 24px;
}

.content-card h2 {
    margin: 0 0 16px;
    font-size: 26px;
    letter-spacing: -0.02em;
}

.content-card p {
    margin: 0;
    color: var(--gray-700);
}

.content-card p + p {
    margin-top: 14px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.tag {
    padding: 7px 12px;
    color: var(--emerald-700);
    background: #d1fae5;
}

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

.side-item {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.side-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.side-item img {
    width: 84px;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    object-fit: cover;
}

.side-item strong {
    display: -webkit-box;
    margin: 4px 0 6px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.side-item span {
    color: var(--gray-500);
    font-size: 12px;
}

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

.site-footer {
    color: var(--gray-300);
    background: var(--gray-900);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 32px;
    padding: 42px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--white);
    font-size: 20px;
    font-weight: 900;
}

.footer-grid p {
    margin: 0;
    color: #9ca3af;
    font-size: 14px;
}

.footer-grid h3 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 16px;
}

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

.footer-grid a {
    color: #9ca3af;
    transition: color 0.2s ease;
}

.footer-grid a:hover {
    color: #34d399;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #9ca3af;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 1180px) {
    .movie-grid,
    .related-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

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

    .player-aside {
        display: grid;
        grid-template-columns: 170px minmax(0, 1fr);
    }

    .player-aside img {
        height: 100%;
    }
}

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

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

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

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

    .ranking-list {
        grid-template-columns: 1fr;
    }

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

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

    .brand-title {
        font-size: 19px;
    }

    .brand-subtitle {
        display: none;
    }

    .hero,
    .hero-inner {
        min-height: 560px;
    }

    .hero-inner {
        padding: 58px 0 76px;
    }

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

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

    .section {
        padding: 52px 0;
    }

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

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

    .ranking-cover {
        min-height: 180px;
    }

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

    .player-section {
        padding: 22px 0 32px;
    }

    .player-shell,
    .content-card {
        border-radius: 18px;
    }

    .player-aside {
        grid-template-columns: 118px minmax(0, 1fr);
        border-radius: 18px;
    }

    .content-card {
        padding: 22px;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 430px) {
    .movie-grid,
    .related-grid {
        gap: 12px;
    }

    .card-body {
        padding: 11px;
    }

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

    .ranking-cover {
        min-height: 158px;
    }

    .ranking-body {
        padding: 13px;
    }
}
