:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-strong: rgba(15, 23, 42, 0.94);
    --border: rgba(245, 158, 11, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --amber: #f59e0b;
    --amber-2: #fbbf24;
    --ring: rgba(245, 158, 11, 0.38);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 20% 0%, rgba(245, 158, 11, 0.14), transparent 30rem),
        radial-gradient(circle at 90% 15%, rgba(59, 130, 246, 0.10), transparent 30rem),
        linear-gradient(180deg, #020617 0%, #0f172a 42%, #020617 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(2, 6, 23, 0.86);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 72px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.site-logo__mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    color: #111827;
    background: linear-gradient(135deg, var(--amber-2), var(--amber));
    box-shadow: 0 12px 34px rgba(245, 158, 11, 0.32);
}

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

.nav-links a {
    border-radius: 999px;
    padding: 9px 14px;
    color: var(--muted-strong);
    font-size: 14px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: #111827;
    background: var(--amber-2);
    transform: translateY(-1px);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 6px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.74);
}

.header-search input,
.search-panel input,
.filter-input {
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
}

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

.header-search input::placeholder,
.search-panel input::placeholder,
.filter-input::placeholder {
    color: #64748b;
}

.header-search button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    cursor: pointer;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-search button,
.button--primary {
    color: #111827;
    background: linear-gradient(135deg, var(--amber-2), var(--amber));
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.25);
}

.button--ghost {
    border: 1px solid rgba(248, 250, 252, 0.2);
    color: #fff;
    background: rgba(15, 23, 42, 0.55);
}

.header-search button:hover,
.button:hover {
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.82);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 99px;
    background: var(--text);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility .6s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide__backdrop {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    filter: saturate(1.08);
}

.hero-slide__backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.08), #020617 98%),
        radial-gradient(circle at 70% 45%, rgba(245, 158, 11, 0.18), transparent 28rem);
}

.hero-slide__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: center;
    gap: 58px;
    min-height: 620px;
    padding: 70px 0 56px;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 7px 12px;
    color: var(--amber-2);
    background: rgba(245, 158, 11, 0.08);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.96;
    letter-spacing: -0.08em;
}

.hero-copy p,
.page-hero p {
    margin: 22px 0 0;
    max-width: 720px;
    color: var(--muted-strong);
    font-size: 18px;
    line-height: 1.8;
}

.hero-tags,
.movie-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-top: 22px;
}

.hero-tags span,
.movie-card__tags span,
.detail-meta span {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--muted-strong);
    background: rgba(15, 23, 42, 0.62);
    font-size: 12px;
}

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

.hero-poster {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.24);
    border-radius: 30px;
    background: rgba(15, 23, 42, 0.7);
    box-shadow: var(--shadow);
    transform: rotate(2deg);
}

.hero-poster::before {
    content: "";
    display: block;
    padding-top: 145%;
}

.hero-poster img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.hero-poster:hover img {
    transform: scale(1.06);
}

.hero-control-row {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: -48px;
    padding-bottom: 34px;
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 38px;
    height: 6px;
    border: 0;
    border-radius: 99px;
    background: rgba(148, 163, 184, 0.38);
    cursor: pointer;
}

.hero-dot.is-active {
    background: var(--amber-2);
}

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

.hero-quick-links a,
.text-link {
    color: var(--amber-2);
    font-weight: 800;
}

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

.section-block--intro {
    padding-top: 20px;
}

.section-heading {
    margin-bottom: 24px;
}

.section-heading--row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.section-heading h2,
.ranking-section h2,
.related-panel h2,
.detail-article h2,
.rank-column h3 {
    margin: 0;
    color: var(--text);
    font-size: clamp(26px, 4vw, 42px);
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 760px;
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

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

.category-card,
.category-showcase {
    position: relative;
    overflow: hidden;
    min-height: 132px;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 20px;
    background:
        linear-gradient(135deg, rgba(245, 158, 11, 0.10), rgba(15, 23, 42, 0.90)),
        var(--panel);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    transition: transform .25s ease, border-color .25s ease;
}

.category-card:hover,
.category-showcase:hover {
    border-color: rgba(245, 158, 11, 0.46);
    transform: translateY(-4px);
}

.category-card span,
.category-showcase strong {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.category-card strong,
.category-showcase em {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    font-style: normal;
    line-height: 1.65;
}

.category-showcase__glow {
    position: absolute;
    right: -30px;
    top: -30px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.2);
    filter: blur(20px);
}

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.movie-card:hover {
    border-color: rgba(245, 158, 11, 0.42);
    background: rgba(15, 23, 42, 0.92);
    transform: translateY(-5px);
}

.movie-card__poster {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: #0f172a;
}

.movie-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease, filter .45s ease;
}

