:root {
    --earth-50: #faf8f5;
    --earth-100: #f2ede4;
    --earth-200: #e8dcc8;
    --earth-300: #dbc5a3;
    --earth-500: #b88d55;
    --earth-600: #a47549;
    --earth-700: #8a5f3e;
    --earth-900: #5a4029;
    --canyon-50: #fdf6f3;
    --canyon-100: #fae8df;
    --canyon-600: #c44e2c;
    --canyon-700: #a33f25;
    --canyon-900: #6e3021;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --shadow-soft: 0 18px 50px rgba(28, 25, 23, 0.12);
    --shadow-card: 0 10px 24px rgba(28, 25, 23, 0.10);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--stone-900);
    background: var(--stone-50);
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(214, 211, 209, 0.8);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--stone-900);
    white-space: nowrap;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--earth-600), var(--canyon-600));
    box-shadow: 0 10px 20px rgba(196, 78, 44, 0.25);
}

.brand-text {
    font-size: 20px;
    letter-spacing: -0.02em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link,
.mobile-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--stone-700);
    font-weight: 650;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: var(--earth-700);
    background: var(--earth-100);
}

.header-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
    border: 1px solid var(--stone-300);
    border-radius: 12px;
    background: #fff;
    color: var(--stone-900);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
    width: 220px;
    padding: 10px 13px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--earth-500);
    box-shadow: 0 0 0 4px rgba(184, 141, 85, 0.18);
}

.header-search button,
.mobile-search button {
    padding: 10px 14px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--earth-600);
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--stone-100);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--stone-700);
}

.mobile-panel {
    display: none;
    padding: 12px 16px 18px;
    border-top: 1px solid var(--stone-200);
    background: #fff;
}

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

.mobile-link {
    display: flex;
    margin-bottom: 4px;
}

.mobile-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-top: 10px;
}

.mobile-search input {
    min-width: 0;
    padding: 10px 12px;
}

.hero-slider {
    position: relative;
    min-height: 560px;
    height: 72vh;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, var(--earth-900), var(--stone-800), var(--canyon-900));
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.65s ease, visibility 0.65s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.05) contrast(1.05);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(28, 25, 23, 0.95), rgba(28, 25, 23, 0.72), rgba(28, 25, 23, 0.25)), linear-gradient(0deg, rgba(28, 25, 23, 0.88), rgba(28, 25, 23, 0.18));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    max-width: 760px;
    padding-top: 40px;
}

.hero-eyebrow {
    margin: 0 0 14px;
    color: var(--earth-300);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-content h1,
.hero-content h2,
.simple-page-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.hero-summary {
    max-width: 720px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 2vw, 22px);
}

.hero-tags,
.detail-meta,
.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-tags span,
.detail-meta span {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

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

.primary-button,
.ghost-button,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
    padding: 13px 24px;
    color: #fff;
    background: var(--earth-600);
    box-shadow: 0 16px 30px rgba(164, 117, 73, 0.30);
}

.primary-button:hover {
    transform: translateY(-2px);
    background: var(--earth-700);
}

.ghost-button {
    padding: 13px 22px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(12px);
}

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

.hero-controls {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 34px;
    width: min(1180px, calc(100% - 32px));
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
}

.hero-controls button {
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.hero-controls > button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    opacity: 0.72;
    transition: width 0.2s ease, opacity 0.2s ease;
}

.hero-dot.is-active {
    width: 32px;
    opacity: 1;
    background: var(--earth-300);
}

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

.section-muted {
    background: var(--stone-50);
}

.section-warm {
    background: linear-gradient(135deg, var(--stone-100), var(--earth-50));
}

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

.section-heading h2 {
    margin: 0 0 6px;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.section-heading p {
    margin: 0;
    color: var(--stone-600);
}

.section-link {
    padding: 10px 16px;
    color: var(--earth-700);
    background: var(--earth-100);
}

.section-link:hover {
    color: #fff;
    background: var(--earth-600);
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 1px 0 rgba(214, 211, 209, 0.8), var(--shadow-card);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--earth-900), var(--canyon-900));
}

.movie-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.36s ease, filter 0.36s ease;
}

.movie-card:hover .movie-cover img {
    transform: scale(1.06);
    filter: brightness(0.76);
}

.cover-year,
.cover-play {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cover-year {
    top: 12px;
    right: 12px;
    padding: 4px 9px;
    border-radius: 999px;
    color: #fff;
    background: rgba(28, 25, 23, 0.74);
    font-size: 12px;
    font-weight: 800;
}

.cover-play {
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: var(--earth-700);
    background: rgba(255, 255, 255, 0.92);
    transform: translate(-50%, -50%) scale(0.72);
    opacity: 0;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

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

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

.movie-card-body h2 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.movie-card-body h2 a:hover {
    color: var(--earth-700);
}

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

.movie-meta-line {
    justify-content: space-between;
    color: var(--stone-500);
    font-size: 12px;
}

.movie-meta-line span:last-child {
    padding: 4px 8px;
    border-radius: 999px;
    color: var(--earth-700);
    background: var(--earth-100);
}

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

.category-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--stone-800);
    box-shadow: var(--shadow-card);
}

.category-card img,
.category-overview-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.44s ease;
}

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(28, 25, 23, 0.9), rgba(28, 25, 23, 0.2));
}

.category-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    color: #fff;
}

.category-content strong {
    display: block;
    margin-bottom: 8px;
    font-size: 25px;
}

.category-content em {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-style: normal;
    font-size: 14px;
}

.ranking-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
    gap: 24px;
}

.ranking-large {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--stone-900);
    box-shadow: var(--shadow-soft);
}

