:root {
    color-scheme: dark;
    --bg: #050b16;
    --bg-soft: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.82);
    --panel: rgba(15, 23, 42, 0.92);
    --text: #f8fafc;
    --muted: #94a3b8;
    --line: rgba(148, 163, 184, 0.22);
    --emerald: #34d399;
    --cyan: #22d3ee;
    --amber: #fbbf24;
    --rose: #fb7185;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --radius: 24px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 30rem),
        radial-gradient(circle at top right, rgba(52, 211, 153, 0.18), transparent 28rem),
        linear-gradient(180deg, #020617 0%, #07111f 42%, #0f172a 100%);
    color: var(--text);
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.top-nav {
    width: min(1180px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    color: #021014;
    box-shadow: 0 10px 26px rgba(34, 211, 238, 0.25);
}

.brand-text,
.footer-brand {
    font-size: 1.28rem;
    background: linear-gradient(90deg, var(--emerald), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 700;
    color: rgba(248, 250, 252, 0.82);
}

.nav-links a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--emerald);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.65);
    color: var(--text);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: currentColor;
}

.hero-carousel {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    isolation: isolate;
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.72) 38%, rgba(2, 6, 23, 0.2) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.96), transparent 48%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 72vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 98px 0 150px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--emerald);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-content h1,
.inner-hero h1,
.detail-info h1 {
    max-width: 880px;
    margin: 0;
    font-size: clamp(2.3rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    text-shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
}

.hero-lead,
.detail-lead,
.inner-hero p {
    max-width: 760px;
    margin: 22px 0 0;
    color: rgba(226, 232, 240, 0.9);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    line-height: 1.9;
}

.hero-meta,
.tag-row,
.card-actions,
.detail-actions,
.prose-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-meta {
    margin-top: 22px;
}

.hero-meta span,
.tag-row span,
.inline-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.68);
    color: rgba(226, 232, 240, 0.88);
    font-size: 0.82rem;
    font-weight: 700;
}

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

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

.primary-btn,
.secondary-btn,
.hero-search button,
.inline-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn,
.hero-search button,
.inline-search button {
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    color: #021014;
    box-shadow: 0 16px 36px rgba(34, 211, 238, 0.24);
}

.secondary-btn {
    border: 1px solid rgba(226, 232, 240, 0.24);
    background: rgba(15, 23, 42, 0.62);
    color: var(--text);
}

.primary-btn:hover,
.secondary-btn:hover,
.hero-search button:hover,
.inline-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(52, 211, 153, 0.22);
}

.hero-bottom-panel {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 4;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: minmax(280px, 430px) 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

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

.hero-search input,
.inline-search input,
.page-filter {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 999px;
    outline: 0;
    padding: 0 18px;
    background: rgba(2, 6, 23, 0.52);
    color: var(--text);
}

.hero-search input:focus,
.inline-search input:focus,
.page-filter:focus {
    border-color: rgba(52, 211, 153, 0.75);
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.12);
}

.quick-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-links a {
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(30, 41, 59, 0.82);
    color: rgba(226, 232, 240, 0.9);
    font-size: 0.86rem;
    font-weight: 800;
}

.quick-links a:hover {
    color: #04111a;
    background: var(--emerald);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.36);
    cursor: pointer;
}

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

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

.intro-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.intro-strip h2,
.section-heading h2,
.rank-panel h2,
.story-panel h2,
.prose-panel h2,
.sitemap-group h2,
.category-overview-card h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2.8vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.intro-strip p,
.story-panel p,
.prose-panel p,
.category-overview-card p {
    color: rgba(203, 213, 225, 0.9);
    line-height: 1.9;
}

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

.compact-heading {
    margin-bottom: 18px;
}

.text-link,
.muted-link {
    color: var(--emerald);
    font-weight: 900;
}

.muted-link {
    color: rgba(226, 232, 240, 0.68);
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.68));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(52, 211, 153, 0.5);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.compact-card .poster-link {
    aspect-ratio: 16 / 11;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), transparent 52%);
}

.poster-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.78);
    color: var(--emerald);
    font-size: 0.78rem;
    font-weight: 900;
}

.card-body {
    padding: 18px;
}

.card-kicker {
    color: var(--emerald);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.card-body h3 {
    margin: 8px 0 8px;
    font-size: 1.18rem;
    line-height: 1.35;
}

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

.card-body p {
    min-height: 3.4em;
    margin: 0 0 14px;
    color: rgba(203, 213, 225, 0.86);
    line-height: 1.72;
    font-size: 0.94rem;
}

.card-actions {
    justify-content: space-between;
    margin-top: 14px;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

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

.category-card,
.category-overview-card a {
    display: block;
    min-height: 138px;
    padding: 20px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(52, 211, 153, 0.11), transparent 55%),
        rgba(15, 23, 42, 0.74);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover,
.category-overview-card a:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.48);
}

.category-card span,
.category-overview-card h2 {
    display: block;
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-weight: 900;
}

.category-card em,
.category-overview-card p,
.category-overview-card em {
    color: rgba(203, 213, 225, 0.84);
    font-style: normal;
    line-height: 1.72;
}

.category-index {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    color: #021014;
    font-weight: 900;
}

