:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.78);
    --line: rgba(148, 163, 184, 0.18);
    --text: #e2e8f0;
    --muted: #94a3b8;
    --muted-2: #64748b;
    --cyan: #22d3ee;
    --blue: #3b82f6;
    --purple: #a855f7;
    --amber: #f59e0b;
    --radius: 22px;
    --shadow: 0 24px 80px rgba(2, 6, 23, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: radial-gradient(circle at 10% 0%, rgba(34, 211, 238, 0.14), transparent 34rem),
        radial-gradient(circle at 90% 8%, rgba(59, 130, 246, 0.16), transparent 36rem),
        linear-gradient(180deg, #020617 0%, #0f172a 44%, #020617 100%);
    color: var(--text);
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.94));
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(2, 6, 23, 0.35);
}

.header-inner {
    max-width: 1280px;
    height: 70px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 36px rgba(34, 211, 238, 0.34);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong,
.footer-brand strong {
    font-size: 20px;
    letter-spacing: 0.03em;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.desktop-nav a,
.mobile-nav a {
    color: #cbd5e1;
    border-radius: 12px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.desktop-nav a {
    padding: 10px 16px;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
    color: var(--cyan);
    background: rgba(15, 23, 42, 0.72);
}

.menu-toggle {
    width: 42px;
    height: 42px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--text);
    background: rgba(15, 23, 42, 0.82);
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    border-radius: 99px;
    background: var(--text);
}

.mobile-nav {
    display: none;
    padding: 10px 24px 18px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.96);
}

.mobile-nav a {
    display: block;
    padding: 13px 14px;
}

.hero {
    position: relative;
    min-height: 760px;
    padding: 116px 24px 54px;
    overflow: hidden;
}

.hero-track {
    position: relative;
    max-width: 1280px;
    min-height: 590px;
    margin: 0 auto;
    border: 1px solid rgba(34, 211, 238, 0.16);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    align-items: center;
    gap: 40px;
    padding: 72px;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(24px) saturate(1.25);
    opacity: 0.28;
    transform: scale(1.08);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.76) 55%, rgba(2, 6, 23, 0.88));
}

.hero-copy,
.hero-poster {
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(34, 211, 238, 0.24);
    border-radius: 999px;
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.08);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1,
.hero h2 {
    max-width: 780px;
    margin: 22px 0 18px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    background: linear-gradient(90deg, #e0f2fe, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    max-width: 700px;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.8;
}

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

.hero-tags span,
.detail-meta span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 11px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.74);
    font-size: 13px;
}

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

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

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

.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.28);
}

.btn.ghost {
    border: 1px solid rgba(148, 163, 184, 0.28);
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.74);
}

.hero-poster {
    display: block;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(2, 6, 23, 0.65);
    transform: rotate(1.5deg);
    transition: transform 0.35s ease;
}

.hero-poster:hover {
    transform: rotate(0deg) translateY(-4px);
}

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

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

.hero-dot {
    width: 34px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.42);
    cursor: pointer;
}

.hero-dot.is-active {
    background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    opacity: 0.65;
}

.hero-orb.one {
    width: 240px;
    height: 240px;
    top: 130px;
    left: 4%;
    background: rgba(34, 211, 238, 0.14);
}

.hero-orb.two {
    width: 320px;
    height: 320px;
    right: 3%;
    bottom: 14%;
    background: rgba(59, 130, 246, 0.16);
}

.section,
.page-hero,
.breadcrumb,
.detail-hero {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.section {
    padding-top: 54px;
    padding-bottom: 54px;
}

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

.section-head h2 {
    margin: 8px 0 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-head a {
    color: var(--cyan);
    font-weight: 800;
}

.inline-head {
    align-items: center;
}

.feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
    gap: 24px;
}

.wide-card a {
    position: relative;
    display: block;
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow);
}

.wide-card img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.wide-card:hover img {
    transform: scale(1.08);
}

.wide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.16) 65%);
}

.wide-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wide-content em {
    color: var(--cyan);
    font-style: normal;
    font-weight: 800;
}

.wide-content strong {
    font-size: 34px;
    line-height: 1.1;
}

.wide-content small {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.52));
    box-shadow: 0 16px 48px rgba(2, 6, 23, 0.26);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.42);
    box-shadow: 0 26px 80px rgba(2, 6, 23, 0.45);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.9);
}

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

.movie-card:hover .poster-link img {
    transform: scale(1.08);
    filter: saturate(1.18);
}

.play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: rgba(34, 211, 238, 0.88);
    box-shadow: 0 14px 32px rgba(14, 165, 233, 0.32);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.84);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

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

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

.movie-card-topline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-2);
    font-size: 12px;
}

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

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

.movie-card p {
    flex: 1;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.card-score {
    margin-left: auto;
    color: var(--amber);
}

.tag-row {
    gap: 7px;
}

.tag-row span {
    min-height: auto;
    padding: 5px 9px;
    font-size: 12px;
}

.large-tags span {
    padding: 7px 12px;
    font-size: 13px;
}

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

.category-card,
.category-tile {
    position: relative;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(59, 130, 246, 0.06), rgba(15, 23, 42, 0.76));
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.category-card {
    min-height: 142px;
    padding: 24px;
}

.category-card:hover,
.category-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.38);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(59, 130, 246, 0.12), rgba(15, 23, 42, 0.82));
}

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

