:root {
    --bg: #020617;
    --panel: #0f172a;
    --panel-soft: rgba(15, 23, 42, 0.76);
    --panel-strong: #111827;
    --line: rgba(148, 163, 184, 0.16);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --accent: #f59e0b;
    --accent-deep: #d97706;
    --danger: #ef4444;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    --radius: 18px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(245, 158, 11, 0.13), transparent 28rem), var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(2, 6, 23, 0.94));
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.82);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    backdrop-filter: blur(16px);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

.nav-wrap {
    width: min(100% - 32px, var(--container));
    height: 66px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

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

.brand-mark,
.footer-brand span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    color: white;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.32);
    font-size: 15px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 20px;
    letter-spacing: 0.01em;
}

.brand-text small {
    margin-top: 4px;
    color: rgba(245, 158, 11, 0.86);
    font-size: 12px;
}

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

.nav-link,
.mobile-link {
    color: var(--muted-strong);
    border-radius: 12px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
    padding: 10px 15px;
}

.nav-link:hover,
.mobile-link:hover,
.nav-link.is-active,
.mobile-link.is-active {
    color: #fff;
    background: rgba(245, 158, 11, 0.95);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(30, 41, 59, 0.9);
    color: white;
}

.mobile-nav {
    display: none;
    width: min(100% - 32px, var(--container));
    margin: 0 auto 14px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid var(--line);
}

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

.site-main {
    min-height: 70vh;
}

.page-top {
    padding-top: 66px;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.78) 45%, rgba(2, 6, 23, 0.25) 100%), linear-gradient(90deg, rgba(2, 6, 23, 0.82), transparent 62%);
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100vw - var(--container)) / 2));
    bottom: 84px;
    width: min(640px, calc(100vw - 48px));
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 16px 0 16px;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero-content p {
    margin: 0 0 22px;
    color: var(--muted-strong);
    font-size: 18px;
    line-height: 1.8;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(30, 41, 59, 0.74);
    color: var(--accent);
    font-size: 12px;
    line-height: 1;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.primary-btn,
.ghost-btn,
.search-box button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 13px;
    padding: 0 22px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-btn,
.search-box button {
    border: 1px solid rgba(245, 158, 11, 0.8);
    background: var(--accent);
    color: white;
    box-shadow: 0 16px 40px rgba(245, 158, 11, 0.24);
}

.ghost-btn {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(15, 23, 42, 0.5);
    color: white;
    backdrop-filter: blur(14px);
}

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

.primary-btn:hover,
.search-box button:hover {
    background: var(--accent-deep);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.48);
    color: white;
    font-size: 34px;
    line-height: 1;
    backdrop-filter: blur(10px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.72);
    transform: translateY(-50%) scale(1.06);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

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

.hero-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--accent);
}

.section {
    padding: 56px 0 0;
}

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

.section-head.compact {
    margin-bottom: 18px;
}

.section-head h2,
.page-hero h1,
.related-panel h2,
.info-panel h1 {
    margin: 6px 0 0;
    letter-spacing: -0.03em;
}

.section-head h2 {
    font-size: clamp(28px, 4vw, 38px);
}

.section-more {
    color: var(--accent);
    font-weight: 700;
}

.movie-grid {
    display: grid;
    gap: 22px;
}

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

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

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

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.66);
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: 0 10px 38px rgba(0, 0, 0, 0.2);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.movie-card-link:hover {
    transform: translateY(-6px) scale(1.015);
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(245, 158, 11, 0.36);
    box-shadow: var(--shadow);
}

.movie-poster {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #0f172a;
}

.movie-card-small .movie-poster {
    aspect-ratio: 16 / 10;
}

.movie-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 62%);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.movie-card-link:hover .movie-poster::after {
    opacity: 1;
}

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

.movie-card-link:hover .movie-poster img,
.feature-card:hover img,
.mini-card:hover img,
.related-card:hover img,
.rank-item a:hover img {
    transform: scale(1.08);
}

.movie-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--accent);
    color: white;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.movie-year {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    padding: 5px 8px;
    border-radius: 8px;
    background: rgba(245, 158, 11, 0.94);
    color: white;
    font-size: 12px;
    font-weight: 700;
}

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

.movie-card-body h3 {
    margin: 0 0 9px;
    color: white;
    font-size: 17px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card-link:hover h3 {
    color: var(--accent);
}

.movie-card-body p {
    min-height: 44px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.58;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feature-band {
    margin-top: 56px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.82));
    box-shadow: var(--shadow);
}

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

.feature-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border-radius: 20px;
    background: #111827;
}

.feature-card img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    transition: transform 0.32s ease;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.16));
}

.feature-card span {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
}

.feature-card strong,
.feature-card em {
    display: block;
}

.feature-card strong {
    margin-bottom: 8px;
    font-size: 20px;
}

.feature-card em {
    color: var(--muted-strong);
    font-style: normal;
    line-height: 1.6;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 30px;
}

.horizontal-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 280px;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 4px 18px;
    scrollbar-width: thin;
}

.rank-panel,
.related-panel,
.info-panel,
.category-overview-card,
.page-hero,
.search-box {
    border: 1px solid var(--line);
    background: var(--panel-soft);
    backdrop-filter: blur(16px);
}

.rank-panel {
    padding: 22px;
    border-radius: 22px;
    align-self: start;
    position: sticky;
    top: 86px;
}

.ranking-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.rank-item a {
    display: grid;
    grid-template-columns: 38px 76px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.62);
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item a:hover {
    transform: translateX(4px);
    background: rgba(30, 41, 59, 0.95);
}