.movie-card:hover .movie-card__poster img {
    transform: scale(1.06);
    filter: brightness(0.92) saturate(1.08);
}

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

.movie-card__play,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.movie-card__play {
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    color: #111827;
    background: var(--amber-2);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
}

.movie-card:hover .movie-card__play {
    opacity: 1;
    transform: translateY(0);
}

.rank-badge {
    left: 12px;
    top: 12px;
    padding: 8px 10px;
    color: #111827;
    background: linear-gradient(135deg, var(--amber-2), var(--amber));
}

.movie-card__body {
    padding: 16px;
}

.movie-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--amber-2);
    font-size: 12px;
    font-weight: 800;
}

.movie-card h3 {
    margin: 10px 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.movie-card h3 a:hover {
    color: var(--amber-2);
}

.movie-card p {
    min-height: 54px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

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

.movie-card--compact p {
    min-height: 46px;
    font-size: 13px;
}

.rank-panel {
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 34px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(15, 23, 42, 0.82));
}

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

.rank-column {
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 24px;
    padding: 18px;
    background: rgba(2, 6, 23, 0.32);
}

.rank-column h3 {
    margin-bottom: 14px;
    font-size: 22px;
}

.mini-item {
    display: grid;
    grid-template-columns: auto 56px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border-radius: 16px;
    padding: 10px;
    transition: background .2s ease, transform .2s ease;
}

.mini-item:hover {
    background: rgba(148, 163, 184, 0.10);
    transform: translateX(2px);
}

.mini-item img {
    width: 56px;
    height: 74px;
    border-radius: 12px;
    object-fit: cover;
}

.mini-item strong,
.mini-item em {
    display: block;
}

.mini-item strong {
    color: #fff;
    line-height: 1.35;
}

.mini-item em {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.mini-rank {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    color: #111827;
    background: var(--amber-2);
    font-size: 12px;
    font-weight: 900;
}

.page-main,
.detail-main {
    padding: 42px 0 60px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 46px;
    background:
        radial-gradient(circle at 85% 20%, rgba(245, 158, 11, 0.22), transparent 20rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.78));
    box-shadow: var(--shadow);
}

.page-hero--category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.page-hero--compact h1,
.page-hero--category h1 {
    font-size: clamp(38px, 6vw, 66px);
}

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

.category-showcase {
    min-height: 150px;
}

.listing-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    padding: 9px 14px;
    color: var(--muted-strong);
    background: rgba(15, 23, 42, 0.66);
    cursor: pointer;
}

.filter-chip.is-active,
.filter-chip:hover {
    color: #111827;
    background: var(--amber-2);
}

.filter-input,
.search-panel {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.4);
}

.filter-input {
    width: min(330px, 100%);
    padding: 13px 18px;
}

.search-panel {
    display: flex;
    gap: 8px;
    width: min(650px, 100%);
    margin-top: 24px;
    padding: 8px;
}

.search-panel input {
    flex: 1;
    padding: 0 14px;
}

.search-status {
    color: var(--amber-2) !important;
    font-weight: 800;
}

.rankings-wrap {
    display: grid;
    gap: 34px;
    margin-top: 34px;
}

.ranking-section {
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 30px;
    padding: 26px;
    background: rgba(15, 23, 42, 0.62);
}

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

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

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

.breadcrumb a::after {
    content: "/";
    margin-left: 10px;
    color: rgba(148, 163, 184, 0.36);
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
    gap: 24px;
    align-items: stretch;
}

.watch-panel,
.detail-card,
.detail-article,
.related-panel {
    border: 1px solid var(--border);
    border-radius: 30px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: var(--shadow);
}

