:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1e3a8a;
    --color-accent: #f97316;
    --color-accent-dark: #ea580c;
    --color-bg: #f7f9fc;
    --color-surface: #ffffff;
    --color-text: #111827;
    --color-muted: #667085;
    --color-border: #e5e7eb;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.08);
    --radius-xl: 26px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--color-primary-dark);
    letter-spacing: -0.02em;
}

.brand-text {
    white-space: nowrap;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-accent), #fb923c);
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.36);
    font-size: 13px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-link,
.mobile-link {
    padding: 9px 13px;
    border-radius: 999px;
    color: #475467;
    font-weight: 650;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: var(--color-primary);
    background: #eff6ff;
}

.header-search {
    display: flex;
    align-items: center;
    min-width: 270px;
    padding: 4px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #ffffff;
}

.header-search input,
.hero-search input,
.page-search input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--color-text);
    background: transparent;
}

.header-search input {
    padding: 9px 12px;
}

.header-search button,
.hero-search button,
.page-search button,
.filter-bar button {
    border: 0;
    color: #ffffff;
    background: var(--color-accent);
    border-radius: 999px;
    padding: 9px 16px;
    font-weight: 750;
    transition: transform 0.2s ease, background 0.2s ease;
}

.header-search button:hover,
.hero-search button:hover,
.page-search button:hover,
.filter-bar button:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    border: 0;
    color: var(--color-primary-dark);
    background: #eff6ff;
    border-radius: 12px;
    padding: 9px 12px;
    font-size: 20px;
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--color-border);
    background: #ffffff;
}

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

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

.mobile-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 8px;
}

.mobile-cats a {
    padding: 8px 10px;
    color: var(--color-muted);
    background: #f3f4f6;
    border-radius: 999px;
    font-size: 14px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #1e3a8a, #2563eb 55%, #0f172a);
}

.hero-slides {
    position: relative;
    min-height: 660px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.65s ease, visibility 0.65s ease;
    background-image: linear-gradient(110deg, rgba(12, 28, 74, 0.94), rgba(37, 99, 235, 0.72), rgba(15, 23, 42, 0.86)), var(--hero-image);
    background-size: cover;
    background-position: center;
}

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

.hero-shade {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 16% 20%, rgba(249, 115, 22, 0.32), transparent 30%), radial-gradient(circle at 86% 72%, rgba(96, 165, 250, 0.34), transparent 30%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 54px;
    min-height: 660px;
    padding: 88px 0 148px;
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #bfdbfe;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1,
.detail-card h1 {
    margin: 0;
    font-size: clamp(38px, 7vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.hero-copy p,
.page-hero p,
.detail-card p {
    max-width: 680px;
    margin: 20px 0 0;
    color: #dbeafe;
    font-size: clamp(17px, 2vw, 22px);
}

.hero-tags,
.detail-tags,
.card-tags,
.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.hero-tags span,
.detail-tags span,
.card-tags span,
.footer-tags span {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 850;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    color: #ffffff;
    background: var(--color-accent);
    box-shadow: 0 16px 34px rgba(249, 115, 22, 0.34);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
}

.btn-secondary {
    color: var(--color-primary-dark);
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(255, 255, 255, 0.18);
}

.hero-poster {
    display: block;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.1);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.36);
    backdrop-filter: blur(8px);
    font-size: 34px;
    line-height: 1;
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
}

.hero-dot.is-active {
    width: 28px;
    background: #ffffff;
}

.hero-search-panel {
    position: relative;
    z-index: 5;
    margin-top: -92px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
}

.hero-search,
.page-search {
    display: flex;
    gap: 10px;
}

.hero-search input,
.page-search input {
    padding: 15px 16px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: #ffffff;
}

.hero-search button,
.page-search button {
    padding: 0 24px;
    border-radius: 16px;
    white-space: nowrap;
}

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

.hero-category-links a {
    padding: 8px 12px;
    color: var(--color-primary-dark);
    background: #eff6ff;
    border-radius: 999px;
    font-weight: 750;
    font-size: 14px;
}

.stats-section {
    padding: 58px 0 26px;
}

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

.stat-card {
    padding: 24px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.stat-card strong {
    display: block;
    color: var(--color-primary);
    font-size: 34px;
    line-height: 1;
}

.stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--color-muted);
    font-weight: 650;
}

.content-section {
    padding: 72px 0;
}

.soft-bg {
    background: #ffffff;
}

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

.section-heading span {
    color: var(--color-accent);
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.section-heading p {
    margin: 10px 0 0;
    color: var(--color-muted);
}

.section-heading a {
    color: var(--color-primary);
    font-weight: 800;
}

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

.category-tile {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: 24px;
    padding: 24px;
    color: #ffffff;
    background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.84)), var(--tile-image);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.category-tile span {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 92px;
    font-size: 24px;
    font-weight: 850;
}

.category-tile p {
    position: relative;
    z-index: 1;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

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

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

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

.movie-card a {
    display: block;
    overflow: hidden;
    height: 100%;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.poster-wrap {
    position: relative;
    overflow: hidden;
    background: #dbeafe;
}

.poster-wrap img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.poster-play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(249, 115, 22, 0.94);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.35);
}

