:root {
    --bg: #f9fafb;
    --panel: #ffffff;
    --ink: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --teal: #0d9488;
    --teal-dark: #0f766e;
    --blue: #2563eb;
    --slate: #0f172a;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background: var(--bg);
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

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

.brand-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: white;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    box-shadow: 0 10px 22px rgba(13, 148, 136, 0.24);
}

.brand-text,
.footer-brand {
    font-size: 24px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.desktop-nav a,
.nav-dropdown > button {
    border: 0;
    background: transparent;
    color: #374151;
    font-weight: 700;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.nav-dropdown:hover > button {
    color: var(--teal);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: -18px;
    width: 210px;
    padding: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #374151;
    font-size: 14px;
}

.dropdown-panel a:hover {
    color: var(--teal);
    background: #ecfeff;
}

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

.header-search input,
.mobile-search input,
.quick-search-panel input,
.filter-search input,
.filter-bar select {
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: white;
    color: var(--ink);
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
    width: 210px;
    padding: 10px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.quick-search-panel input:focus,
.filter-search input:focus,
.filter-bar select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.13);
}

.header-search button,
.mobile-search button,
.quick-search-panel button {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    color: white;
    font-weight: 800;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.18);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #f1f5f9;
}

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

.mobile-panel {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

.mobile-panel nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.mobile-panel nav a {
    padding: 12px;
    border-radius: 14px;
    background: #f8fafc;
    color: #334155;
    font-weight: 700;
}

.hero-slider {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: var(--slate);
}

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

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

.hero-bg,
.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.06);
    transform: scale(1.04);
}

.hero-overlay,
.detail-mask {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 28%, rgba(20, 184, 166, 0.34), transparent 30%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(15, 23, 42, 0.8) 45%, rgba(15, 23, 42, 0.28) 100%),
        linear-gradient(0deg, rgba(15, 23, 42, 0.92), transparent 42%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 640px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 58px;
    align-items: center;
    padding: 78px 0 86px;
}

.eyebrow {
    margin: 0 0 12px;
    color: #14b8a6;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    color: white;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.hero-desc,
.page-hero p,
.detail-line {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.8;
}

.hero-tags,
.mini-tags,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

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

.hero-tags span,
.mini-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    color: #ecfeff;
    background: rgba(20, 184, 166, 0.22);
    border: 1px solid rgba(94, 234, 212, 0.34);
    font-size: 13px;
    font-weight: 800;
}

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

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

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

.btn.primary {
    color: white;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    box-shadow: 0 16px 30px rgba(13, 148, 136, 0.32);
}

.btn.glass {
    color: white;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.btn.text {
    color: #a7f3d0;
}

.hero-poster {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
    transform: rotate(2deg);
}

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

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: white;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    font-size: 36px;
    line-height: 1;
    transform: translateY(-50%);
}

.hero-control.prev {
    left: 22px;
}

.hero-control.next {
    right: 22px;
}

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

.hero-dots button {
    width: 34px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
}

.hero-dots button.active {
    background: #5eead4;
}

.quick-search-panel,
.section-block,
.filter-bar {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.quick-search-panel {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px);
    gap: 28px;
    align-items: center;
    margin-top: -58px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.quick-search-panel h2,
.section-heading h2,
.story-card h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(26px, 3vw, 40px);
    letter-spacing: -0.04em;
}

.quick-search-panel form {
    display: flex;
    gap: 10px;
}

.quick-search-panel input {
    width: 100%;
    padding: 14px 18px;
}

.section-block {
    padding: 82px 0 0;
}

.muted-block {
    width: 100%;
    max-width: none;
    padding: 82px max(16px, calc((100% - 1180px) / 2)) 90px;
    background: linear-gradient(180deg, #f8fafc 0%, #eefdfa 100%);
}

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

.section-heading.align-left {
    align-items: center;
}

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

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

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

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

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

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

.movie-card {
    overflow: hidden;
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(20, 184, 166, 0.35);
    box-shadow: var(--shadow);
}

.featured-card {
    grid-column: span 2;
    grid-row: span 2;
}

.poster-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #0f172a;
}

.featured-card .poster-wrap {
    aspect-ratio: 16 / 11;
}

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

.movie-card:hover .poster-wrap img {
    transform: scale(1.1);
}

.poster-shade {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.78) 100%);
    transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
    opacity: 1;
}

.play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: var(--teal);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
    transition: 0.25s ease;
}

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

.card-badge,
.card-year {
    position: absolute;
    top: 12px;
    padding: 6px 10px;
    color: white;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.card-badge {
    left: 12px;
    background: rgba(13, 148, 136, 0.92);
}

.card-year {
    right: 12px;
    background: rgba(15, 23, 42, 0.72);
}

.card-content {
    padding: 16px;
}

.card-content h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.35;
}

.card-content h3 a:hover {
    color: var(--teal);
}

.card-content p {
    display: -webkit-box;
    min-height: 43px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mini-tags span {
    min-height: 24px;
    color: var(--teal-dark);
    background: #ecfeff;
    border-color: #ccfbf1;
    font-size: 12px;
}

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

.category-card,
.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    padding: 22px;
    border-radius: 24px;
    color: white;
    box-shadow: var(--soft-shadow);
}

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