.ranking-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ranking-large::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(28, 25, 23, 0.92), rgba(28, 25, 23, 0.16));
}

.ranking-large-copy {
    position: absolute;
    z-index: 2;
    left: 30px;
    right: 30px;
    bottom: 30px;
    color: #fff;
}

.ranking-large-copy em {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--canyon-600);
    font-style: normal;
    font-size: 13px;
    font-weight: 800;
}

.ranking-large-copy strong {
    display: block;
    margin-bottom: 10px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.ranking-large-copy span {
    color: rgba(255, 255, 255, 0.78);
}

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

.rank-item {
    display: grid;
    grid-template-columns: 46px 70px 1fr;
    align-items: center;
    gap: 14px;
    padding: 13px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(214, 211, 209, 0.75);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover,
.ranking-row:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.rank-number,
.ranking-row-number {
    display: inline-grid;
    place-items: center;
    color: var(--canyon-700);
    font-size: 22px;
    font-weight: 900;
}

.rank-item img {
    width: 70px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-copy strong {
    display: block;
    margin-bottom: 4px;
    line-height: 1.35;
}

.rank-copy em {
    color: var(--stone-500);
    font-style: normal;
    font-size: 13px;
}

.simple-page-hero {
    padding: 72px 0;
    color: #fff;
    background: radial-gradient(circle at 20% 15%, rgba(219, 197, 163, 0.28), transparent 28%), linear-gradient(135deg, var(--earth-900), var(--stone-800), var(--canyon-900));
}

.simple-page-hero p:last-child {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 22px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.category-overview-cover {
    min-height: 170px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--stone-900);
}

.category-overview-card h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.category-overview-card p {
    margin: 0 0 14px;
    color: var(--stone-600);
}

.category-preview-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-preview-links a {
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--earth-700);
    background: var(--earth-100);
    font-size: 13px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 160px 160px;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.filter-panel-wide {
    grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(140px, 0.8fr));
}

.filter-panel label {
    display: grid;
    gap: 6px;
    color: var(--stone-600);
    font-size: 13px;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-width: 0;
    padding: 11px 12px;
    color: var(--stone-900);
    font-weight: 500;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 62px 132px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 1px 0 rgba(214, 211, 209, 0.75);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-row img {
    width: 132px;
    height: 78px;
    border-radius: 14px;
    object-fit: cover;
}

.ranking-row-copy strong {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
}

.ranking-row-copy em,
.ranking-row-copy span {
    display: block;
    color: var(--stone-600);
    font-style: normal;
    font-size: 14px;
}

.ranking-row-link {
    padding: 8px 14px;
    border-radius: 999px;
    color: #fff;
    background: var(--earth-600);
    font-weight: 800;
}

.detail-hero {
    padding: 58px 0;
    color: #fff;
    background: linear-gradient(135deg, var(--earth-900), var(--stone-800), var(--canyon-900));
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
    background: var(--stone-900);
}

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

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: var(--earth-300);
}

.detail-intro h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.detail-one-line {
    max-width: 860px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 19px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 22px 0 28px;
}

.tag-list span {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--earth-900);
    background: var(--earth-200);
    font-size: 13px;
    font-weight: 800;
}

.detail-main-section {
    background: var(--stone-50);
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #000;
    box-shadow: var(--shadow-soft);
}

.player-shell video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
}

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #fff;
    background: linear-gradient(0deg, rgba(0,0,0,0.42), rgba(0,0,0,0.1));
    cursor: pointer;
    z-index: 4;
}

.player-start span {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    color: var(--earth-700);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
    font-size: 34px;
    transform: translateX(3px);
}

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

.detail-article {
    margin-top: 28px;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.detail-article h2,
.detail-side h2 {
    margin: 0 0 16px;
    font-size: 26px;
}

.detail-article p {
    margin: 0 0 24px;
    color: var(--stone-700);
    font-size: 17px;
}

.detail-article p:last-child {
    margin-bottom: 0;
}

.detail-side {
    position: sticky;
    top: 94px;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.related-list {
    display: grid;
    gap: 16px;
}

.related-list .movie-card {
    box-shadow: 0 1px 0 rgba(214, 211, 209, 0.75);
}

.related-list .movie-card-body h2 {
    font-size: 16px;
}

.site-footer {
    color: var(--stone-300);
    background: var(--stone-900);
}

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

.footer-logo {
    color: #fff;
    margin-bottom: 14px;
}

.footer-brand p {
    max-width: 520px;
    margin: 0;
    color: var(--stone-300);
}

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

.footer-links h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 18px;
}

.footer-links a {
    color: var(--stone-300);
}

.footer-links a:hover {
    color: var(--earth-300);
}

.footer-bottom {
    padding: 18px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: var(--stone-500);
}

[hidden] {
    display: none !important;
}

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

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

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

    .detail-side {
        position: static;
    }

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

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

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

    .site-nav {
        display: none;
    }

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

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

    .hero-slider {
        min-height: 650px;
        height: auto;
    }

    .hero-content {
        padding-top: 86px;
        padding-bottom: 120px;
    }

    .hero-shade {
        background: linear-gradient(0deg, rgba(28, 25, 23, 0.96), rgba(28, 25, 23, 0.36));
    }

    .hero-actions {
        display: grid;
    }

    .hero-controls {
        justify-content: center;
    }

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

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

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

    .category-overview-card,
    .detail-hero-grid,
    .ranking-row {
        grid-template-columns: 1fr;
    }

    .ranking-large {
        min-height: 360px;
    }

    .filter-panel,
    .filter-panel-wide {
        grid-template-columns: 1fr;
    }

    .ranking-row img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

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