:root {
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --primary-800: #075985;
    --accent-400: #f59e0b;
    --accent-600: #b45309;
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.10), 0 2px 4px -2px rgb(0 0 0 / 0.10);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.10), 0 4px 6px -4px rgb(0 0 0 / 0.10);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.12), 0 8px 10px -6px rgb(0 0 0 / 0.12);
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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(--neutral-800);
    background: linear-gradient(180deg, var(--neutral-50), #ffffff 42%, #ffffff);
}

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

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

button,
input {
    font: inherit;
}

.container {
    width: min(100% - 2rem, 80rem);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgb(229 229 229 / 0.82);
    background: rgb(255 255 255 / 0.94);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-height: 4rem;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--primary-600);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-right: auto;
}

.nav-link {
    color: var(--neutral-700);
    font-size: 0.95rem;
    font-weight: 650;
    transition: color 180ms ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
    width: 17rem;
}

.search-form input {
    width: 100%;
    border: 1px solid var(--neutral-300);
    border-radius: 999px;
    padding: 0.65rem 2.6rem 0.65rem 1rem;
    color: var(--neutral-800);
    background: #ffffff;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.search-form input:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgb(14 165 233 / 0.15);
}

.search-form button {
    position: absolute;
    right: 0.35rem;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    color: var(--neutral-500);
    background: transparent;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease;
}

.search-form button:hover {
    color: var(--primary-600);
    background: var(--primary-50);
}

.search-results {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    display: none;
    width: min(28rem, 92vw);
    max-height: 28rem;
    overflow: auto;
    padding: 0.5rem;
    border: 1px solid var(--neutral-200);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: var(--shadow-xl);
}

.search-results.is-open {
    display: grid;
    gap: 0.45rem;
}

.search-result-item {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 0.75rem;
    align-items: center;
    padding: 0.45rem;
    border-radius: 0.75rem;
    transition: background-color 180ms ease;
}

.search-result-item:hover {
    background: var(--primary-50);
}

.search-result-item img {
    width: 3.5rem;
    height: 4.5rem;
    object-fit: cover;
    border-radius: 0.65rem;
    background: var(--neutral-100);
}

.search-result-item strong,
.search-result-item span {
    display: block;
}

.search-result-item strong {
    margin-bottom: 0.2rem;
    color: var(--neutral-900);
    font-size: 0.95rem;
}

.search-result-item span {
    color: var(--neutral-500);
    font-size: 0.82rem;
}

.menu-toggle {
    display: none;
    border: 0;
    color: var(--neutral-700);
    background: transparent;
    font-size: 1.55rem;
    cursor: pointer;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: var(--neutral-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 650ms ease, transform 900ms ease;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(0 0 0 / 0.82), rgb(0 0 0 / 0.52) 45%, rgb(0 0 0 / 0.05)), linear-gradient(0deg, rgb(0 0 0 / 0.32), transparent 45%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 42rem;
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-400);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--primary-600);
}

