:root {
    --color-blue: #2563eb;
    --color-blue-deep: #1e3a8a;
    --color-orange: #f97316;
    --color-orange-deep: #ea580c;
    --color-text: #111827;
    --color-muted: #6b7280;
    --color-soft: #f8fafc;
    --color-border: #e5e7eb;
    --shadow-card: 0 18px 40px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 12px 28px rgba(37, 99, 235, 0.18);
    --radius-large: 24px;
    --radius-card: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
    background: linear-gradient(180deg, #f8fafc 0%, #eef4ff 36%, #ffffff 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.nav-container {
    width: min(var(--container), calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--color-blue);
}

.logo-mark {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-orange));
    box-shadow: var(--shadow-soft);
}

.logo-text {
    font-size: 24px;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--color-blue), var(--color-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.nav-link {
    position: relative;
    color: #374151;
    font-weight: 650;
    transition: color 0.22s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    border-radius: 999px;
    background: var(--color-blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.site-search {
    position: relative;
    display: flex;
    align-items: center;
    width: min(320px, 32vw);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #ffffff;
    overflow: visible;
}

.site-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 11px 12px 11px 18px;
    border-radius: 999px 0 0 999px;
    color: #111827;
    background: transparent;
}

.site-search button {
    border: 0;
    color: #ffffff;
    background: var(--color-orange);
    padding: 10px 16px;
    border-radius: 999px;
    margin-right: 3px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.site-search button:hover {
    background: var(--color-orange-deep);
    transform: translateY(-1px);
}

.search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 80;
    display: none;
    max-height: 380px;
    overflow: auto;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.search-results.open {
    display: block;
}

.search-result-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.search-result-item:last-child {
    border-bottom: 0;
}

.search-result-thumb {
    width: 48px;
    height: 64px;
    border-radius: 10px;
    background: linear-gradient(135deg, #dbeafe, #fed7aa);
    object-fit: cover;
}

.search-result-title {
    display: block;
    font-weight: 750;
    color: #111827;
    line-height: 1.35;
}

.search-result-meta {
    display: block;
    margin-top: 3px;
    color: var(--color-muted);
    font-size: 12px;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #eff6ff;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--color-blue);
    border-radius: 999px;
}

.hero-carousel {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #172554 100%);
}

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

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

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

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: blur(22px) saturate(1.15);
    transform: scale(1.08);
    opacity: 0.23;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 24%, rgba(249, 115, 22, 0.34), transparent 28%),
        linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(30, 64, 175, 0.82) 52%, rgba(15, 23, 42, 0.94));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(var(--container), calc(100% - 32px));
    min-height: 680px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    align-items: center;
    gap: 64px;
    padding: 72px 0 120px;
}

.hero-kicker,
.detail-kicker,
.page-hero span,
.section-heading span,
.ranking-panel-head span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: #ffedd5;
    background: rgba(249, 115, 22, 0.18);
    border: 1px solid rgba(253, 186, 116, 0.42);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 750;
}

.hero-copy h1 {
    max-width: 820px;
    margin: 20px 0 22px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.hero-copy p {
    max-width: 760px;
    margin: 0 0 24px;
    color: #dbeafe;
    font-size: clamp(18px, 2vw, 24px);
}

.hero-tags,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.tag-list span {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #1e3a8a;
    background: #dbeafe;
}

.hero-actions,
.detail-actions,
.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.primary-button,
.ghost-button,
.text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 14px;
    padding: 0 22px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #ffffff;
    background: var(--color-orange);
    box-shadow: 0 16px 32px rgba(249, 115, 22, 0.35);
}

.primary-button:hover {
    background: var(--color-orange-deep);
    transform: translateY(-2px) scale(1.01);
}

.ghost-button {
    color: #1d4ed8;
    background: rgba(255, 255, 255, 0.92);
}

.ghost-button.dark {
    color: var(--color-blue);
    background: #eff6ff;
}

