:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: #111827;
    --panel-2: #1e293b;
    --line: #334155;
    --text: #ffffff;
    --muted: #94a3b8;
    --muted-2: #cbd5e1;
    --orange: #f97316;
    --orange-2: #fb923c;
    --red: #dc2626;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), transparent 34rem),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
    color: var(--text);
}

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

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

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: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    box-shadow: 0 12px 34px rgba(249, 115, 22, 0.28);
}

.brand-text,
.footer-brand {
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #fb923c, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link {
    color: #e2e8f0;
    font-weight: 650;
    font-size: 0.96rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

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

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.header-search input,
.filter-bar input,
.filter-bar select {
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.86);
    color: var(--text);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.header-search button,
.btn,
.filter-bar button {
    border: 0;
    border-radius: 12px;
    color: white;
    background: linear-gradient(135deg, var(--orange), var(--red));
    padding: 10px 16px;
    font-weight: 750;
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.24);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.header-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: rgba(249, 115, 22, 0.8);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.13);
}

.header-search button:hover,
.btn:hover,
.filter-bar button:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.86);
    color: var(--text);
    border-radius: 12px;
    padding: 9px 12px;
}

.hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: #020617;
}

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

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

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 38%, rgba(249, 115, 22, 0.2), transparent 22rem),
        linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(15, 23, 42, 0.86) 45%, rgba(15, 23, 42, 0.35) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.36) 42%, rgba(2, 6, 23, 0.12) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 640px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: center;
    gap: 48px;
}

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

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-kicker span,
.eyebrow {
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    padding: 7px 13px;
    font-size: 0.86rem;
    font-weight: 750;
}

.hero-kicker a {
    border-radius: 999px;
    background: rgba(30, 41, 59, 0.72);
    color: #e2e8f0;
    padding: 7px 13px;
    font-size: 0.86rem;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.75rem, 7vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero p {
    margin: 0 0 24px;
    max-width: 650px;
    color: #cbd5e1;
    font-size: 1.12rem;
    line-height: 1.8;
}

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

.hero-tags span,
.tag-list span {
    border-radius: 999px;
    background: rgba(30, 41, 59, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: #cbd5e1;
    padding: 6px 10px;
    font-size: 0.82rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.btn-secondary {
    background: rgba(30, 41, 59, 0.74);
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: none;
}

.hero-poster {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.76);
    box-shadow: var(--shadow);
    transform: rotate(2deg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 74px;
    height: 74px;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    box-shadow: 0 14px 42px rgba(249, 115, 22, 0.36);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.66);
    color: white;
    font-size: 2rem;
    transform: translateY(-50%);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

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

.hero-dot.is-active {
    width: 34px;
    background: linear-gradient(90deg, var(--orange), var(--red));
}

.hero-category-strip {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.hero-category-strip a {
    border-radius: 999px;
    padding: 9px 14px;
    background: rgba(15, 23, 42, 0.76);
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: #e2e8f0;
}

.page-section {
    padding: 64px 0;
}

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

.section-heading h2,
.archive-hero h1,
.detail-card h1 {
    margin: 0;
    color: white;
    font-size: clamp(1.65rem, 4vw, 2.45rem);
    line-height: 1.15;
}

.section-heading p,
.archive-hero p,
.category-overview-head p,
.footer-grid p,
.detail-card p,
.poster-panel p,
.rank-card-body p {
    color: var(--muted-2);
    line-height: 1.75;
}

.section-heading p {
    margin: 8px 0 0;
}

.section-heading a,
.text-link,
.rank-heading a {
    color: var(--orange-2);
    font-weight: 750;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.34);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #0f172a;
}

.poster-link img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

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

.play-badge,
.year-badge,
.rank-number {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 999px;
    font-weight: 800;
}

.play-badge {
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.year-badge {
    left: 10px;
    top: 10px;
    background: rgba(15, 23, 42, 0.76);
    padding: 5px 9px;
    font-size: 0.78rem;
}

.rank-number {
    right: 10px;
    top: 10px;
    min-width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--orange), var(--red));
}

.card-body {
    padding: 16px;
}

.card-title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 2.75em;
    color: white;
    font-size: 1.04rem;
    font-weight: 780;
    line-height: 1.38;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-title:hover {
    color: var(--orange-2);
}

.card-meta {
    margin: 9px 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.5;
}

.card-body p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 12px;
    color: var(--muted-2);
    font-size: 0.92rem;
    line-height: 1.62;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

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

.rank-panel,
.category-overview-card,
.detail-card,
.poster-panel,
.side-panel,
.rank-card {
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: var(--radius);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
}

.rank-panel {
    position: sticky;
    top: 94px;
    padding: 22px;
}

.rank-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.rank-heading h2,
.footer-grid h2,
.detail-card h2,
.poster-panel h2,
.side-panel h2,
.category-overview-head h2 {
    margin: 0;
    color: white;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px 12px;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    background: rgba(30, 41, 59, 0.68);
}

.rank-row span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    font-weight: 800;
}

.rank-row strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-row em {
    grid-column: 2;
    color: var(--muted);
    font-style: normal;
    font-size: 0.84rem;
}

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

.category-tile {
    position: relative;
    min-height: 220px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: #0f172a;
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.44;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.category-tile:hover img {
    transform: scale(1.08);
    opacity: 0.58;
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.9), rgba(15, 23, 42, 0.18));
}

