:root {
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-200: #fbcfe8;
    --pink-300: #f9a8d4;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --rose-500: #f43f5e;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --shadow-card: 0 14px 40px rgba(236, 72, 153, 0.13);
    --shadow-hover: 0 24px 60px rgba(244, 63, 94, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-800);
    background: linear-gradient(180deg, var(--pink-50), #ffffff 42%, var(--pink-50));
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-nav {
    background: linear-gradient(90deg, var(--pink-400), var(--pink-300), #fda4af);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.26);
    backdrop-filter: blur(12px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 22px;
}

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

.brand {
    color: #ffffff;
    font-size: 24px;
    white-space: nowrap;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: var(--pink-500);
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(255, 255, 255, 0.26);
    transition: transform 0.3s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(-5deg);
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    transform: translateY(-1px);
}

.site-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.site-search-input,
.site-search-form input,
.search-page-form input,
.filter-tools input,
.filter-tools select {
    border: 0;
    outline: none;
}

.site-search-form input {
    width: 180px;
    padding: 8px 12px;
    color: #ffffff;
    background: transparent;
}

.site-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.78);
}

.site-search-button,
.site-search-form button,
.search-page-form button {
    border: 0;
    border-radius: 999px;
    padding: 8px 16px;
    color: var(--pink-500);
    background: #ffffff;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(244, 63, 94, 0.16);
}

.mobile-toggle {
    display: none;
    border: 0;
    border-radius: 999px;
    color: var(--pink-500);
    background: #ffffff;
    padding: 8px 14px;
    font-weight: 700;
}

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

.mobile-menu.is-open {
    display: flex;
}

.mobile-link {
    flex: 1;
    padding: 9px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    text-align: center;
    font-size: 14px;
}

.mobile-link.active {
    background: rgba(255, 255, 255, 0.28);
}

.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #0f172a;
}

.hero-stage,
.hero-slide,
.hero-slide img,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

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

.hero-shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.42) 54%, rgba(0, 0, 0, 0.12));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 72px;
}

.hero-copy {
    max-width: 760px;
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.82);
}

.eyebrow.pink {
    color: var(--pink-500);
}

.hero-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 7vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-copy p {
    max-width: 660px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
}

.tag-row span {
    color: var(--pink-500);
    background: var(--pink-100);
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.primary-button {
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
    box-shadow: 0 16px 34px rgba(236, 72, 153, 0.35);
}

.ghost-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.hero-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.48);
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.25s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    transition: width 0.25s ease, background 0.25s ease;
}

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

.quick-search-panel,
.section-block {
    margin-top: 54px;
}

.quick-search-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
    align-items: center;
    gap: 28px;
    padding: 30px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.quick-search-panel h2,
.section-heading h2,
.page-hero h1,
.detail-side-content h1 {
    margin: 0;
    color: var(--gray-800);
}

.quick-search-panel h2,
.section-heading h2 {
    font-size: clamp(26px, 4vw, 36px);
}

.quick-search-panel p {
    margin: 12px 0 0;
    color: var(--gray-600);
    line-height: 1.8;
}

.landing-search,
.search-page-form {
    display: flex;
    gap: 10px;
    background: var(--pink-50);
    border: 1px solid var(--pink-100);
}

.landing-search input,
.search-page-form input {
    flex: 1;
    min-width: 0;
    padding: 13px 18px;
    color: var(--gray-700);
}

.landing-search button,
.search-page-form button {
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
}

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

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

.section-heading a {
    color: var(--pink-500);
    font-weight: 800;
}

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

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

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

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

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

.movie-card a {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.poster-wrap {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--pink-100);
}

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

.movie-card a:hover img,
.category-tile:hover img,
.category-overview-card:hover img {
    transform: scale(1.06);
}

.card-category,
.card-duration {
    position: absolute;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.card-category {
    top: 12px;
    left: 12px;
    background: var(--pink-500);
}

.card-duration {
    right: 12px;
    bottom: 12px;
    background: rgba(0, 0, 0, 0.66);
}

.card-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 38px;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.movie-card a:hover .card-play {
    opacity: 1;
    background: rgba(0, 0, 0, 0.28);
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
}

.card-body h3 {
    display: -webkit-box;
    min-height: 48px;
    margin: 0;
    overflow: hidden;
    color: var(--gray-800);
    font-size: 17px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: var(--gray-500);
    font-size: 13px;
}

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

.movie-card-wide a {
    display: grid;
    grid-template-columns: 220px 1fr;
}

.movie-card-wide .poster-wrap {
    height: 100%;
    aspect-ratio: auto;
}

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

.ranking-panel,
.filter-panel,
.detail-main-card,
.detail-related-panel,
.detail-side-card,
.player-card,
.category-overview-card {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.ranking-panel {
    padding: 22px;
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ranking-item {
    display: grid;
    grid-template-columns: 36px 74px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    background: var(--pink-50);
    transition: transform 0.25s ease, background 0.25s ease;
}

.ranking-item:hover {
    transform: translateX(4px);
    background: var(--pink-100);
}

.ranking-number {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    font-weight: 900;
}

.ranking-item img {
    width: 74px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
}

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

.ranking-score {
    color: var(--pink-500);
    font-size: 13px;
    font-weight: 800;
}

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

.category-tile {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: 24px;
    color: #ffffff;
    background: #0f172a;
    box-shadow: var(--shadow-card);
}

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

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18));
}

.category-tile div {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 22px;
}

