:root {
    --bg: #fff7fb;
    --bg-soft: #f7fbff;
    --text: #273044;
    --muted: #6b7280;
    --line: rgba(226, 232, 240, 0.9);
    --pink: #ec4899;
    --rose: #f43f5e;
    --orange: #f97316;
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --card: rgba(255, 255, 255, 0.92);
    --shadow: 0 22px 60px rgba(148, 93, 133, 0.18);
    --soft-shadow: 0 14px 35px rgba(148, 93, 133, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(236, 72, 153, 0.16), transparent 32rem),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 28rem),
        linear-gradient(135deg, #fff7fb 0%, #eef7ff 50%, #fbf7ff 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(253, 242, 248, 0.92), rgba(239, 246, 255, 0.92), rgba(250, 245, 255, 0.92));
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 28px rgba(129, 124, 154, 0.16);
    backdrop-filter: blur(18px);
}

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

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

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    box-shadow: 0 12px 22px rgba(244, 63, 94, 0.28);
    font-size: 0.8rem;
}

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

.nav-link,
.nav-menu > .nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    color: #4b5563;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-menu.is-active > .nav-link,
.nav-menu:hover > .nav-link {
    color: var(--pink);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 24px rgba(236, 72, 153, 0.14);
    transform: translateY(-1px);
}

.nav-menu {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 290px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.18s ease;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 11px 12px;
    border-radius: 16px;
    transition: background 0.18s ease, transform 0.18s ease;
}

.nav-dropdown a:hover {
    background: linear-gradient(90deg, #fff1f8, #f3f7ff);
    transform: translateX(2px);
}

.nav-dropdown strong {
    display: block;
    color: #283248;
    font-size: 0.95rem;
}

.nav-dropdown span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.mobile-toggle {
    display: none;
    border: 0;
    border-radius: 14px;
    padding: 8px 12px;
    color: #4b5563;
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
}

.mobile-nav {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--soft-shadow);
}

.mobile-nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 14px;
    color: #4b5563;
    font-weight: 700;
}

.mobile-nav a:hover {
    color: var(--pink);
    background: #fff1f8;
}

.mobile-category-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 4px 0 8px 14px;
}

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

.hero {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 44px;
    min-height: 540px;
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.14), rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.12));
    box-shadow: var(--shadow);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(14px);
    opacity: 0.65;
    pointer-events: none;
}

.hero::before {
    width: 280px;
    height: 280px;
    top: -90px;
    left: -70px;
    background: rgba(236, 72, 153, 0.25);
}

.hero::after {
    width: 360px;
    height: 360px;
    right: -100px;
    bottom: -120px;
    background: rgba(59, 130, 246, 0.22);
}

.hero-track {
    position: relative;
    min-height: 540px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 28px;
    align-items: center;
    padding: 54px;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.01);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    color: #be185d;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 24px rgba(236, 72, 153, 0.1);
    font-size: 0.84rem;
    font-weight: 800;
}

.hero h1,
.hero h2 {
    margin: 18px 0 14px;
    max-width: 700px;
    font-size: clamp(2.5rem, 5vw, 4.75rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    font-weight: 950;
}

.hero h2 {
    font-size: clamp(2.25rem, 4.5vw, 4.35rem);
}

.gradient-text {
    background: linear-gradient(90deg, #e11d48, #f97316, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    max-width: 660px;
    margin: 0 0 22px;
    color: #475569;
    font-size: 1.06rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 850;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    color: white;
    background: linear-gradient(90deg, var(--rose), var(--orange));
    box-shadow: 0 16px 30px rgba(244, 63, 94, 0.24);
}

.btn-secondary {
    color: #9d174d;
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(255, 255, 255, 0.9);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(244, 63, 94, 0.2);
}

.hero-art {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.68fr;
    gap: 16px;
    align-items: end;
}

.hero-poster {
    min-height: 420px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.26), rgba(59, 130, 246, 0.26));
    box-shadow: 0 34px 60px rgba(93, 83, 124, 0.3);
}

.hero-poster img,
.poster-shell img,
.detail-poster img,
.related-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-poster img.image-empty,
.poster-shell img.image-empty,
.detail-poster img.image-empty,
.related-poster img.image-empty,
.video-box video[poster].poster-empty {
    opacity: 0;
}

.hero-side {
    display: grid;
    gap: 14px;
}

.hero-mini {
    min-height: 120px;
    padding: 16px;
    border-radius: 24px;
    color: white;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.84), rgba(249, 115, 22, 0.84));
    box-shadow: 0 20px 42px rgba(236, 72, 153, 0.22);
}

.hero-mini:nth-child(2) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.84), rgba(139, 92, 246, 0.84));
}

.hero-mini strong {
    display: block;
    font-size: 1.05rem;
}

.hero-mini span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.86rem;
}

.hero-controls {
    position: absolute;
    z-index: 5;
    left: 54px;
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-control,
.hero-dot {
    border: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.82);
    color: #9d174d;
    box-shadow: 0 10px 24px rgba(148, 93, 133, 0.14);
}

.hero-control {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 1.1rem;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    opacity: 0.55;
}

.hero-dot.is-active {
    width: 28px;
    opacity: 1;
    background: linear-gradient(90deg, var(--rose), var(--orange));
}

.section {
    margin: 38px 0;
}

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

.section-kicker {
    margin: 0 0 4px;
    color: var(--pink);
    font-size: 0.86rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section h2,
.section h1,
.page-title h1 {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.section-desc,
.page-title p {
    max-width: 760px;
    color: var(--muted);
    margin: 8px 0 0;
}

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

.category-card {
    min-height: 170px;
    padding: 20px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.category-card p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 0.92rem;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    color: #be185d;
    background: #fff1f8;
    font-size: 0.82rem;
    font-weight: 800;
}

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

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

.movie-card {
    display: block;
    overflow: hidden;
    border-radius: 26px;
    background: var(--card);
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(255, 255, 255, 0.85);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.poster-shell {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.24), rgba(59, 130, 246, 0.2));
}

.poster-gradient {
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.72));
}

