:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-strong: rgba(15, 23, 42, 0.92);
    --line: rgba(148, 163, 184, 0.18);
    --text: #e2e8f0;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --cyan: #22d3ee;
    --blue: #3b82f6;
    --purple: #a855f7;
    --pink: #ec4899;
    --amber: #f59e0b;
    --radius: 22px;
    --shadow: 0 24px 80px rgba(2, 6, 23, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 5%, rgba(34, 211, 238, 0.12), transparent 32rem),
        radial-gradient(circle at 85% 10%, rgba(59, 130, 246, 0.14), transparent 34rem),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    background: rgba(2, 6, 23, 0.94);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    backdrop-filter: blur(18px);
    transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(2, 6, 23, 0.82);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: white;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(34, 211, 238, 0.28);
    transform: translateZ(0);
    transition: transform 220ms ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(-4deg);
}

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

.brand-text strong,
.footer-brand {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

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

.nav-link {
    color: var(--soft);
    font-weight: 700;
    transition: color 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--cyan);
}

.header-search,
.mobile-search,
.hero-search,
.filter-panel {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-search input,
.mobile-search input,
.hero-search input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    color: var(--text);
    background: rgba(15, 23, 42, 0.76);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    outline: none;
    padding: 12px 14px;
    transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-search input {
    width: 220px;
    padding-right: 12px;
}

.header-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(34, 211, 238, 0.7);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
    background: rgba(15, 23, 42, 0.95);
}

.header-search button,
.mobile-search button,
.hero-search button,
.primary-button,
.small-button {
    border: 0;
    color: white;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border-radius: 14px;
    padding: 12px 18px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(34, 211, 238, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-search button:hover,
.mobile-search button:hover,
.hero-search button:hover,
.primary-button:hover,
.small-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(34, 211, 238, 0.32);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    color: var(--text);
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
    font-size: 22px;
}

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(15, 23, 42, 0.98);
}

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

.mobile-nav {
    display: grid;
    gap: 10px;
    padding-top: 18px;
    padding-bottom: 20px;
}

.mobile-nav-link {
    display: block;
    color: var(--soft);
    padding: 10px 0;
    font-weight: 700;
}

.home-hero {
    position: relative;
    padding: 116px 0 54px;
    overflow: hidden;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.hero-background-glow {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.86)),
        radial-gradient(circle at 28% 25%, rgba(34, 211, 238, 0.18), transparent 26rem),
        radial-gradient(circle at 78% 38%, rgba(168, 85, 247, 0.14), transparent 24rem);
}

.hero-shell {
    position: relative;
    z-index: 1;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 390px;
    align-items: center;
    gap: 52px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: -40px -28px;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.44)),
        var(--hero-image) center / cover no-repeat;
    opacity: 0.22;
    filter: blur(18px) saturate(1.2);
    border-radius: 34px;
}

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

.hero-copy,
.hero-poster {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.24);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-copy h1,
.page-title-block h1,
.detail-copy h1 {
    margin: 18px 0 14px;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, #e0faff, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(26px, 4vw, 48px);
}

.hero-copy p,
.page-title-block p,
.detail-copy p {
    margin: 0;
    max-width: 720px;
    color: var(--soft);
    font-size: 18px;
    line-height: 1.8;
}

.hero-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.hero-meta span,
.detail-meta span,
.tag-row span {
    color: var(--soft);
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 999px;
    padding: 8px 11px;
    font-size: 13px;
    font-weight: 700;
}

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

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    padding: 12px 18px;
    font-weight: 800;
    transition: border 180ms ease, transform 180ms ease, color 180ms ease;
}

.ghost-button:hover {
    color: var(--cyan);
    border-color: rgba(34, 211, 238, 0.5);
    transform: translateY(-2px);
}

.hero-poster {
    min-height: 520px;
    padding: 16px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.22), rgba(59, 130, 246, 0.08)),
        rgba(15, 23, 42, 0.86);
    border: 1px solid rgba(34, 211, 238, 0.28);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-poster img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
}

