:root {
    --bg: #f7f7fb;
    --panel: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #e5e7eb;
    --orange: #f97316;
    --red: #ef4444;
    --pink: #ec4899;
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #fff7ed 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.96), rgba(239, 68, 68, 0.96), rgba(236, 72, 153, 0.94));
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.24);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    max-width: 1240px;
    min-height: 72px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.logo {
    font-size: 22px;
}

.logo-mark {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: var(--orange);
    background: #ffffff;
    box-shadow: inset 0 0 0 2px rgba(249, 115, 22, 0.12);
}

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

.main-nav a {
    position: relative;
    font-weight: 700;
    opacity: 0.88;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    opacity: 1;
    transform: translateY(-1px);
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 999px;
    background: #ffffff;
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.nav-search input {
    width: 180px;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
    padding: 8px 10px 8px 14px;
}

.nav-search input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.nav-search button,
.primary-btn,
.ghost-btn,
.panel-link {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-search button {
    color: var(--orange);
    background: #ffffff;
    padding: 8px 14px;
}

.primary-btn,
.panel-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--red));
    padding: 14px 24px;
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.26);
}

.primary-btn:hover,
.panel-link:hover,
.nav-search button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 40px rgba(239, 68, 68, 0.28);
}

.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    padding: 14px 24px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(10px);
}

.ghost-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.26);
}

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

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    place-items: center;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px auto;
    border-radius: 999px;
    background: #ffffff;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease, transform 1.2s ease;
    transform: scale(1.015);
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

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

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 7, 18, 0.86) 0%, rgba(17, 24, 39, 0.68) 48%, rgba(17, 24, 39, 0.05) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    color: #ffffff;
}

.hero-content h1,
.hero-content h2 {
    max-width: 720px;
    margin: 18px 0 14px;
    font-size: clamp(38px, 7vw, 70px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.hero-content p {
    max-width: 680px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(16px, 2vw, 21px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--red));
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

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

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

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

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

.section-wrap,
.detail-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 70px 24px;
}

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

.section-heading span {
    display: block;
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 4px 0 0;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.section-heading a {
    color: var(--red);
    font-weight: 900;
}

.compact-heading {
    align-items: start;
    margin-bottom: 20px;
}

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

.category-card,
.overview-card a,
.page-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--red));
}

.category-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card::after,
.overview-card a::after,
.page-hero::after {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -54px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.category-card:hover,
.movie-card:hover,
.compact-card:hover,
.overview-card a:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.category-icon {
    font-size: 38px;
}

.category-card strong {
    display: block;
    font-size: 22px;
    font-weight: 950;
}

.category-card em {
    display: block;
    min-height: 58px;
    color: rgba(255, 255, 255, 0.82);
    font-style: normal;
    font-size: 14px;
}

.mini-links {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 1;
}

.mini-links a {
    max-width: 100%;
    border-radius: 999px;
    padding: 5px 9px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.movie-card {
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--soft-shadow);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card-link {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.poster-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #111827;
}

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

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

.poster-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--red));
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(249, 115, 22, 0.92);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.movie-card-body h3,
.compact-body h3 {
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.35;
    font-size: 18px;
    font-weight: 950;
}

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

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.tag-row span {
    color: #6b3b04;
    background: #fff7ed;
}

.large-tags span {
    font-size: 14px;
    padding: 8px 13px;
}

.two-column-section,
.detail-layout,
.rankings-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 30px;
    align-items: start;
}

.editor-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    gap: 20px;
}

.movie-card-large {
    grid-row: span 2;
}

.movie-card-large .poster-frame {
    aspect-ratio: 4 / 5;
}

.movie-card-small .movie-card-body p,
.movie-card-small .tag-row {
    display: none;
}

.ranking-panel,
.side-card,
.detail-info-card,
.player-card,
.search-panel,
.filter-bar {
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(18px);
}

.ranking-panel,
.side-card {
    padding: 24px;
}

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

.compact-card {
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.compact-card a {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    padding: 10px;
}

.compact-poster {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 3 / 4;
    background: #111827;
}

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

.rank-num {
    position: absolute;
    left: 7px;
    top: 7px;
    display: grid;
    place-items: center;
    min-width: 26px;
    height: 26px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--red));
    font-size: 12px;
    font-weight: 900;
}

.compact-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
}

.compact-body h3 {
    font-size: 15px;
}

.compact-body p {
    font-size: 13px;
    -webkit-line-clamp: 2;
}

.panel-link {
    width: 100%;
    margin-top: 20px;
}

.page-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
}

.slim-hero {
    background: linear-gradient(135deg, #111827, #f97316);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 64px 24px;
}

.page-hero h1 {
    max-width: 760px;
    margin: 18px 0 12px;
    font-size: clamp(36px, 6vw, 58px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 740px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
}

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

.overview-card {
    border-radius: var(--radius);
    overflow: hidden;
}

.overview-card a {
    display: grid;
    grid-template-columns: 1fr 230px;
    gap: 20px;
    min-height: 250px;
    padding: 26px;
}

.overview-copy {
    position: relative;
    z-index: 1;
}

.overview-copy span {
    font-size: 42px;
}

.overview-copy h2 {
    margin: 12px 0 8px;
    font-size: 30px;
    line-height: 1.1;
}

.overview-copy p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.82);
}