.rank-num {
    color: var(--accent);
    font-weight: 900;
    font-size: 18px;
    text-align: center;
}

.rank-item img {
    width: 76px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.rank-info {
    min-width: 0;
}

.rank-info strong,
.rank-info em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info strong {
    color: white;
    font-size: 14px;
}

.rank-info em {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

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

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

.category-card,
.category-overview-card > a {
    display: block;
    min-height: 160px;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.94), rgba(30, 41, 59, 0.74));
    border: 1px solid rgba(148, 163, 184, 0.12);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.category-overview-card > a:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.38);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.category-card strong,
.category-card span,
.category-overview-card strong,
.category-overview-card span {
    display: block;
}

.category-card strong,
.category-overview-card strong {
    margin-bottom: 12px;
    color: white;
    font-size: 19px;
}

.category-card span,
.category-overview-card span {
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

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

.category-overview-card {
    padding: 18px;
    border-radius: 24px;
}

.category-samples {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

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

.mini-card {
    position: relative;
    min-height: 150px;
    overflow: hidden;
    border-radius: 18px;
    background: #0f172a;
}

.mini-card img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.mini-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
}

.mini-card span {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    color: white;
    font-weight: 700;
    line-height: 1.35;
}

.page-hero {
    padding: 54px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.82));
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
}

.page-hero p {
    max-width: 720px;
    margin: 16px 0 0;
    color: var(--muted-strong);
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 14px;
}

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

.breadcrumb strong {
    color: var(--muted-strong);
    font-weight: 600;
}

.search-box {
    display: flex;
    gap: 12px;
    max-width: 680px;
    margin-top: 24px;
    padding: 10px;
    border-radius: 18px;
}

.search-box input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    border-radius: 12px;
    padding: 0 16px;
    background: rgba(2, 6, 23, 0.66);
    color: white;
}

.search-box button {
    border: 0;
}

.search-empty {
    margin: 0 0 24px;
    color: var(--muted-strong);
    text-align: center;
}

.detail-container {
    padding-top: 34px;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: black;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.player-shell video,
.player-cover,
.player-cover img {
    width: 100%;
    height: 100%;
}

.player-shell video {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: black;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 0;
    padding: 0;
    background: #020617;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover img {
    object-fit: cover;
    opacity: 0.72;
}

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.16));
}

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

.big-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--accent);
    color: white;
    font-size: 34px;
    box-shadow: 0 18px 50px rgba(245, 158, 11, 0.35);
    transform: translate(-50%, -50%);
}

.info-panel,
.related-panel {
    margin-top: 22px;
    border-radius: 24px;
    padding: 24px;
}

.info-panel h1 {
    font-size: clamp(28px, 4vw, 42px);
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
    color: var(--muted-strong);
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(30, 41, 59, 0.78);
}

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

.text-block {
    border-top: 1px solid var(--line);
    padding-top: 22px;
    margin-top: 22px;
}

.text-block h2 {
    margin: 0 0 12px;
    font-size: 22px;
}

.text-block p {
    margin: 0;
    color: var(--muted-strong);
    line-height: 1.92;
}

.related-panel {
    position: sticky;
    top: 88px;
    margin-top: 0;
}

.related-panel h2 {
    margin-bottom: 16px;
    font-size: 24px;
}

.related-list {
    display: grid;
    gap: 12px;
}

.related-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.56);
    transition: background 0.2s ease, transform 0.2s ease;
}

.related-card:hover {
    background: rgba(30, 41, 59, 0.92);
    transform: translateX(4px);
}

.related-card img {
    width: 118px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.25s ease;
}

.related-card strong,
.related-card em {
    display: block;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.related-card strong {
    -webkit-line-clamp: 2;
    color: white;
    line-height: 1.45;
}

.related-card em {
    margin-top: 5px;
    -webkit-line-clamp: 2;
    color: var(--muted);
    font-style: normal;
    font-size: 12px;
    line-height: 1.5;
}

.site-footer {
    margin-top: 72px;
    border-top: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.82);
}

.footer-inner {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 1fr 1fr;
    gap: 34px;
}

.footer-brand {
    font-size: 18px;
    font-weight: 800;
}

.footer-about p {
    max-width: 460px;
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-links h2 {
    margin: 0 0 6px;
    font-size: 16px;
}

.footer-links a {
    color: var(--muted);
    font-size: 14px;
}

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

.footer-bottom {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 18px 0 26px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 1100px) {
    .three-col,
    .four-col,
    .category-grid,
    .mini-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .split-section,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .rank-panel,
    .related-panel {
        position: static;
    }
}

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

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

    .mobile-nav.is-open {
        display: block;
    }

    .brand-text small {
        display: none;
    }

    .hero {
        height: 76vh;
        min-height: 560px;
    }

    .hero-content {
        bottom: 72px;
    }

    .hero-arrow {
        display: none;
    }

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

    .three-col,
    .four-col,
    .feature-grid,
    .category-grid,
    .category-overview,
    .category-samples,
    .mini-grid,
    .ranking-wide,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .feature-band {
        padding: 22px;
    }

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

    .search-box input {
        min-height: 46px;
    }
}

@media (max-width: 540px) {
    .container,
    .nav-wrap,
    .mobile-nav,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 24px, var(--container));
    }

    .brand-text strong {
        font-size: 17px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .movie-grid {
        gap: 16px;
    }

    .horizontal-list {
        grid-auto-columns: 240px;
    }

    .rank-item a {
        grid-template-columns: 32px 72px minmax(0, 1fr);
    }

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

    .related-card img {
        width: 96px;
        height: 62px;
    }

    .info-panel,
    .related-panel {
        padding: 18px;
    }
}