.rank-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    padding: 0 9px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-accent), #facc15);
    font-weight: 900;
}

.movie-info {
    padding: 16px;
}

.meta-line,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 700;
}

.meta-line span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #f3f4f6;
    padding: 3px 8px;
}

.movie-info h3,
.movie-info h2 {
    margin: 12px 0 8px;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.movie-info p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
}

.card-tags {
    margin-top: 12px;
}

.card-tags span {
    color: var(--color-primary);
    background: #eff6ff;
}

.page-main {
    background: var(--color-bg);
}

.page-hero {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    padding: 72px 0 78px;
}

.compact-hero h1,
.category-hero h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

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

.category-card-large a {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    height: 100%;
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card-large a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.category-preview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    overflow: hidden;
    border-radius: 18px;
}

.category-preview img {
    width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    background: #dbeafe;
}

.category-card-large h2 {
    margin: 0 0 10px;
    font-size: 26px;
    letter-spacing: -0.03em;
}

.category-card-large p {
    margin: 0 0 14px;
    color: var(--color-muted);
}

.category-card-large span {
    color: var(--color-primary);
    font-weight: 850;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: #dbeafe;
    font-weight: 700;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px auto;
    gap: 12px;
    margin-bottom: 28px;
    padding: 16px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.filter-bar input,
.filter-bar select {
    padding: 13px 14px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: #ffffff;
}

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

.rank-row a {
    display: grid;
    grid-template-columns: 58px 92px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.rank-number {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--color-primary);
    font-weight: 900;
}

.rank-row img {
    width: 92px;
    height: 124px;
    object-fit: cover;
    border-radius: 14px;
    background: #dbeafe;
}

.rank-row h2 {
    margin: 0 0 6px;
    font-size: 21px;
}

.rank-row p {
    margin: 0 0 10px;
    color: var(--color-muted);
}

.detail-main {
    background: var(--color-bg);
}

.detail-hero {
    padding: 48px 0 70px;
    color: #ffffff;
    background: radial-gradient(circle at 12% 20%, rgba(249, 115, 22, 0.28), transparent 28%), linear-gradient(135deg, #0f172a, #1e3a8a 58%, #111827);
}

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

.player-panel,
.detail-card,
.detail-text-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.player-panel {
    padding: 16px;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #000000;
    aspect-ratio: 16 / 9;
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 0;
    border: 0;
    color: #ffffff;
    background: #0f172a;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
    filter: blur(1px);
}

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

.play-ring {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border: 2px solid rgba(255, 255, 255, 0.88);
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.92);
    box-shadow: 0 24px 60px rgba(249, 115, 22, 0.45);
    font-size: 30px;
}

.detail-card {
    display: grid;
    gap: 18px;
    padding: 18px;
}

.detail-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 20px;
    background: #dbeafe;
}

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

.detail-card p {
    color: #dbeafe;
    font-size: 16px;
}

.detail-meta {
    margin-top: 16px;
}

.detail-tags {
    margin-top: 14px;
}

.detail-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.detail-content-section {
    padding-bottom: 22px;
}

.detail-text-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 22px;
}

.detail-text-card {
    padding: 28px;
    color: var(--color-text);
    background: #ffffff;
    border: 1px solid var(--color-border);
}

.detail-text-card h2 {
    margin: 0 0 12px;
    font-size: 26px;
    letter-spacing: -0.03em;
}

.detail-text-card p {
    margin: 0;
    color: #344054;
    font-size: 17px;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 48px;
    border-radius: 24px;
    background: #ffffff;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.empty-state h2 {
    margin: 0 0 8px;
}

.empty-state p {
    margin: 0;
    color: var(--color-muted);
}

.site-footer {
    color: #d1d5db;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
    padding: 54px 0;
}

.footer-brand {
    color: #ffffff;
    font-size: 20px;
}

.site-footer p {
    margin: 16px 0 0;
    color: #9ca3af;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 18px;
}

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

.site-footer a:hover {
    color: #fb923c;
}

.footer-tags span {
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    padding: 18px 0;
    color: #9ca3af;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[hidden] {
    display: none !important;
}

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

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

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

    .hero-poster {
        max-width: 280px;
        margin: 0 auto;
    }

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

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

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

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

    .category-list-grid,
    .detail-text-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-arrow {
        display: none;
    }
}

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

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

    .hero-inner {
        padding: 64px 0 150px;
    }

    .hero-copy h1,
    .hero-copy h2,
    .page-hero h1 {
        font-size: 36px;
    }

    .hero-search,
    .page-search,
    .filter-bar {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero-search button,
    .page-search button {
        min-height: 48px;
    }

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

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

    .rank-row img {
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 3;
    }

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

    .section-heading {
        display: block;
    }

    .section-heading a {
        display: inline-block;
        margin-top: 14px;
    }

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

@media (max-width: 460px) {
    .stats-grid,
    .category-grid,
    .movie-grid,
    .ranking-strip,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .movie-card a {
        display: grid;
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .poster-wrap img {
        height: 100%;
        aspect-ratio: auto;
    }

    .hero-search-panel {
        margin-top: -76px;
        padding: 14px;
    }
}