.watch-panel {
    overflow: hidden;
    padding: 14px;
}

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

.video-shell video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #fff;
    background:
        radial-gradient(circle at center, rgba(245, 158, 11, 0.18), transparent 22rem),
        linear-gradient(180deg, rgba(2, 6, 23, 0.30), rgba(2, 6, 23, 0.82));
    cursor: pointer;
    transition: opacity .28s ease, visibility .28s ease;
}

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

.play-ring {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.92);
    box-shadow: 0 0 0 14px rgba(245, 158, 11, 0.13);
}

.play-ring span {
    width: 0;
    height: 0;
    margin-left: 6px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 22px solid #111827;
}

.player-cover strong {
    max-width: min(90%, 720px);
    font-size: clamp(22px, 4vw, 42px);
    line-height: 1.2;
}

.player-cover em {
    color: var(--amber-2);
    font-style: normal;
    font-weight: 900;
}

.detail-card {
    overflow: hidden;
}

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

.detail-card > div {
    padding: 24px;
}

.detail-card h1 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.04em;
}

.detail-card p {
    margin: 0 0 16px;
    color: var(--muted-strong);
    line-height: 1.75;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

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

.detail-article,
.related-panel {
    padding: 28px;
}

.detail-article h2,
.related-panel h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.detail-article h2:not(:first-child) {
    margin-top: 30px;
}

.detail-article p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 17px;
    line-height: 1.9;
}

.info-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.info-list div {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    padding-bottom: 12px;
}

.info-list dt {
    color: var(--amber-2);
    font-weight: 900;
}

.info-list dd {
    margin: 0;
    color: var(--muted-strong);
}

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

.related-panel .mini-item {
    grid-template-columns: 58px minmax(0, 1fr);
}

.related-panel .mini-rank {
    display: none;
}

.hidden-by-filter,
.hidden-by-search {
    display: none !important;
}

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

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

.site-logo--footer {
    margin-bottom: 14px;
}

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

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

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

.footer-links a {
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--muted-strong);
    background: rgba(148, 163, 184, 0.10);
}

.footer-links a:hover {
    color: #111827;
    background: var(--amber-2);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 0;
    color: #64748b;
    font-size: 13px;
}

@media (max-width: 1080px) {
    .movie-grid,
    .movie-grid--home,
    .movie-grid--wide,
    .ranking-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .hero-poster {
        max-width: 300px;
    }

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

@media (max-width: 820px) {
    .nav-shell {
        min-height: 64px;
    }

    .site-logo {
        font-size: 17px;
    }

    .site-logo__mark {
        width: 38px;
        height: 38px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-links {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid rgba(148, 163, 184, 0.16);
        border-radius: 22px;
        padding: 14px;
        background: rgba(2, 6, 23, 0.96);
        box-shadow: var(--shadow);
    }

    body.nav-open .nav-links {
        display: flex;
    }

    .header-search {
        display: none;
    }

    .hero,
    .hero-slider,
    .hero-slide__inner {
        min-height: 640px;
    }

    .hero-slide__inner {
        gap: 28px;
        padding-top: 54px;
    }

    .hero-poster {
        display: none;
    }

    .hero-control-row,
    .section-heading--row,
    .page-hero--category,
    .listing-tools,
    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .category-showcase-grid,
    .category-strip,
    .movie-grid,
    .movie-grid--home,
    .movie-grid--wide,
    .ranking-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-hero,
    .rank-panel,
    .ranking-section,
    .detail-article,
    .related-panel {
        padding: 24px;
        border-radius: 24px;
    }
}

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

    .hero-copy h1,
    .page-hero h1 {
        font-size: 36px;
        letter-spacing: -0.05em;
    }

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

    .hero-actions,
    .search-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .movie-grid,
    .movie-grid--home,
    .movie-grid--wide,
    .ranking-list,
    .category-showcase-grid,
    .category-strip {
        grid-template-columns: 1fr;
    }

    .movie-card {
        display: grid;
        grid-template-columns: 116px minmax(0, 1fr);
        border-radius: 18px;
    }

    .movie-card__poster {
        height: 100%;
        min-height: 170px;
    }

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

    .detail-card img {
        aspect-ratio: 16 / 9;
    }

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