.hero h1,
.hero h2 {
    margin: 1rem 0;
    font-size: clamp(2.45rem, 7vw, 4.75rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.hero p {
    max-width: 38rem;
    margin: 0;
    color: var(--neutral-200);
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    line-height: 1.75;
}

.hero-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.hero-meta span,
.detail-meta span,
.tag-row span,
.genre-row span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-size: 0.88rem;
    font-weight: 650;
}

.hero-meta span {
    color: var(--neutral-100);
    background: rgb(14 165 233 / 0.30);
    backdrop-filter: blur(4px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.82rem 1.75rem;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.primary-btn {
    color: #ffffff;
    background: var(--primary-600);
    box-shadow: var(--shadow-lg);
}

.primary-btn:hover {
    transform: translateY(-1px) scale(1.02);
    background: var(--primary-700);
    box-shadow: var(--shadow-xl);
}

.ghost-btn {
    color: #ffffff;
    background: rgb(255 255 255 / 0.14);
    backdrop-filter: blur(4px);
}

.ghost-btn:hover {
    background: rgb(255 255 255 / 0.24);
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    z-index: 5;
    display: flex;
    gap: 0.5rem;
    transform: translateX(-50%);
}

.hero-dot {
    width: 0.75rem;
    height: 0.75rem;
    border: 0;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.42);
    cursor: pointer;
    transition: width 180ms ease, background-color 180ms ease;
}

.hero-dot.is-active {
    width: 2.5rem;
    background: #ffffff;
}

.quick-filter {
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.quick-filter-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-block: 1rem;
}

.quick-filter-inner > span {
    flex: 0 0 auto;
    color: var(--neutral-600);
    font-weight: 800;
}

.quick-links {
    display: flex;
    gap: 0.65rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
}

.quick-links a {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    color: var(--primary-700);
    background: var(--primary-100);
    font-size: 0.9rem;
    font-weight: 750;
    transition: color 180ms ease, background-color 180ms ease;
}

.quick-links a:hover {
    color: #ffffff;
    background: var(--primary-600);
}

.section {
    padding-block: 4rem;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-heading.compact {
    margin-bottom: 1.25rem;
}

.section-heading h2 {
    margin: 0.25rem 0 0;
    color: var(--neutral-900);
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    letter-spacing: -0.035em;
}

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

.large-grid,
.movie-grid {
    display: grid;
    gap: 1.5rem;
}

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

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

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

.movie-card {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-md);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.movie-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-xl);
}

.thumb {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--neutral-100);
}

.movie-card-large .thumb {
    aspect-ratio: 16 / 9;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

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

.thumb-shade {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(0deg, rgb(0 0 0 / 0.72), rgb(0 0 0 / 0.15), transparent);
    transition: opacity 220ms ease;
}

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

.play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 999px;
    color: #ffffff;
    background: var(--primary-500);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.74);
    transition: opacity 220ms ease, transform 220ms ease;
}

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

.year-badge {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    border-radius: 999px;
    padding: 0.25rem 0.55rem;
    color: #ffffff;
    background: rgb(0 0 0 / 0.70);
    backdrop-filter: blur(4px);
    font-size: 0.78rem;
    font-weight: 800;
}

.movie-content {
    display: block;
    padding: 1rem;
}

.movie-card-large .movie-content {
    padding: 1.4rem;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
}

.movie-meta span {
    border-radius: 999px;
    padding: 0.24rem 0.55rem;
    color: var(--primary-700);
    background: var(--primary-100);
    font-size: 0.75rem;
    font-weight: 750;
}

.movie-meta span + span {
    color: var(--neutral-500);
    background: transparent;
    padding-inline: 0;
}