.ghost-button:hover,
.text-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.hero-poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(249, 115, 22, 0.2));
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.42);
}

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

.hero-poster span,
.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #ffffff;
    background: rgba(249, 115, 22, 0.92);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.3);
}

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

.hero-dots button {
    width: 36px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.active {
    width: 58px;
    background: #ffffff;
}

.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 3;
    color: #f8fafc;
}

.hero-wave path {
    fill: currentColor;
}

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

.section-heading {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.left-heading {
    margin-left: 0;
    text-align: left;
}

.section-heading span {
    margin-bottom: 12px;
    color: var(--color-orange-deep);
    background: #fff7ed;
    border-color: #fed7aa;
}

.section-heading h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.section-heading p {
    margin: 12px 0 0;
    color: var(--color-muted);
    font-size: 17px;
}

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

.category-chip,
.category-card-large {
    display: flex;
    min-height: 132px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 20px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-chip:hover,
.category-card-large:hover {
    border-color: rgba(37, 99, 235, 0.42);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.category-chip span,
.category-card-title {
    color: #0f172a;
    font-size: 20px;
    font-weight: 850;
}

.category-chip small,
.category-card-large p {
    color: var(--color-muted);
    font-size: 14px;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-card);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    border-color: rgba(37, 99, 235, 0.35);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.poster-frame {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 20%, rgba(249, 115, 22, 0.34), transparent 32%),
        linear-gradient(135deg, #dbeafe, #eff6ff 48%, #fed7aa);
}

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

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

.poster-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(15, 23, 42, 0.62));
}

.poster-play {
    z-index: 2;
    width: 48px;
    height: 48px;
    opacity: 0;
    transform: translate(-50%, -44%) scale(0.92);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    min-height: 28px;
    padding: 0 10px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #dc2626);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
    box-shadow: 0 8px 18px rgba(220, 38, 38, 0.24);
}

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

.movie-card-title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 48px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-card-title:hover {
    color: var(--color-blue);
}

.movie-card-meta {
    margin: 8px 0;
    color: var(--color-muted);
    font-size: 13px;
}

.movie-card-desc {
    display: -webkit-box;
    overflow: hidden;
    min-height: 46px;
    margin: 0 0 12px;
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-card-compact {
    display: grid;
    grid-template-columns: 96px 1fr;
}

.movie-card-compact .poster-frame {
    min-height: 144px;
}

.movie-card-compact .movie-card-title {
    min-height: auto;
    font-size: 16px;
}

.movie-card-compact .movie-card-desc {
    min-height: auto;
    font-size: 13px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

.ranking-panel {
    position: sticky;
    top: 96px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    padding: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.ranking-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ranking-panel-head a,
.text-button {
    color: var(--color-blue);
    font-weight: 800;
}

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

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 78% 18%, rgba(249, 115, 22, 0.25), transparent 26%),
        linear-gradient(135deg, #2563eb, #1d4ed8 52%, #172554);
}

.page-hero > div {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 88px 0 92px;
}

.compact-page-hero > div {
    padding-bottom: 72px;
}

.page-hero h1,
.detail-copy h1 {
    margin: 18px 0 14px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.page-hero p,
.detail-one-line {
    max-width: 760px;
    margin: 0;
    color: #dbeafe;
    font-size: 19px;
}

.filter-panel {
    margin-bottom: 28px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.filter-row {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.6fr) minmax(160px, 0.7fr) auto;
    gap: 14px;
    align-items: end;
}

.filter-row label {
    display: grid;
    gap: 6px;
    color: #334155;
    font-size: 14px;
    font-weight: 750;
}

.filter-row input,
.filter-row select {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    outline: 0;
    padding: 12px 14px;
    color: #111827;
    background: #ffffff;
}

.filter-row input:focus,
.filter-row select:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.filter-row button {
    min-height: 48px;
    border: 0;
    border-radius: 12px;
    padding: 0 18px;
    color: #ffffff;
    background: var(--color-blue);
    font-weight: 800;
}

.empty-state {
    display: none;
    margin: 32px 0 0;
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-card);
    padding: 24px;
    color: var(--color-muted);
    background: #ffffff;
    text-align: center;
}

.empty-state.show {
    display: block;
}

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

.category-preview-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.category-preview-links a {
    display: inline-flex;
    max-width: 100%;
    overflow: hidden;
    padding: 7px 10px;
    color: var(--color-blue);
    background: #eff6ff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 46px;
    align-items: center;
    padding: 76px max(16px, calc((100% - var(--container)) / 2)) 84px;
}

.large-poster {
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.42);
}

.detail-copy {
    position: relative;
    z-index: 2;
}

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

.breadcrumb a:hover {
    color: #ffffff;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-large);
    background: #020617;
    box-shadow: var(--shadow-card);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.35), rgba(2, 6, 23, 0.82));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--color-orange);
    box-shadow: 0 16px 38px rgba(249, 115, 22, 0.42);
}