.category-tile h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.category-tile p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.page-hero {
    color: #ffffff;
    background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.42), transparent 22%), linear-gradient(120deg, var(--pink-400), var(--rose-500));
}

.slim-hero {
    padding: 68px 0;
}

.page-hero h1 {
    max-width: 850px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 56px);
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 760px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
}

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

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

.category-overview-card {
    overflow: hidden;
}

.category-cover-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 132px;
    overflow: hidden;
}

.category-cover-strip img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-overview-body {
    padding: 20px;
}

.category-overview-body h2 {
    margin: 0 0 10px;
}

.category-overview-body p {
    color: var(--gray-600);
    line-height: 1.7;
}

.mini-link-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.mini-link-list a {
    color: var(--pink-500);
    font-weight: 700;
}

.filter-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
    padding: 20px;
}

.category-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-nav-list a {
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--gray-700);
    background: var(--gray-100);
    font-weight: 700;
}

.category-nav-list a.is-active,
.category-nav-list a:hover {
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
}

.filter-tools {
    display: flex;
    gap: 12px;
}

.filter-tools input,
.filter-tools select {
    min-height: 42px;
    border-radius: 14px;
    padding: 0 14px;
    color: var(--gray-700);
    background: var(--pink-50);
}

.filter-tools input {
    flex: 1;
}

.rankings-layout {
    grid-template-columns: minmax(0, 1fr) 390px;
}

.ranking-side-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.search-page-form {
    max-width: 760px;
    margin-top: 26px;
    padding: 8px;
    border-radius: 999px;
}

.search-grid .movie-card.is-hidden,
.sortable-grid .movie-card.is-hidden {
    display: none;
}

.movie-detail-hero {
    padding: 38px 0 48px;
    color: #ffffff;
    background: linear-gradient(120deg, #15121c, #3b1830 48%, var(--pink-500));
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) 420px;
    gap: 26px;
    align-items: stretch;
}

.player-card {
    overflow: hidden;
    background: #050505;
}

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

.player-frame video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-play-icon {
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    color: var(--pink-500);
    background: #ffffff;
    font-size: 38px;
    box-shadow: 0 18px 46px rgba(255, 255, 255, 0.22);
}

.player-play-text {
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.detail-side-card {
    overflow: hidden;
    color: var(--gray-800);
}

.detail-side-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.detail-side-content {
    padding: 24px;
}

.detail-side-content h1 {
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.18;
}

.detail-side-content p {
    color: var(--gray-600);
    line-height: 1.8;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
    color: var(--gray-600);
    font-size: 14px;
}

.detail-meta-grid a {
    color: var(--pink-500);
    font-weight: 800;
}

.detail-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    gap: 26px;
    margin-top: 34px;
}

.detail-main-card,
.detail-related-panel {
    padding: 26px;
}

.detail-main-card h2,
.detail-related-panel h2 {
    margin: 0 0 16px;
    font-size: 24px;
}

.detail-main-card p {
    margin: 0 0 22px;
    color: var(--gray-700);
    line-height: 1.92;
}

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

.movie-info-list div {
    padding: 14px;
    border-radius: 16px;
    background: var(--pink-50);
}

.movie-info-list dt {
    color: var(--gray-500);
    font-size: 13px;
}

.movie-info-list dd {
    margin: 6px 0 0;
    color: var(--gray-800);
    font-weight: 800;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    background: var(--pink-50);
    transition: transform 0.25s ease, background 0.25s ease;
}

.related-item:hover {
    transform: translateX(4px);
    background: var(--pink-100);
}

.related-item img {
    width: 104px;
    height: 68px;
    flex: 0 0 auto;
    border-radius: 12px;
    object-fit: cover;
}

.related-item span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.related-item strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--gray-800);
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-item em {
    color: var(--gray-500);
    font-size: 13px;
    font-style: normal;
}

.site-footer {
    margin-top: 70px;
    background: linear-gradient(180deg, var(--pink-50), var(--pink-100));
    border-top: 1px solid var(--pink-100);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 36px;
    padding: 42px 0;
}

.footer-logo {
    color: var(--gray-800);
    font-size: 22px;
}

.footer-brand p,
.footer-links a {
    color: var(--gray-600);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

.footer-bottom {
    padding: 18px 0 26px;
    color: var(--gray-600);
    border-top: 1px solid var(--pink-200);
    text-align: center;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .four-col,
    .three-col,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .two-column-layout,
    .rankings-layout,
    .detail-grid,
    .detail-content-layout {
        grid-template-columns: 1fr;
    }

    .detail-side-card {
        display: grid;
        grid-template-columns: 260px 1fr;
    }

    .detail-side-card img {
        height: 100%;
    }
}

@media (max-width: 860px) {
    .desktop-nav,
    .nav-inner > .site-search-form {
        display: none;
    }

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

    .hero-carousel {
        height: 520px;
    }

    .hero-arrow {
        display: none;
    }

    .quick-search-panel,
    .footer-grid,
    .wide-card-grid,
    .movie-card-wide a,
    .detail-side-card {
        grid-template-columns: 1fr;
    }

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

    .detail-side-card img {
        height: 240px;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

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

    .hero-carousel {
        height: 500px;
    }

    .hero-content {
        padding-bottom: 56px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-actions,
    .filter-tools,
    .search-page-form,
    .landing-search {
        flex-direction: column;
    }

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

    .movie-info-list,
    .detail-meta-grid {
        grid-template-columns: 1fr;
    }

    .ranking-item {
        grid-template-columns: 32px 64px minmax(0, 1fr);
    }

    .ranking-score {
        display: none;
    }
}