.movie-title,
.movie-line {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.movie-title {
    min-height: 2.55rem;
    color: var(--neutral-800);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    transition: color 180ms ease;
}

.movie-card:hover .movie-title {
    color: var(--primary-600);
}

.movie-card-large .movie-title {
    min-height: auto;
    font-size: 1.2rem;
}

.movie-line {
    margin-top: 0.55rem;
    color: var(--neutral-600);
    font-size: 0.84rem;
    line-height: 1.55;
    -webkit-line-clamp: 2;
}

.movie-card-large .movie-line {
    -webkit-line-clamp: 3;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 23rem;
    gap: 2rem;
    align-items: start;
}

.rank-list {
    display: grid;
    gap: 0.85rem;
}

.rank-card {
    display: grid;
    grid-template-columns: auto 5.5rem minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    background: #ffffff;
    box-shadow: var(--shadow-md);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.rank-card:hover {
    transform: translateX(0.2rem);
    box-shadow: var(--shadow-lg);
}

.rank-num {
    width: 2.5rem;
    color: var(--primary-600);
    font-size: 1.1rem;
    font-weight: 900;
    text-align: center;
}

.rank-card img {
    width: 5.5rem;
    height: 4.4rem;
    object-fit: cover;
    border-radius: 0.75rem;
    background: var(--neutral-100);
}

.rank-body,
.rank-title,
.rank-info,
.rank-line {
    display: block;
}

.rank-title {
    overflow: hidden;
    color: var(--neutral-900);
    font-weight: 850;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-info {
    margin-top: 0.2rem;
    color: var(--neutral-500);
    font-size: 0.84rem;
}

.rank-line {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0.3rem;
    color: var(--neutral-600);
    font-size: 0.84rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.category-panel {
    position: sticky;
    top: 5rem;
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-50), #ffffff);
    box-shadow: var(--shadow-md);
}

.category-panel h2 {
    margin: 0.35rem 0 1.25rem;
    color: var(--neutral-900);
}

.category-panel-grid {
    display: grid;
    gap: 0.75rem;
}

.category-tile,
.category-panel-grid a {
    display: block;
    border-radius: var(--radius-lg);
    padding: 0.95rem;
    background: #ffffff;
    box-shadow: var(--shadow-md);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-tile:hover,
.category-panel-grid a:hover {
    transform: translateY(-0.15rem);
    box-shadow: var(--shadow-lg);
}

.category-tile span,
.category-panel-grid span {
    display: block;
    color: var(--primary-700);
    font-weight: 850;
}

.category-tile p,
.category-panel-grid p {
    margin: 0.35rem 0 0;
    color: var(--neutral-600);
    font-size: 0.86rem;
    line-height: 1.55;
}

.page-hero {
    padding: 5rem 0 3rem;
}

.soft-hero {
    background: linear-gradient(135deg, var(--primary-50), #ffffff 48%, #f0fdf4);
}

.dark-hero {
    color: #ffffff;
    background: linear-gradient(135deg, var(--neutral-800), var(--primary-800));
}

.page-hero h1 {
    margin: 0.45rem 0 0.75rem;
    color: inherit;
    font-size: clamp(2.2rem, 5vw, 4rem);
    letter-spacing: -0.055em;
}

.page-hero p {
    max-width: 48rem;
    margin: 0;
    color: var(--neutral-600);
    font-size: 1.08rem;
    line-height: 1.75;
}

.dark-hero p {
    color: var(--neutral-200);
}

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

.category-overview-card {
    position: relative;
    min-height: 16rem;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    background: var(--neutral-900);
    box-shadow: var(--shadow-lg);
}

.category-overview-card img,
.category-overview-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.category-overview-card img {
    object-fit: cover;
    transition: transform 420ms ease;
}

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

.category-overview-shade {
    background: linear-gradient(0deg, rgb(0 0 0 / 0.82), rgb(0 0 0 / 0.18));
}

.category-overview-body {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    color: #ffffff;
}

.category-overview-body strong,
.category-overview-body span {
    display: block;
}

.category-overview-body strong {
    font-size: 1.45rem;
}

.category-overview-body span {
    margin-top: 0.35rem;
    color: var(--neutral-200);
    line-height: 1.6;
}

.full-rank-list {
    gap: 0.7rem;
}

.detail-hero {
    padding: 3rem 0 4rem;
    color: #ffffff;
    background: radial-gradient(circle at 20% 0%, rgb(56 189 248 / 0.24), transparent 28%), linear-gradient(135deg, var(--neutral-900), #0f172a 58%, var(--primary-800));
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
    gap: 2rem;
    align-items: center;
}

.player-card {
    border-radius: var(--radius-2xl);
    padding: 0.75rem;
    background: rgb(255 255 255 / 0.10);
    box-shadow: var(--shadow-xl);
}

.video-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 1.1rem;
    background: #000000;
}

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

.player-start {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: var(--primary-600);
    box-shadow: var(--shadow-xl);
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.player-start:hover {
    background: var(--primary-700);
    transform: translate(-50%, -50%) scale(1.04);
}

.player-start span {
    margin-left: 0.25rem;
    font-size: 2rem;
}

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

.detail-info h1 {
    margin: 0.7rem 0 1rem;
    font-size: clamp(2rem, 5vw, 3.75rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.lead {
    margin: 0;
    color: var(--neutral-200);
    font-size: 1.08rem;
    line-height: 1.75;
}

.detail-meta span {
    color: var(--primary-100);
    background: rgb(255 255 255 / 0.12);
}

.tag-row,
.genre-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.tag-row span {
    color: #ffffff;
    background: rgb(14 165 233 / 0.34);
}

.genre-row span {
    color: var(--primary-700);
    background: var(--primary-100);
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    color: var(--primary-400);
    font-size: 0.92rem;
    font-weight: 800;
}

.soft-hero .crumbs {
    color: var(--primary-700);
    margin-bottom: 0.9rem;
}

.prose-card {
    border-radius: var(--radius-2xl);
    padding: clamp(1.35rem, 4vw, 2.5rem);
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.prose-card h2 {
    margin: 0 0 0.9rem;
    color: var(--neutral-900);
    font-size: 1.5rem;
}

.prose-card h2 + p {
    margin-top: 0;
}

.prose-card p {
    color: var(--neutral-700);
    font-size: 1.02rem;
    line-height: 1.95;
}

.prose-card p + h2 {
    margin-top: 2rem;
}

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

.site-footer {
    margin-top: 2rem;
    padding: 3rem 0;
    color: var(--neutral-300);
    background: var(--neutral-900);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.footer-brand {
    color: #ffffff;
}

.site-footer p {
    max-width: 30rem;
    color: var(--neutral-400);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.footer-links a {
    border-radius: 999px;
    padding: 0.5rem 0.8rem;
    color: var(--neutral-200);
    background: rgb(255 255 255 / 0.08);
    transition: color 180ms ease, background-color 180ms ease;
}

.footer-links a:hover {
    color: #ffffff;
    background: var(--primary-600);
}

@media (max-width: 1180px) {
    .all-grid,
    .related-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 980px) {
    .main-nav {
        position: fixed;
        left: 1rem;
        right: 1rem;
        top: 4.6rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow: hidden;
        border: 1px solid var(--neutral-200);
        border-radius: 1rem;
        background: #ffffff;
        box-shadow: var(--shadow-xl);
    }

    .main-nav.is-open {
        display: flex;
    }

    .nav-link {
        padding: 0.9rem 1rem;
        border-bottom: 1px solid var(--neutral-100);
    }

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

    .search-form {
        width: min(14rem, 42vw);
        margin-left: auto;
    }

    .large-grid,
    .split-section,
    .detail-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-panel {
        position: static;
    }

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

@media (max-width: 720px) {
    .container {
        width: min(100% - 1rem, 80rem);
    }

    .header-inner {
        gap: 0.75rem;
    }

    .brand {
        font-size: 1.2rem;
    }

    .brand-mark {
        width: 1.75rem;
        height: 1.75rem;
    }

    .search-form {
        display: none;
    }

    .hero {
        min-height: 560px;
        height: 76vh;
    }

    .hero-overlay {
        background: linear-gradient(0deg, rgb(0 0 0 / 0.85), rgb(0 0 0 / 0.35));
    }

    .hero-content {
        align-items: flex-end;
        padding-bottom: 5rem;
    }

    .quick-filter-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .section {
        padding-block: 2.75rem;
    }

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

    .movie-grid,
    .all-grid,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

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

    .rank-card {
        grid-template-columns: auto 4.5rem minmax(0, 1fr);
        gap: 0.75rem;
    }

    .rank-card img {
        width: 4.5rem;
        height: 3.7rem;
    }

    .rank-line {
        display: none;
    }

    .detail-hero {
        padding-top: 1.25rem;
    }

    .player-card {
        padding: 0.4rem;
    }

    .player-start {
        width: 4rem;
        height: 4rem;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 460px) {
    .movie-grid,
    .all-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
}
