:root {
    --pink: #ec4899;
    --pink-dark: #db2777;
    --purple: #a855f7;
    --blue: #60a5fa;
    --text: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #fdf2f8;
    --bg: #fff7fb;
    --shadow: 0 20px 55px rgba(31, 41, 55, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(135deg, #fff1f7 0%, #f5f3ff 48%, #eff6ff 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(244, 114, 182, 0.95), rgba(192, 132, 252, 0.95), rgba(96, 165, 250, 0.95));
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.24);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--pink);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.logo-text {
    font-size: 22px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #fff;
    font-weight: 700;
}

.nav-link {
    position: relative;
    padding: 26px 0;
    opacity: 0.95;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 3px;
    border-radius: 999px;
    background: #fff;
    opacity: 0;
    transform: scaleX(0.4);
    transition: 0.2s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% - 10px);
    left: -18px;
    min-width: 180px;
    padding: 10px;
    display: grid;
    gap: 4px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    color: #374151;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.dropdown-panel a {
    padding: 9px 12px;
    border-radius: 12px;
    font-size: 14px;
}

.dropdown-panel a:hover {
    color: var(--pink-dark);
    background: #fdf2f8;
}

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

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

.header-search input,
.mobile-search input,
.search-panel input,
.page-filter input {
    border: 0;
    outline: 0;
    color: #374151;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    padding: 12px 16px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.header-search input {
    width: 230px;
}

.header-search button,
.mobile-search button,
.search-panel button {
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    color: var(--pink-dark);
    background: #fff;
    font-weight: 800;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 99px;
    background: #fff;
}

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

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

.mobile-search input {
    flex: 1;
}

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

.mobile-links a {
    color: #fff;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
}

.site-main {
    min-height: 60vh;
}

.hero-shell {
    position: relative;
    height: min(680px, calc(100vh - 40px));
    min-height: 560px;
    overflow: hidden;
    background: #111827;
}

.hero-slider,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
}

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

.hero-overlay,
.detail-hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 20%, rgba(236, 72, 153, 0.34), transparent 34%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.56) 45%, rgba(0, 0, 0, 0.14) 100%);
}

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

.hero-content > * {
    max-width: 680px;
}

.hero-badge,
.page-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 8px 15px;
    color: #fff;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(236, 72, 153, 0.28);
}

.hero-content h1,
.page-hero h1,
.detail-title-block h1 {
    margin: 18px 0 14px;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-content p,
.page-hero p,
.detail-title-block p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(16px, 2vw, 21px);
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0;
}

.hero-tags span,
.tag-row span {
    padding: 6px 11px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 700;
}

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

.primary-button,
.ghost-button,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.22s ease;
}

.primary-button {
    padding: 14px 26px;
    color: #fff;
    background: var(--pink);
    box-shadow: 0 18px 40px rgba(236, 72, 153, 0.34);
}

.primary-button:hover {
    transform: translateY(-2px) scale(1.02);
    background: var(--pink-dark);
}

.ghost-button {
    padding: 13px 24px;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
}

.ghost-button:hover {
    background: rgba(255, 255, 255, 0.28);
}

.hero-card {
    position: absolute;
    right: max(32px, calc((100vw - 1180px) / 2));
    bottom: 76px;
    z-index: 3;
    width: 250px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.hero-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: linear-gradient(135deg, #fbcfe8, #dbeafe);
}

.hero-card span {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.72);
    font-weight: 900;
}

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

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

.hero-dot.is-active {
    background: #fff;
}

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

.highlight-section {
    padding: 72px 0;
    background: linear-gradient(90deg, rgba(252, 231, 243, 0.9), rgba(237, 233, 254, 0.88), rgba(219, 234, 254, 0.9));
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.16;
    letter-spacing: -0.03em;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--muted);
}

.section-link {
    color: var(--pink-dark);
    gap: 6px;
    white-space: nowrap;
}

.section-link:hover {
    transform: translateX(3px);
}

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

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

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

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

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

.movie-card > a {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 32px rgba(31, 41, 55, 0.08);
    transition: 0.25s ease;
}

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