.hero-poster span {
    display: block;
    margin-top: 14px;
    color: var(--cyan);
    font-weight: 900;
    text-align: center;
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 18px 0 22px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.32);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.hero-search {
    max-width: 760px;
    margin: 0 auto;
    padding: 10px;
    background: rgba(15, 23, 42, 0.66);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 22px;
    backdrop-filter: blur(16px);
}

.hero-category-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.hero-category-links a {
    color: var(--soft);
    background: rgba(15, 23, 42, 0.58);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 700;
}

.page-main,
.detail-main {
    padding-top: 104px;
}

.page-section {
    margin-top: 54px;
}

.page-title-block {
    padding: 64px 0 24px;
}

.page-title-block h1 {
    font-size: clamp(40px, 5vw, 68px);
}

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

.section-heading div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-heading span {
    color: var(--cyan);
    font-size: 24px;
}

.section-heading h2 {
    margin: 0;
    color: white;
    font-size: clamp(24px, 3vw, 34px);
}

.section-more {
    color: var(--cyan);
    font-weight: 800;
}

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

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

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

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

.movie-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--panel);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: transform 220ms ease, border 220ms ease, box-shadow 220ms ease;
}

.movie-link:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.48);
    box-shadow: 0 22px 56px rgba(34, 211, 238, 0.12);
}

.movie-card-large .movie-link {
    display: grid;
    grid-template-columns: 42% 1fr;
}

.poster-media {
    position: relative;
    min-height: 310px;
    background:
        radial-gradient(circle at 50% 20%, rgba(34, 211, 238, 0.18), transparent 14rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96));
    overflow: hidden;
}

.movie-card-large .poster-media {
    min-height: 100%;
}

.poster-media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 520ms ease;
}

.movie-link:hover .poster-media img {
    transform: scale(1.08);
}

.poster-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(2, 6, 23, 0.86));
}

.type-badge,
.year-badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    color: var(--cyan);
    background: rgba(2, 6, 23, 0.78);
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: 10px;
    padding: 6px 9px;
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.type-badge {
    left: 14px;
}

.year-badge {
    right: 14px;
    color: var(--soft);
    border-color: rgba(148, 163, 184, 0.2);
}

.movie-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px;
}

.movie-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.movie-card h3 {
    margin: 10px 0 8px;
    color: white;
    font-size: 20px;
    line-height: 1.32;
}

.movie-card p {
    flex: 1;
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.68;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

.category-card a,
.category-overview-card a {
    display: block;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(59, 130, 246, 0.06)), var(--panel);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform 180ms ease, border 180ms ease;
}

.category-card a:hover,
.category-overview-card a:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.45);
}

.category-card span,
.category-overview-card h2 {
    color: white;
    font-size: 24px;
    font-weight: 900;
}

.category-card strong,
.category-overview-card strong {
    display: block;
    margin: 12px 0;
    color: var(--cyan);
}

.category-card p,
.category-overview-card p {
    color: var(--muted);
    line-height: 1.72;
}

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

.category-samples span {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
}

.category-overview-card a {
    display: grid;
    grid-template-columns: 148px 1fr;
    gap: 20px;
    align-items: center;
}

.category-cover-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.category-cover-stack img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.9);
}

.filter-panel {
    flex-wrap: wrap;
    margin: 0 0 24px;
    padding: 14px;
    background: rgba(15, 23, 42, 0.66);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
}

.filter-panel input {
    flex: 2 1 260px;
}

.filter-panel select {
    flex: 1 1 150px;
}

.filter-count {
    color: var(--cyan);
    font-weight: 800;
    padding: 0 8px;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 58px 82px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: var(--panel);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
}

.rank-number {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--soft);
    background: rgba(15, 23, 42, 0.9);
    border-radius: 14px;
    font-weight: 900;
}

.rank-number.top-rank {
    color: white;
    background: linear-gradient(135deg, var(--amber), var(--pink));
}

.ranking-cover {
    display: block;
    width: 82px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 14px;
}

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

