:root {
    --rose: #f43f5e;
    --rose-dark: #e11d48;
    --pink: #ec4899;
    --orange: #fb923c;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #e5e7eb;
    --bg: #f9fafb;
    --card: #ffffff;
    --dark: #111827;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.85);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--rose), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.brand-icon,
.footer-brand span {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose), var(--pink));
    box-shadow: 0 10px 25px rgba(244, 63, 94, 0.28);
    font-size: 14px;
}

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

.main-nav a,
.mobile-panel a {
    color: #4b5563;
    font-weight: 700;
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.mobile-panel a:hover,
.mobile-panel a.active {
    color: var(--rose);
}

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

.header-search input,
.big-search input,
.filter-input input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 11px 15px;
    outline: none;
    background: #ffffff;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.big-search input:focus,
.filter-input input:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.header-search button,
.big-search button {
    border: 0;
    border-radius: 999px;
    background: var(--rose);
    color: #ffffff;
    padding: 11px 16px;
    font-weight: 800;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    border: 0;
    background: #fff1f2;
    color: var(--rose);
    border-radius: 12px;
    padding: 9px 12px;
    font-size: 20px;
}

.mobile-panel {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 14px;
    border: 1px solid #ffe4e6;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.mobile-panel nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.mobile-panel form {
    display: flex;
    gap: 8px;
}

.mobile-panel input {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 10px 14px;
}

.mobile-panel button {
    border: 0;
    border-radius: 999px;
    background: var(--rose);
    color: #ffffff;
    padding: 10px 14px;
    font-weight: 800;
}

.hero-slider {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #fb7185, #ec4899, #fb923c);
}

.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-backdrop {
    position: absolute;
    inset: 0;
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.25), transparent 28%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.82), rgba(190, 18, 60, 0.58) 55%, rgba(15, 23, 42, 0.72));
}

.hero-backdrop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px) saturate(1.08);
    transform: scale(1.04);
}

.hero-content {
    position: relative;
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 420px;
    align-items: center;
    gap: 54px;
    padding: 72px 0 86px;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffe4e6;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-kicker {
    color: var(--rose);
    background: #fff1f2;
    border-color: #ffe4e6;
}

.hero-copy h1 {
    margin: 22px 0 18px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.06em;
    text-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.hero-copy p {
    max-width: 720px;
    margin: 0 0 24px;
    color: #ffe4e6;
    font-size: 19px;
    line-height: 1.9;
}

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

.hero-tags span,
.movie-tags span,
.tag-row span,
.tag-row a,
.detail-meta span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 800;
}

.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;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 900;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn.primary {
    color: var(--rose);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.22);
}

.btn.ghost {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.12);
}

.btn.full {
    width: 100%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose), var(--pink));
}

.hero-poster-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 320px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.45);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.hero-poster-card:hover {
    transform: rotate(0deg) scale(1.03);
}

.hero-poster-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.hero-poster-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
}