.category-card:hover img,
.category-tile:hover img {
    transform: scale(1.08);
}

.category-card span,
.tile-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.82));
}

.category-card strong,
.category-card em,
.category-tile div {
    position: relative;
    z-index: 1;
}

.category-card strong {
    display: block;
    margin-top: 78px;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.category-card em,
.category-tile em {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-style: normal;
    line-height: 1.55;
}

.category-tile {
    min-height: 260px;
    display: flex;
    align-items: end;
}

.category-tile h2 {
    margin: 0;
    font-size: 30px;
    letter-spacing: -0.05em;
}

.category-tile p {
    margin: 0 0 8px;
    color: #5eead4;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.split-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 54px 96px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    background: white;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--teal), var(--blue));
}

.rank-thumb {
    overflow: hidden;
    border-radius: 14px;
}

.rank-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.rank-info h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.rank-info p {
    margin: 0 0 8px;
    color: var(--muted);
    line-height: 1.55;
}

.rank-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rank-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    color: #0f766e;
    background: #ecfeff;
    font-size: 12px;
    font-weight: 800;
}

.full-rank .rank-row {
    grid-template-columns: 64px 130px 1fr;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px max(16px, calc((100% - 1180px) / 2));
    background:
        radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.34), transparent 30%),
        linear-gradient(135deg, #0f172a 0%, #0f766e 52%, #2563eb 100%);
}

.page-hero > div {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.compact-hero {
    padding-top: 74px;
    padding-bottom: 74px;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) repeat(3, minmax(160px, 210px));
    gap: 12px;
    padding: 26px;
    margin-top: 36px;
    border-radius: 24px;
    background: white;
    box-shadow: var(--soft-shadow);
}

.filter-search input,
.filter-bar select {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
}

.filter-search.wide {
    grid-column: 1 / -1;
}

.detail-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #0f172a;
}

.detail-wrap {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 620px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: center;
    padding: 76px 0;
}

.detail-poster {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

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

.detail-poster span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: white;
    font-size: 58px;
    background: rgba(15, 23, 42, 0.26);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #5eead4;
}

.breadcrumb em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.9);
}

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

.detail-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    color: white;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 13px;
    font-weight: 800;
}

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

.media-player {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #020617;
    box-shadow: var(--shadow);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: white;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.48));
}

.player-overlay span {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    padding-left: 5px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    box-shadow: 0 24px 48px rgba(13, 148, 136, 0.34);
    font-size: 38px;
}

.media-player.playing .player-overlay {
    opacity: 0;
    pointer-events: none;
}

.player-message {
    position: absolute;
    left: 24px;
    bottom: 18px;
    margin: 0;
    color: white;
    font-weight: 800;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.article-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.story-card {
    padding: 28px;
    border-radius: 24px;
    background: white;
    box-shadow: var(--soft-shadow);
}

.story-card p {
    margin: 16px 0 0;
    color: #374151;
    line-height: 1.9;
    font-size: 17px;
}

.site-footer {
    margin-top: 90px;
    padding: 58px max(16px, calc((100% - 1180px) / 2)) 24px;
    color: white;
    background: linear-gradient(135deg, #0f172a, #164e63 58%, #0f766e);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 38px;
}

.footer-grid p {
    max-width: 460px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
}

.footer-grid h2 {
    margin: 0 0 16px;
    font-size: 18px;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links.compact {
    grid-template-columns: repeat(2, 1fr);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.76);
}

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

.footer-bottom {
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.64);
    text-align: center;
}

[hidden] {
    display: none !important;
}

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

@media (max-width: 1100px) {
    .header-search {
        display: none;
    }

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

    .hero-poster,
    .detail-poster {
        display: none;
    }

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

    .split-layout,
    .article-block {
        grid-template-columns: 1fr;
    }

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

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

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .mobile-search input {
        flex: 1;
        min-width: 0;
        padding: 12px 16px;
    }

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

    .hero-content {
        display: flex;
        align-items: center;
        padding-top: 58px;
    }

    .hero-control {
        display: none;
    }

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

    .quick-search-panel form {
        flex-direction: column;
    }

    .movie-grid,
    .feature-grid,
    .catalog-grid,
    .related-grid,
    .small-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-card {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .full-rank .rank-row,
    .rank-row {
        grid-template-columns: 48px 86px 1fr;
    }

    .rank-info p {
        display: none;
    }
}

@media (max-width: 560px) {
    .header-inner {
        width: calc(100% - 24px);
    }

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

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 40px;
    }

    .hero-desc,
    .page-hero p,
    .detail-line {
        font-size: 16px;
    }

    .movie-grid,
    .feature-grid,
    .catalog-grid,
    .related-grid,
    .small-grid,
    .category-grid,
    .category-tile-grid {
        grid-template-columns: 1fr;
    }

    .featured-card {
        grid-column: span 1;
    }

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

    .rank-row,
    .full-rank .rank-row {
        grid-template-columns: 44px 72px 1fr;
        gap: 10px;
        padding: 10px;
    }

    .rank-meta span:nth-child(n + 3) {
        display: none;
    }

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