.category-card p,
.category-tile p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

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

.rank-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    background: rgba(15, 23, 42, 0.7);
    box-shadow: var(--shadow);
}

.rank-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.rank-link {
    display: grid;
    grid-template-columns: 38px 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.28);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.rank-link:hover {
    border-color: rgba(34, 211, 238, 0.36);
    background: rgba(15, 23, 42, 0.86);
}

.rank-num {
    color: var(--cyan);
    font-weight: 900;
}

.rank-link img {
    width: 52px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-copy {
    min-width: 0;
}

.rank-copy strong,
.rank-copy em {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-copy strong {
    color: #fff;
    font-size: 14px;
}

.rank-copy em {
    margin-top: 4px;
    color: var(--muted);
    font-style: normal;
    font-size: 12px;
}

.rank-link b {
    color: var(--amber);
}

.page-main {
    padding-top: 92px;
}

.page-hero {
    padding-top: 62px;
    padding-bottom: 34px;
}

.page-hero.small {
    min-height: 260px;
}

.page-hero h1 {
    max-width: 860px;
    margin: 20px 0 16px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1;
    letter-spacing: -0.05em;
}

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

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

.category-tile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
}

.tile-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.tile-images img {
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 12px;
    object-fit: cover;
}

.filter-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.72);
}

.filter-search {
    flex: 1;
}

.filter-search input,
.filter-select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 14px;
    color: var(--text);
    background: rgba(2, 6, 23, 0.52);
    outline: none;
}

.filter-search input {
    padding: 0 16px;
}

.filter-search input:focus,
.filter-select:focus {
    border-color: rgba(34, 211, 238, 0.58);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1);
}

.filter-search input::placeholder {
    color: var(--muted-2);
}

.filter-selects {
    display: flex;
    gap: 12px;
}

.filter-select {
    min-width: 150px;
    padding: 0 14px;
}

.rank-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 28px;
    align-items: start;
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 28px;
    padding-bottom: 24px;
    color: var(--muted);
    font-size: 14px;
}

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

.detail-main {
    padding-top: 82px;
}

.detail-hero {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 52px;
}

.detail-poster {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: var(--shadow);
}

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

.detail-copy h1 {
    margin: 20px 0 18px;
    font-size: clamp(36px, 5vw, 66px);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.detail-lead {
    max-width: 820px;
    color: #cbd5e1;
    font-size: 19px;
    line-height: 1.8;
}

.detail-meta {
    margin: 20px 0;
}

.detail-copy .btn {
    margin-top: 24px;
}

.watch-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px 54px;
}

.player-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 28px;
    background: #000;
    box-shadow: var(--shadow);
}

.player-frame video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
}

.play-layer {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #fff;
    background: radial-gradient(circle, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.5));
    cursor: pointer;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.play-layer span {
    width: 84px;
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.42);
    font-size: 32px;
    text-indent: 5px;
}

.play-layer.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.prose-section {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px 36px;
    color: #cbd5e1;
    line-height: 1.9;
}

.prose-section h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
}

.prose-section p {
    margin: 0;
}

.site-footer {
    margin-top: 60px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.82);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 44px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(160px, 0.5fr) minmax(0, 1fr);
    gap: 28px;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--muted);
}

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

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

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px 34px;
    color: var(--muted-2);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    font-size: 14px;
}

[hidden] {
    display: none !important;
}

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

    .feature-layout,
    .split-section,
    .rank-page-layout {
        grid-template-columns: 1fr;
    }

    .rank-panel,
    .sticky-panel {
        position: static;
    }

    .hero-slide {
        grid-template-columns: minmax(0, 1fr) 280px;
        padding: 52px;
    }
}

@media (max-width: 860px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

    .hero {
        min-height: auto;
        padding: 96px 16px 42px;
    }

    .hero-track {
        min-height: 720px;
        border-radius: 28px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 26px;
        padding: 34px;
    }

    .hero-poster {
        max-width: 230px;
        margin: 0 auto;
        order: -1;
    }

    .hero-dots {
        bottom: 58px;
    }

    .section,
    .page-hero,
    .breadcrumb,
    .detail-hero,
    .watch-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .movie-grid,
    .movie-grid.compact,
    .listing-grid,
    .category-grid,
    .category-tile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .filter-panel,
    .filter-selects {
        flex-direction: column;
        align-items: stretch;
    }

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

    .prose-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .header-inner {
        padding: 0 16px;
    }

    .brand-text small {
        display: none;
    }

    .hero h1,
    .hero h2 {
        font-size: 38px;
    }

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

    .movie-grid,
    .movie-grid.compact,
    .listing-grid,
    .category-grid,
    .category-tile-grid {
        grid-template-columns: 1fr;
    }

    .wide-card img {
        min-height: 360px;
    }

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

    .rank-link {
        grid-template-columns: 34px 46px minmax(0, 1fr) auto;
    }

    .rank-link img {
        width: 46px;
        height: 62px;
    }
}