.hero-poster-card span {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 2;
    border-radius: 999px;
    padding: 8px 14px;
    background: var(--rose);
    color: #ffffff;
    font-weight: 900;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.hero-dot.active {
    width: 34px;
    background: #ffffff;
}

.stats-strip {
    margin-top: -38px;
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stats-strip div {
    border-radius: 22px;
    padding: 22px;
    background: #ffffff;
    box-shadow: var(--shadow);
    text-align: center;
}

.stats-strip strong {
    display: block;
    font-size: 30px;
    color: var(--rose);
    font-weight: 950;
}

.stats-strip span {
    color: var(--muted);
    font-weight: 700;
}

.content-section {
    padding: 70px 0;
}

.soft-bg {
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.warm-bg {
    background: linear-gradient(135deg, #fff1f2, #fdf2f8, #fff7ed);
}

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

.section-heading h2 {
    margin: 12px 0 6px;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 950;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.section-more {
    color: var(--rose);
    font-weight: 900;
    white-space: nowrap;
}

.movie-grid {
    display: grid;
    gap: 24px;
}

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

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

.movie-card {
    min-width: 0;
}

.movie-card-link {
    display: block;
    height: 100%;
    background: var(--card);
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card-link:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: #fecdd3;
}

.movie-cover {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffe4e6, #fdf2f8);
}

.movie-cover-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.42s ease;
}

.movie-card-link:hover .movie-cover-img {
    transform: scale(1.08);
}

.movie-badge,
.movie-score {
    position: absolute;
    top: 12px;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
    color: #ffffff;
}

.movie-badge {
    left: 12px;
    background: var(--rose);
}

.movie-score {
    right: 12px;
    background: rgba(17, 24, 39, 0.72);
}

.movie-card-body {
    padding: 18px;
}

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

.movie-card-body p {
    min-height: 50px;
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-tags {
    margin-bottom: 14px;
}

.movie-tags span,
.tag-row span,
.tag-row a {
    background: #f3f4f6;
    color: #4b5563;
}

.tag-row a {
    background: #fff1f2;
    color: var(--rose);
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #6b7280;
    font-size: 13px;
    border-top: 1px solid #f3f4f6;
    padding-top: 12px;
}

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

.category-card,
.category-overview-card {
    display: block;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 22px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.category-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-card strong,
.category-overview-card h2 {
    display: block;
    margin: 10px 0 4px;
    font-size: 20px;
    font-weight: 950;
}

.category-card em,
.category-overview-card strong {
    display: block;
    color: var(--rose);
    font-style: normal;
    font-weight: 900;
}

.category-card small,
.category-card i,
.category-overview-card p {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-style: normal;
    line-height: 1.6;
}

.category-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff1f2, #fdf2f8);
    color: var(--rose);
    font-size: 22px;
}

.category-icon.large {
    width: 54px;
    height: 54px;
}

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

.category-overview-card ul {
    margin: 16px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.9;
}

.category-overview-card li a:hover {
    color: var(--rose);
}

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

.rank-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.rank-number {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #facc15, #fb923c);
    color: #ffffff;
    font-size: 20px;
    font-weight: 950;
}

.rank-cover {
    width: 130px;
    height: 78px;
    object-fit: cover;
    border-radius: 12px;
    background: #fff1f2;
}

.rank-info {
    min-width: 0;
    flex: 1;
}

.rank-info strong,
.rank-info em,
.rank-info small {
    display: block;
}

.rank-info strong {
    font-size: 17px;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-info em {
    color: var(--muted);
    font-style: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-info small,
.rank-like {
    color: var(--rose);
    font-weight: 800;
}

.page-hero {
    padding: 70px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.22), transparent 30%),
        linear-gradient(135deg, var(--rose), var(--pink), var(--orange));
}

.page-hero h1 {
    margin: 14px 0 10px;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 950;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 820px;
    margin: 0;
    color: #ffe4e6;
    line-height: 1.8;
    font-size: 18px;
}

.page-hero .section-kicker {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.24);
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.sticky-toolbar {
    position: sticky;
    top: 78px;
    z-index: 10;
}

.filter-input {
    flex: 1;
    color: var(--muted);
    font-weight: 900;
}

.filter-input input {
    display: block;
    margin-top: 8px;
}

.toolbar select {
    min-height: 44px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 0 14px;
    background: #ffffff;
    font-weight: 800;
}

.empty-tip,
.search-summary {
    text-align: center;
    color: var(--muted);
    font-weight: 800;
    padding: 30px;
}

.big-search {
    max-width: 720px;
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.big-search input {
    min-height: 52px;
}

.detail-hero {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    color: #ffffff;
    background: #111827;
}

.detail-bg {
    position: absolute;
    inset: 0;
}

.detail-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.9), rgba(136, 19, 55, 0.72));
}

.detail-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px) saturate(1.05);
    transform: scale(1.04);
}

.detail-hero-inner {
    position: relative;
    padding: 70px 0 90px;
}

.detail-title-row h1 {
    max-width: 880px;
    margin: 16px 0;
    font-size: clamp(36px, 5.4vw, 64px);
    line-height: 1.06;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.detail-title-row p {
    max-width: 900px;
    color: #ffe4e6;
    line-height: 1.85;
    font-size: 18px;
}

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

.detail-main,
.detail-sidebar {
    min-width: 0;
}

.player-card,
.detail-card,
.poster-panel,
.side-panel {
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.player-shell {
    position: relative;
    background: #000000;
    aspect-ratio: 16 / 9;
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.55));
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.player-overlay span {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--rose);
    box-shadow: 0 18px 45px rgba(244, 63, 94, 0.35);
    font-size: 30px;
    padding-left: 5px;
}

.player-overlay strong {
    font-size: 18px;
}

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

.player-status {
    position: absolute;
    left: 14px;
    bottom: 14px;
    border-radius: 999px;
    padding: 8px 12px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.72);
    font-size: 13px;
}

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

.detail-card h2 {
    margin: 28px 0 10px;
    font-size: 24px;
    font-weight: 950;
}

.detail-card h2:first-of-type {
    margin-top: 22px;
}

.detail-card p {
    color: #374151;
    line-height: 2;
    white-space: pre-line;
}

.related-block {
    margin-top: 36px;
}

.detail-sidebar {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 20px;
}

.poster-panel {
    padding: 16px;
}

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

.side-panel {
    padding: 18px;
}

.side-panel h3 {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 950;
}

.side-related {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid #f3f4f6;
}

.side-related:first-of-type {
    border-top: 0;
}

.side-related-img {
    width: 92px;
    height: 58px;
    object-fit: cover;
    border-radius: 10px;
    background: #fff1f2;
}

.side-related strong,
.side-related em {
    display: block;
}

.side-related strong {
    font-size: 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.side-related em {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.site-footer {
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #1f2937, #111827);
}

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

.site-footer p {
    max-width: 420px;
    color: #9ca3af;
    line-height: 1.8;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 18px;
}

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

.footer-links a {
    color: #d1d5db;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    padding: 8px 12px;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    background: rgba(244, 63, 94, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    text-align: center;
    color: #9ca3af;
}

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

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

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

    .hero-poster-card {
        max-width: 520px;
    }

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

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

    .detail-sidebar {
        position: static;
    }

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

@media (max-width: 720px) {
    .wrap,
    .topbar,
    .mobile-panel,
    .footer-inner {
        width: min(100% - 22px, 1180px);
    }

    .brand {
        font-size: 19px;
    }

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

    .hero-content {
        padding-top: 48px;
        gap: 28px;
    }

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

    .stats-strip,
    .movie-grid.three,
    .movie-grid.four,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .toolbar,
    .rank-link,
    .big-search {
        align-items: stretch;
        flex-direction: column;
    }

    .rank-cover {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .rank-like {
        align-self: flex-start;
    }

    .content-section {
        padding: 46px 0;
    }

    .page-hero {
        padding: 48px 0;
    }
}