.ranking-main a {
    color: white;
    font-size: 18px;
    font-weight: 900;
}

.ranking-main p {
    margin: 6px 0;
    color: var(--muted);
    line-height: 1.58;
}

.ranking-main div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
}

.small-button {
    padding: 10px 14px;
    font-size: 14px;
}

.detail-hero {
    position: relative;
    min-height: 620px;
    padding: 92px 0 62px;
    overflow: hidden;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.56)),
        var(--detail-image) center / cover no-repeat;
    filter: blur(10px) saturate(1.08);
    transform: scale(1.06);
    opacity: 0.56;
}

.detail-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 46px;
    align-items: center;
}

.detail-poster {
    min-height: 460px;
    padding: 14px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(34, 211, 238, 0.22);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.detail-poster img {
    width: 100%;
    height: 100%;
    min-height: 432px;
    object-fit: cover;
    border-radius: 20px;
}

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

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

.detail-copy h1 {
    font-size: clamp(42px, 5vw, 72px);
}

.detail-tags {
    margin-top: 0;
}

.player-section {
    margin-top: 46px;
}

.player-box {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 15%, rgba(34, 211, 238, 0.1), transparent 28rem),
        #000;
    border: 1px solid rgba(34, 211, 238, 0.22);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.movie-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 12px;
    color: white;
    border: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.14), rgba(2, 6, 23, 0.72));
    cursor: pointer;
}

.player-start span {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border-radius: 50%;
    box-shadow: 0 18px 48px rgba(34, 211, 238, 0.3);
    font-size: 28px;
}

.player-start strong {
    font-size: 18px;
}

.player-box.is-playing .player-start {
    display: none;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    margin-top: 34px;
}

.content-panel,
.side-panel {
    background: var(--panel);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius);
    padding: 28px;
}

.content-panel h2,
.side-panel h2 {
    margin: 0 0 16px;
    color: white;
    font-size: 26px;
}

.content-panel p {
    margin: 0 0 26px;
    color: var(--soft);
    font-size: 17px;
    line-height: 1.9;
}

.side-panel dl {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    margin: 0;
}

.side-panel dt {
    color: var(--muted);
}

.side-panel dd {
    margin: 0;
    color: var(--text);
    font-weight: 700;
}

.side-panel a {
    color: var(--cyan);
}

.movie-card-compact .poster-media {
    min-height: 230px;
}

.movie-card-compact h3 {
    font-size: 18px;
}

.site-footer {
    margin-top: 76px;
    padding: 46px 0 22px;
    background: rgba(2, 6, 23, 0.86);
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 32px;
}

.site-footer p {
    max-width: 560px;
    color: var(--muted);
    line-height: 1.75;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: white;
    font-size: 18px;
}

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

.footer-links a {
    color: var(--muted);
    transition: color 180ms ease;
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 32px auto 0;
    padding-top: 22px;
    color: var(--muted);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    text-align: center;
}

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

@media (max-width: 1024px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

    .hero-poster {
        min-height: auto;
        max-width: 420px;
    }

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

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

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

    .detail-poster {
        max-width: 340px;
    }
}

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

    .header-inner {
        min-height: 66px;
    }

    .brand-text small {
        display: none;
    }

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

    .home-hero {
        padding-top: 92px;
    }

    .hero-slider {
        min-height: 840px;
    }

    .hero-copy h1,
    .page-title-block h1,
    .detail-copy h1 {
        font-size: 38px;
    }

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

    .hero-search,
    .filter-panel {
        display: grid;
    }

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

    .movie-grid,
    .featured-grid,
    .related-grid,
    .category-grid,
    .category-overview-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .movie-card-large .movie-link,
    .category-overview-card a {
        grid-template-columns: 1fr;
    }

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

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

    .ranking-row .small-button {
        grid-column: 2 / -1;
        width: fit-content;
    }

    .ranking-cover {
        width: 68px;
    }

    .detail-hero {
        padding-top: 72px;
    }

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