.category-tile span,
.category-tile em {
    position: relative;
    z-index: 2;
}

.category-tile span {
    font-size: 1.25rem;
    font-weight: 850;
}

.category-tile em {
    margin-top: 8px;
    color: var(--muted-2);
    font-style: normal;
    line-height: 1.55;
    font-size: 0.9rem;
}

.archive-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    align-items: end;
    gap: 32px;
    padding: 68px 0 22px;
}

.archive-hero h1 {
    margin-top: 18px;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1fr 160px 160px;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.74);
}

.search-filter {
    grid-template-columns: 1fr 145px 145px 145px;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    padding: 12px 13px;
}

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

.category-overview-card {
    padding: 22px;
}

.category-overview-head {
    margin-bottom: 18px;
}

.category-overview-head h2 {
    font-size: 1.45rem;
}

.small-link-grid,
.small-link-list {
    display: grid;
    gap: 12px;
}

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

.small-link-card {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    background: rgba(30, 41, 59, 0.58);
}

.small-link-card img {
    width: 76px;
    height: 54px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 10px;
}

.small-link-card strong,
.small-link-card em {
    display: block;
}

.small-link-card strong {
    color: white;
    line-height: 1.4;
}

.small-link-card em {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.82rem;
    font-style: normal;
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
}

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

.rank-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
    padding: 16px;
}

.rank-card-poster {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.rank-card-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.rank-card-poster span {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    font-weight: 850;
}

.rank-card-body h2 {
    margin: 0 0 10px;
    font-size: 1.35rem;
}

.detail-layout {
    padding: 34px 0 70px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 0.92rem;
}

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

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: black;
    box-shadow: var(--shadow);
}

.movie-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: black;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(2, 6, 23, 0.35);
    transition: opacity 0.25s ease;
}

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

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

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.22));
}

.player-cover button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 0;
    border-radius: 999px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    font-weight: 850;
    box-shadow: 0 16px 44px rgba(249, 115, 22, 0.36);
}

.player-cover button span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.detail-card {
    margin-top: 24px;
    padding: 24px;
}

.detail-card h1 {
    margin-bottom: 14px;
}

.detail-card h2 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.28rem;
}

.detail-card p {
    margin: 0 0 12px;
}

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

.detail-meta span {
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(30, 41, 59, 0.76);
    color: #e2e8f0;
    font-size: 0.88rem;
}

.detail-tags {
    margin-bottom: 18px;
}

.detail-sidebar {
    position: sticky;
    top: 94px;
    display: grid;
    gap: 18px;
}

.poster-panel,
.side-panel {
    padding: 20px;
}

.poster-panel img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 16px;
}

.poster-panel h2,
.side-panel h2 {
    margin-bottom: 12px;
}

.poster-panel .btn {
    width: 100%;
    margin-top: 10px;
}

.empty-state {
    margin-top: 28px;
    padding: 28px;
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.86);
    text-align: center;
    color: var(--muted-2);
}

.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), #020617);
    color: var(--muted-2);
}

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

.footer-grid h2 {
    margin-bottom: 14px;
    font-size: 1rem;
}

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

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 30px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    color: #64748b;
    font-size: 0.92rem;
}

[hidden] {
    display: none !important;
}

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

    .nav-toggle {
        display: inline-flex;
    }

    .site-header.is-open .site-nav,
    .site-header.is-open .header-search {
        display: flex;
    }

    .site-header.is-open .header-inner {
        align-items: stretch;
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .site-header.is-open .site-nav,
    .site-header.is-open .header-search {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .site-header.is-open .header-search input,
    .site-header.is-open .header-search button {
        width: 100%;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 34px;
        padding-bottom: 120px;
    }

    .hero-poster {
        display: none;
    }

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

    .split-section,
    .archive-hero,
    .detail-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rank-panel,
    .detail-sidebar {
        position: static;
    }

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

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

    .hero,
    .hero-content {
        min-height: 620px;
    }

    .hero h1 {
        font-size: 2.7rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-control {
        display: none;
    }

    .hero-dots {
        bottom: 118px;
    }

    .movie-grid,
    .movie-grid-tight,
    .archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .category-grid,
    .category-overview-grid,
    .small-link-grid {
        grid-template-columns: 1fr;
    }

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

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

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 460px) {
    .movie-grid,
    .movie-grid-tight,
    .archive-grid {
        grid-template-columns: 1fr;
    }

    .brand-text {
        font-size: 1.05rem;
    }

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