.overview-copy strong {
    display: inline-flex;
    border-radius: 999px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.18);
}

.overview-posters {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.overview-posters img {
    width: 100%;
    height: 106px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.filter-bar,
.search-panel {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 18px;
    margin-bottom: 28px;
    padding: 18px;
}

.search-panel {
    grid-template-columns: 1fr 220px 180px;
}

.filter-bar label,
.search-panel label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.filter-bar input,
.filter-bar select,
.search-panel input,
.search-panel select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    outline: none;
    color: var(--text);
    background: #ffffff;
    padding: 13px 14px;
}

.filter-bar input:focus,
.filter-bar select:focus,
.search-panel input:focus,
.search-panel select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.empty-state,
.search-summary {
    color: var(--muted);
    text-align: center;
}

.empty-state {
    display: none;
    margin: 30px 0 0;
}

.empty-state.is-visible {
    display: block;
}

.search-summary {
    margin: 0 0 24px;
    font-weight: 800;
}

.rankings-layout {
    grid-template-columns: 1fr 1fr;
}

.wide-panel {
    grid-column: 1 / -1;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

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

.detail-wrap {
    padding-top: 36px;
}

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

.player-card,
.detail-info-card {
    overflow: hidden;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    background: #000000;
    aspect-ratio: 16 / 9;
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.62) 100%);
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover span {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 22px 50px rgba(239, 68, 68, 0.38);
    font-size: 34px;
    text-indent: 4px;
}

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

.player-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    background: #ffffff;
}

.player-title-row h1 {
    margin: 12px 0 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.detail-info-card {
    margin-top: 22px;
    padding: 28px;
}

.detail-info-card h2,
.side-card h2 {
    margin: 24px 0 10px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 950;
}

.detail-info-card h2:first-of-type,
.side-card h2:first-of-type {
    margin-top: 0;
}

.detail-info-card p {
    margin: 0;
    color: #374151;
    font-size: 16px;
}

.detail-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.detail-meta-line span {
    border-radius: 999px;
    color: #7c2d12;
    background: #fff7ed;
    padding: 7px 11px;
    font-size: 13px;
    font-weight: 900;
}

.side-poster {
    width: 100%;
    border-radius: 18px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    box-shadow: var(--soft-shadow);
}

.side-card dl {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 10px 14px;
    margin: 0;
}

.side-card dt {
    color: var(--muted);
    font-weight: 900;
}

.side-card dd {
    margin: 0;
}

.sticky-side {
    position: sticky;
    top: 98px;
    margin-top: 22px;
}

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

.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 34px 24px;
}

.footer-wrap p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.68);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-weight: 800;
}

.grad-red {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.grad-orange {
    background: linear-gradient(135deg, #f97316, #f59e0b);
}

.grad-purple {
    background: linear-gradient(135deg, #7c3aed, #ef4444);
}

.grad-blue {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.grad-pink {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.grad-green {
    background: linear-gradient(135deg, #10b981, #22c55e);
}

.grad-cyan {
    background: linear-gradient(135deg, #0891b2, #6366f1);
}

.grad-yellow {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.grad-indigo {
    background: linear-gradient(135deg, #4f46e5, #8b5cf6);
}

.grad-dark {
    background: linear-gradient(135deg, #111827, #475569);
}

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

    .two-column-section,
    .detail-layout,
    .rankings-layout {
        grid-template-columns: 1fr;
    }

    .editor-grid,
    .three-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sticky-side {
        position: static;
    }
}

@media (max-width: 860px) {
    .nav-wrap {
        grid-template-columns: auto auto;
        gap: 14px;
        min-height: 64px;
    }

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

    .main-nav {
        position: fixed;
        inset: 64px 14px auto;
        display: grid;
        gap: 8px;
        justify-content: stretch;
        border-radius: 22px;
        color: var(--text);
        background: #ffffff;
        padding: 14px;
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 12px 14px;
        border-radius: 14px;
    }

    .main-nav a.active,
    .main-nav a:hover {
        color: #ffffff;
        background: linear-gradient(135deg, var(--orange), var(--red));
    }

    .main-nav a.active::after {
        display: none;
    }

    .nav-search {
        grid-column: 1 / -1;
        width: 100%;
    }

    .nav-search input {
        flex: 1;
        width: 100%;
    }

    .hero-section {
        height: 560px;
    }

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

    .overview-card a {
        grid-template-columns: 1fr;
    }

    .overview-posters {
        display: none;
    }

    .filter-bar,
    .search-panel {
        grid-template-columns: 1fr;
    }

    .player-title-row,
    .section-heading,
    .footer-wrap {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .nav-wrap,
    .section-wrap,
    .detail-wrap,
    .hero-content,
    .page-hero-inner,
    .footer-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-section {
        height: 620px;
    }

    .hero-content {
        justify-content: flex-end;
        padding-bottom: 86px;
    }

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

    .compact-card a {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .detail-info-card,
    .ranking-panel,
    .side-card,
    .player-title-row {
        padding: 18px;
    }

    .player-cover span {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }
}