.rank-panel,
.story-panel,
.prose-panel,
.sitemap-group {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.76);
    box-shadow: var(--shadow);
}

.rank-panel {
    position: sticky;
    top: 92px;
    padding: 24px;
}

.rank-list {
    display: grid;
    gap: 12px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.rank-list a {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.34);
}

.rank-list a:hover {
    background: rgba(52, 211, 153, 0.12);
}

.rank-list span {
    grid-row: span 2;
    color: var(--amber);
    font-weight: 900;
}

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

.rank-list em {
    color: var(--muted);
    font-size: 0.82rem;
    font-style: normal;
}

.wide-btn {
    width: 100%;
}

.inner-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 86px 0 34px;
}

.channel-hero,
.text-hero {
    padding-bottom: 22px;
}

.inline-search {
    max-width: 680px;
    margin-top: 28px;
}

.page-filter {
    max-width: 310px;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 58px 140px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.72);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(251, 191, 36, 0.12);
    color: var(--amber);
    font-weight: 900;
}

.rank-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 18px;
    background: #0f172a;
}

.rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ranking-row h2 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.ranking-row p {
    margin: 0 0 10px;
    color: rgba(203, 213, 225, 0.88);
    line-height: 1.68;
}

.small-meta {
    margin-top: 0;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    isolation: isolate;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.36;
    filter: blur(2px) saturate(1.08);
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.72) 48%, rgba(2, 6, 23, 0.42) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.2) 70%);
}

.detail-content {
    width: min(1180px, calc(100% - 32px));
    min-height: 620px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 42px;
    align-items: center;
    padding: 72px 0;
}

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.18);
    border-radius: 30px;
    box-shadow: var(--shadow);
    background: #0f172a;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.9rem;
}

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

.player-section {
    padding-top: 32px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 30px;
    background: #000;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.video-shell video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.player-start {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    background: radial-gradient(circle at center, rgba(2, 6, 23, 0.24), rgba(2, 6, 23, 0.78));
    color: var(--text);
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.video-shell.is-playing .player-start,
.video-shell.is-ready .player-start {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    color: #021014;
    font-size: 2rem;
    box-shadow: 0 18px 54px rgba(34, 211, 238, 0.28);
}

.player-start strong {
    font-size: 1.05rem;
}

.player-error {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    margin: 0;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(251, 113, 133, 0.14);
    color: #fecdd3;
    text-align: center;
}

.detail-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.story-panel,
.prose-panel,
.sitemap-group {
    padding: 26px;
}

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

.info-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.info-list div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.info-list dt {
    color: var(--muted);
    font-weight: 800;
}

.info-list dd {
    margin: 0;
}

.inline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.prose-panel {
    max-width: 880px;
}

.prose-actions {
    margin-top: 24px;
}

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

.sitemap-group ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.sitemap-group li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.sitemap-group li a {
    color: rgba(248, 250, 252, 0.92);
    font-weight: 800;
}

.sitemap-group li a:hover {
    color: var(--emerald);
}

.sitemap-group li span {
    color: var(--muted);
    white-space: nowrap;
    font-size: 0.86rem;
}

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

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 44px 0;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 28px;
}

.footer-grid h2 {
    margin: 0 0 12px;
    font-size: 1rem;
}

.footer-grid p {
    margin: 10px 0 0;
    color: rgba(203, 213, 225, 0.82);
    line-height: 1.8;
}

.footer-grid p a {
    display: inline-flex;
    margin: 0 14px 8px 0;
    color: rgba(203, 213, 225, 0.88);
    font-weight: 800;
}

.footer-grid p a:hover {
    color: var(--emerald);
}

.footer-bottom {
    padding: 18px 0 28px;
    color: rgba(148, 163, 184, 0.8);
    text-align: center;
    font-size: 0.9rem;
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    color: #021014;
    font-weight: 900;
    cursor: pointer;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.is-hidden-by-filter {
    display: none !important;
}

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

    .featured-grid,
    .split-layout,
    .detail-text-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rank-panel {
        position: static;
    }

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

    .detail-content {
        grid-template-columns: 240px 1fr;
    }
}

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

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 76px;
        display: grid;
        gap: 6px;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(15, 23, 42, 0.96);
        box-shadow: var(--shadow);
        transform: translateY(-16px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav-links.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

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

    .nav-links a:hover {
        background: rgba(52, 211, 153, 0.1);
    }

    .hero-carousel,
    .hero-content {
        min-height: 82vh;
    }

    .hero-content {
        padding-top: 78px;
        padding-bottom: 220px;
    }

    .hero-bottom-panel {
        bottom: 14px;
    }

    .quick-links {
        max-height: 78px;
        overflow: auto;
    }

    .intro-strip,
    .category-grid,
    .category-overview-grid,
    .movie-grid,
    .compact-grid,
    .sitemap-wrapper,
    .sitemap-group ul,
    .ranking-row,
    .detail-content {
        grid-template-columns: 1fr;
    }

    .detail-content {
        gap: 28px;
        padding-top: 42px;
    }

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

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

    .page-filter {
        max-width: none;
    }

    .hero-search,
    .inline-search {
        flex-direction: column;
    }

    .ranking-row .secondary-btn {
        justify-self: start;
    }
}