.movie-badge,
.movie-duration,
.rank-mark {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: white;
    font-size: 0.76rem;
    font-weight: 850;
    backdrop-filter: blur(10px);
}

.movie-badge {
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    background: rgba(236, 72, 153, 0.82);
}

.movie-duration {
    right: 12px;
    bottom: 12px;
    padding: 5px 9px;
    background: rgba(15, 23, 42, 0.62);
}

.rank-mark {
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.movie-info {
    display: block;
    padding: 15px;
}

.movie-info strong {
    display: -webkit-box;
    min-height: 3.15em;
    overflow: hidden;
    color: #20283a;
    font-size: 1rem;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-info small,
.movie-info em {
    display: block;
    color: var(--muted);
    font-style: normal;
    font-size: 0.82rem;
}

.movie-info small {
    margin-top: 6px;
}

.movie-info em {
    display: -webkit-box;
    min-height: 3.4em;
    margin-top: 8px;
    overflow: hidden;
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.tag-row span {
    padding: 4px 8px;
    border-radius: 999px;
    color: #be185d;
    background: #fff1f8;
    font-size: 0.74rem;
    font-weight: 760;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 58px 86px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--soft-shadow);
}

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

.rank-thumb {
    width: 86px;
    height: 112px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.24), rgba(59, 130, 246, 0.2));
}

.rank-row h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
}

.rank-row p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.rank-score {
    color: var(--pink);
    font-weight: 900;
    white-space: nowrap;
}

.page-title {
    padding: 46px 0 22px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #be185d;
    font-weight: 780;
}

.filter-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px 180px;
    gap: 12px;
    margin: 18px 0 24px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--soft-shadow);
}

.filter-card input,
.filter-card select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0 14px;
    color: #334155;
    background: white;
    outline: none;
}

.filter-card input:focus,
.filter-card select:focus {
    border-color: rgba(236, 72, 153, 0.45);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
}

.search-results-note {
    margin: 0 0 14px;
    color: var(--muted);
}

.detail-hero {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    padding: 28px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
}

.detail-poster {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.24), rgba(59, 130, 246, 0.2));
    box-shadow: 0 24px 48px rgba(93, 83, 124, 0.2);
}

.detail-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 20px;
}

.detail-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    color: #be185d;
    background: #fff1f8;
    font-size: 0.86rem;
    font-weight: 820;
}

.detail-copy p {
    color: #475569;
    font-size: 1.02rem;
}

.player-section {
    margin: 34px 0;
}

.video-box {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: #0f172a;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.24);
    aspect-ratio: 16 / 9;
}

.video-box video {
    width: 100%;
    height: 100%;
    display: block;
    background: #0f172a;
}

.play-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: white;
    background: radial-gradient(circle at center, rgba(236, 72, 153, 0.18), rgba(15, 23, 42, 0.72));
    cursor: pointer;
}

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

.play-center {
    display: grid;
    place-items: center;
    gap: 14px;
}

.play-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    box-shadow: 0 24px 45px rgba(244, 63, 94, 0.3);
    font-size: 2rem;
}

.play-text {
    font-weight: 900;
    font-size: 1.12rem;
}

.player-message {
    margin-top: 10px;
    color: #be185d;
    min-height: 1.6em;
    font-size: 0.92rem;
}

.content-card {
    padding: 26px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--soft-shadow);
}

.content-card h2 {
    margin: 0 0 12px;
    font-size: 1.55rem;
}

.content-card p {
    margin: 0 0 14px;
    color: #475569;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.related-card {
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--soft-shadow);
}

.related-poster {
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.24), rgba(59, 130, 246, 0.2));
}

.related-card strong {
    display: -webkit-box;
    padding: 10px;
    min-height: 3.8em;
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.site-footer {
    margin-top: 58px;
    padding: 44px 0 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(241, 245, 249, 0.92));
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

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

.footer-grid h3 {
    margin: 0 0 12px;
    color: #1f2937;
    font-size: 1rem;
}

.footer-grid p,
.footer-grid a {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-grid a {
    margin: 7px 0;
}

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

.footer-brand {
    margin-bottom: 12px;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 32px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    color: #94a3b8;
    font-size: 0.86rem;
}

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

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

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

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

    .hero-art {
        display: none;
    }

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

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

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

    .hero {
        min-height: 560px;
        border-radius: 26px;
    }

    .hero-track {
        min-height: 560px;
    }

    .hero-slide {
        padding: 32px 24px 86px;
    }

    .hero-controls {
        left: 24px;
        bottom: 24px;
    }

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

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

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

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

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

    .rank-row {
        grid-template-columns: 42px 70px minmax(0, 1fr);
    }

    .rank-score {
        grid-column: 3;
    }

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

@media (max-width: 560px) {
    .nav-shell,
    .page-main,
    .hero,
    .footer-grid,
    .footer-bottom,
    .mobile-nav {
        width: min(100% - 22px, 1180px);
    }

    .brand {
        font-size: 1rem;
    }

    .brand-icon {
        width: 30px;
        height: 30px;
    }

    .hero h1,
    .hero h2 {
        font-size: 2.25rem;
    }

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

    .mobile-category-list {
        grid-template-columns: 1fr;
    }

    .section-head {
        display: block;
    }

    .rank-row {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .rank-thumb {
        display: none;
    }

    .rank-score {
        grid-column: 2;
    }

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