.poster-frame {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fce7f3, #ede9fe 52%, #dbeafe);
}

.poster-frame img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card > a:hover .poster-frame img {
    transform: scale(1.06);
}

.wide-poster img {
    aspect-ratio: 16 / 10;
}

.duration-pill {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 5px 8px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.74);
    font-size: 12px;
    font-weight: 800;
}

.card-body {
    padding: 17px;
}

.card-kicker {
    margin-bottom: 6px;
    color: var(--pink-dark);
    font-size: 12px;
    font-weight: 900;
}

.card-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.32;
}

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

.tag-row {
    margin: 14px 0;
}

.tag-row span {
    color: #6b21a8;
    background: #f3e8ff;
}

.card-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
}

.card-meta span,
.detail-meta span {
    border-radius: 999px;
    padding: 5px 9px;
    background: #f9fafb;
}

.horizontal-card > a {
    display: grid;
    grid-template-columns: 42% 1fr;
}

.horizontal-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ranking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 24px;
    align-items: start;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 17px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 26px rgba(31, 41, 55, 0.07);
    transition: 0.2s ease;
}

.ranking-row:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.ranking-number {
    color: var(--pink-dark);
    font-size: 24px;
    font-weight: 1000;
}

.ranking-title {
    min-width: 0;
    font-size: 18px;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-info {
    color: var(--muted);
    font-size: 14px;
}

.category-section {
    background: #fff;
}

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

.category-tile,
.category-overview-card {
    min-height: 170px;
    border-radius: 24px;
    padding: 22px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.45), transparent 22%),
        linear-gradient(135deg, var(--pink), var(--purple) 54%, var(--blue));
    box-shadow: 0 18px 42px rgba(168, 85, 247, 0.2);
    transition: 0.22s ease;
}

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

.category-tile span,
.category-main-link span {
    display: block;
    font-size: 22px;
    font-weight: 1000;
}

.category-tile strong {
    display: block;
    margin: 15px 0 8px;
    font-size: 15px;
}

.category-tile small,
.category-main-link p {
    color: rgba(255, 255, 255, 0.82);
}

.page-main {
    background: linear-gradient(135deg, #fff7fb, #f5f3ff 50%, #eff6ff);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 66px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.24), transparent 26%),
        linear-gradient(120deg, #db2777, #8b5cf6 58%, #2563eb);
}

.page-hero h1 {
    max-width: 850px;
}

.page-hero p {
    max-width: 760px;
}

.page-filter {
    margin-top: 26px;
}

.page-filter input {
    width: min(620px, 100%);
    padding: 15px 20px;
}

.category-overview-card {
    display: grid;
    gap: 18px;
    min-height: 240px;
}

.category-samples {
    display: grid;
    gap: 8px;
}

.category-samples a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.16);
}

.empty-state {
    display: none;
    margin-top: 24px;
    padding: 34px;
    text-align: center;
    border-radius: 22px;
    color: var(--muted);
    background: #fff;
}

.empty-state.is-visible {
    display: block;
}

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

.ranking-page-link {
    display: grid;
    grid-template-columns: 70px 74px minmax(160px, 0.9fr) minmax(220px, 1.5fr) 74px;
    gap: 16px;
    align-items: center;
    padding: 12px 16px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(31, 41, 55, 0.06);
    transition: 0.2s ease;
}