.play-overlay strong {
    font-size: 20px;
}

.player-shell.ready .play-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.player-status {
    position: absolute;
    left: 16px;
    bottom: 14px;
    margin: 0;
    color: #bfdbfe;
    font-size: 13px;
}

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

.detail-article,
.detail-meta-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    padding: 28px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.detail-article h2,
.detail-meta-card h2 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 24px;
}

.detail-article p {
    margin: 0 0 26px;
    color: #334155;
    font-size: 17px;
}

.detail-article p:last-child {
    margin-bottom: 0;
}

.detail-meta-card table {
    width: 100%;
    border-collapse: collapse;
}

.detail-meta-card th,
.detail-meta-card td {
    border-bottom: 1px solid #eef2f7;
    padding: 12px 0;
    vertical-align: top;
    text-align: left;
}

.detail-meta-card th {
    width: 82px;
    color: var(--color-muted);
    font-weight: 750;
}

.detail-meta-card td {
    color: #0f172a;
    font-weight: 650;
}

.site-footer {
    margin-top: 84px;
    color: #cbd5e1;
    background: #0f172a;
}

.footer-inner {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 30px;
    align-items: center;
    padding: 38px 0;
}

.footer-logo {
    color: #ffffff;
    font-size: 22px;
}

.footer-inner p {
    max-width: 640px;
    margin: 8px 0 0;
    color: #94a3b8;
}

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

.footer-links a:hover {
    color: #ffffff;
}

.back-to-top {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 10px 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.back-to-top:hover {
    background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 1120px) {
    .nav-container {
        grid-template-columns: auto auto;
    }

    .mobile-menu-button {
        display: block;
        justify-self: end;
    }

    .nav-links {
        display: none;
        grid-column: 1 / -1;
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 12px 0 4px;
    }

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

    .site-search {
        grid-column: 1 / -1;
        width: 100%;
        margin-bottom: 14px;
    }

    .hero-content {
        grid-template-columns: 1fr 280px;
        gap: 36px;
    }

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

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

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

    .ranking-panel {
        position: static;
    }
}

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

    .logo-text {
        font-size: 20px;
    }

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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 48px 0 118px;
    }

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

    .hero-actions,
    .detail-actions,
    .page-hero-actions {
        flex-direction: column;
    }

    .category-chip-grid,
    .category-overview-grid,
    .movie-grid,
    .compact-grid {
        grid-template-columns: 1fr;
    }

    .movie-card-compact {
        grid-template-columns: 92px 1fr;
    }

    .filter-row {
        grid-template-columns: 1fr;
    }

    .page-hero > div {
        padding: 62px 0 68px;
    }

    .detail-hero {
        grid-template-columns: 1fr;
        padding-top: 48px;
    }

    .detail-poster {
        width: min(280px, 86vw);
        margin: 0 auto;
    }

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