.ranking-page-link:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.ranking-page-link img {
    width: 74px;
    height: 92px;
    object-fit: cover;
    border-radius: 14px;
    background: linear-gradient(135deg, #fce7f3, #dbeafe);
}

.ranking-page-title {
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-page-desc {
    color: var(--muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-page-score {
    color: var(--pink-dark);
    font-weight: 1000;
    text-align: right;
}

.search-panel {
    width: min(680px, 100%);
    margin-top: 26px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
}

.search-panel input {
    flex: 1;
    padding: 15px 20px;
}

.search-panel button {
    padding: 15px 26px;
}

.search-summary {
    margin-bottom: 22px;
    color: var(--muted);
    font-weight: 800;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background-image: var(--detail-image);
    background-size: cover;
    background-position: center;
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 54px 0 62px;
}

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

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

.detail-heading {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 34px;
    align-items: end;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #fce7f3, #dbeafe);
}

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

.detail-title-block h1 {
    margin-top: 14px;
}

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

.player-card,
.detail-article,
.detail-sidebar {
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 36px rgba(31, 41, 55, 0.08);
}

.player-card,
.detail-article {
    padding: 24px;
}

.player-card h2,
.detail-article h2,
.detail-sidebar h2 {
    margin: 0 0 18px;
    font-size: 24px;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #000;
    aspect-ratio: 16 / 9;
}

.movie-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #fff;
    background: radial-gradient(circle at center, rgba(236, 72, 153, 0.34), rgba(0, 0, 0, 0.58));
    transition: 0.22s ease;
}

.play-circle {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--pink-dark);
    background: rgba(255, 255, 255, 0.95);
    font-size: 31px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.player-box.is-playing .player-overlay,
.player-box.is-ready .player-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.player-box.is-loading .play-circle {
    animation: pulse 1s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.detail-article {
    margin-top: 24px;
}

.detail-article p {
    margin: 0 0 24px;
    color: #374151;
    font-size: 17px;
}

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

.info-grid div {
    padding: 16px;
    border-radius: 18px;
    background: #f9fafb;
}

.info-grid span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.info-grid strong {
    display: block;
    margin-top: 6px;
}

.detail-sidebar {
    padding: 20px;
    position: sticky;
    top: 96px;
}

.side-grid {
    grid-template-columns: 1fr;
    gap: 16px;
}

.side-grid .movie-card:nth-child(n+5) {
    display: none;
}

.side-grid .poster-frame img {
    aspect-ratio: 16 / 10;
}

.site-footer {
    color: #d1d5db;
    background: #111827;
}

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

.footer-logo {
    color: #fff;
}

.footer-brand p {
    max-width: 430px;
    margin: 18px 0 0;
    color: #9ca3af;
}

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

.footer-columns h3 {
    margin: 0 0 14px;
    color: #fff;
}

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

.footer-links a {
    color: #9ca3af;
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 14px;
}

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

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

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

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

    .detail-sidebar {
        position: static;
    }

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

@media (max-width: 820px) {
    .header-inner {
        height: 66px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .logo-text {
        font-size: 19px;
    }

    .hero-shell {
        height: auto;
        min-height: 620px;
    }

    .hero-content {
        padding-top: 74px;
        justify-content: flex-start;
    }

    .hero-card {
        width: 150px;
        right: 18px;
        bottom: 62px;
    }

    .hero-content > * {
        max-width: calc(100% - 120px);
    }

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

    .ranking-page-link {
        grid-template-columns: 52px 62px minmax(0, 1fr) 58px;
    }

    .ranking-page-desc {
        display: none;
    }

    .detail-heading {
        grid-template-columns: 140px minmax(0, 1fr);
        gap: 18px;
    }

    .detail-title-block h1 {
        font-size: 32px;
    }

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

@media (max-width: 560px) {
    .container,
    .header-inner,
    .mobile-nav,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 24px, 1180px);
    }

    .hero-shell {
        min-height: 640px;
    }

    .hero-content > * {
        max-width: 100%;
    }

    .hero-card {
        display: none;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 36px;
    }

    .content-section,
    .highlight-section {
        padding: 48px 0;
    }

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

    .four-cols,
    .three-cols,
    .two-cols,
    .category-grid,
    .category-overview-grid,
    .side-grid {
        grid-template-columns: 1fr;
    }

    .horizontal-card > a {
        grid-template-columns: 1fr;
    }

    .ranking-row {
        grid-template-columns: 50px 1fr;
    }

    .ranking-info {
        grid-column: 2;
    }

    .ranking-page-link {
        grid-template-columns: 44px 58px minmax(0, 1fr);
    }

    .ranking-page-score {
        grid-column: 3;
        text-align: left;
    }

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

    .detail-poster {
        width: 180px;
    }

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