:root {
    --cream-50: #fefdfb;
    --cream-100: #fdf8f3;
    --warm-50: #faf5f0;
    --warm-100: #f5ebe0;
    --warm-200: #e3cbb7;
    --warm-500: #8c5f45;
    --warm-600: #a86d44;
    --warm-700: #714834;
    --warm-800: #5d3d2d;
    --warm-900: #3f281f;
    --tea-50: #fdf8f3;
    --tea-100: #fbeee0;
    --tea-300: #f1bd8b;
    --tea-400: #eca368;
    --tea-600: #d9703c;
    --tea-700: #bd5d30;
    --white: #ffffff;
    --text: #3d2c24;
    --muted: #7d6558;
    --shadow-soft: 0 12px 30px rgba(93, 61, 45, 0.12);
    --shadow-strong: 0 18px 48px rgba(93, 61, 45, 0.2);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: linear-gradient(180deg, var(--cream-50) 0%, #ffffff 45%, var(--warm-50) 100%);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
    line-height: 1.65;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-soft);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--warm-800);
}

.brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--tea-600), var(--warm-600));
    box-shadow: 0 8px 22px rgba(217, 112, 60, 0.32);
    font-size: 14px;
}

.brand-name {
    font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
    font-size: 22px;
    letter-spacing: 0.04em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 15px;
    font-weight: 700;
    color: var(--warm-700);
}

.nav-link {
    position: relative;
    padding: 8px 0;
    transition: color 0.2s ease;
}

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

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--tea-600);
    transition: transform 0.2s ease;
}

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

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: var(--warm-50);
    color: var(--warm-800);
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: currentColor;
}

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

.mobile-nav.is-open {
    display: grid;
    gap: 8px;
}

.mobile-link {
    display: block;
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--warm-700);
    background: var(--cream-50);
    font-weight: 700;
}

.mobile-link.active {
    color: #ffffff;
    background: var(--tea-600);
}

.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    color: #ffffff;
    background: #111111;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

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

.hero-image,
.detail-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-overlay,
.detail-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    padding: 0 0 82px;
}

.hero-copy {
    width: min(680px, 100%);
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--tea-400);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-copy h1,
.hero-copy h2 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.hero-copy h2 {
    font-size: clamp(30px, 4.2vw, 54px);
}

.hero-copy p {
    margin: 0 0 24px;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
}

.hero-tags,
.detail-meta,
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span,
.detail-meta span {
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
}

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

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

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: #ffffff;
    background: var(--tea-600);
    box-shadow: 0 10px 28px rgba(217, 112, 60, 0.36);
}

.btn.primary:hover {
    background: var(--tea-700);
}

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

.hero-control {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
    background: rgba(0, 0, 0, 0.58);
    transform: translateY(-2px);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

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

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

.top-search {
    padding: 34px 0 10px;
}

.search-panel,
.filter-bar {
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--warm-100);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.search-panel label,
.filter-bar label {
    color: var(--warm-800);
    font-weight: 800;
}

.search-panel div {
    display: flex;
    gap: 12px;
}

.search-panel input,
.filter-bar input {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--warm-100);
    border-radius: 999px;
    padding: 0 18px;
    outline: none;
    color: var(--warm-800);
    background: var(--cream-50);
}

.search-panel input:focus,
.filter-bar input:focus {
    border-color: var(--tea-400);
    box-shadow: 0 0 0 4px rgba(236, 163, 104, 0.16);
}

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

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.story-card h2 {
    margin: 0;
    color: var(--warm-900);
    font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.18;
}

.section-heading p,
.page-hero p {
    margin: 10px 0 0;
    color: var(--muted);
}

.section-more {
    flex: 0 0 auto;
    color: var(--tea-600);
    font-weight: 800;
}

.warm-block,
.cream-block {
    width: min(1228px, 100%);
    padding-left: max(24px, calc((100% - 1180px) / 2));
    padding-right: max(24px, calc((100% - 1180px) / 2));
    border-radius: 30px;
}

.warm-block {
    background: var(--warm-50);
}

.cream-block {
    background: var(--cream-50);
}

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

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

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

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

.listing-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 26px;
}

.movie-card {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(245, 235, 224, 0.96);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card-cover {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--warm-100);
}

.card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.card-cover-mask {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.14));
    transition: opacity 0.25s ease;
}

.movie-card:hover .card-cover-mask {
    opacity: 1;
}

.play-mark,
.player-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--tea-600);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.card-label,
.rank-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 800;
}

.rank-badge {
    left: 12px;
    right: auto;
    background: var(--tea-600);
}

.card-body {
    padding: 16px;
}

.movie-card.compact .card-body {
    padding: 13px;
}

.card-body h3 {
    margin: 0 0 8px;
    color: var(--warm-900);
    font-size: 18px;
    line-height: 1.35;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.movie-card.compact .card-body h3 {
    font-size: 16px;
}

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

.movie-card.compact .card-body p {
    min-height: 42px;
    font-size: 13px;
}

.card-meta {
    color: #997666;
    font-size: 12px;
}

.card-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.card-tags span,
.detail-tags span {
    padding: 3px 9px;
    border-radius: 999px;
    color: var(--tea-700);
    background: var(--tea-100);
    font-size: 12px;
    font-weight: 700;
}

.category-grid,
.category-overview-grid,
.special-grid {
    display: grid;
    gap: 22px;
}

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

.category-card,
.category-overview-card,
.story-card {
    border: 1px solid var(--warm-100);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.category-card {
    min-height: 210px;
    padding: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card span,
.category-main-link span {
    color: var(--tea-600);
    font-weight: 800;
}

.category-card h3,
.category-main-link h2 {
    margin: 10px 0;
    color: var(--warm-900);
    font-size: 24px;
}

.category-card p,
.category-main-link p {
    margin: 0;
    color: var(--muted);
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.category-samples a {
    padding: 4px 9px;
    border-radius: 999px;
    background: var(--warm-50);
    color: var(--warm-700);
    font-size: 12px;
    font-weight: 700;
}

.year-heading {
    align-items: center;
}

.year-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.year-tab {
    min-width: 72px;
    min-height: 40px;
    border: 0;
    border-radius: 999px;
    color: var(--warm-700);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    font-weight: 800;
}

.year-tab.is-active {
    color: #ffffff;
    background: var(--tea-600);
}

.year-panel {
    display: none;
}

.year-panel.is-active {
    display: block;
}

.page-hero {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 36px auto 0;
    padding: 58px;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--warm-900), var(--warm-700) 48%, var(--tea-600));
    color: #ffffff;
    box-shadow: var(--shadow-strong);
}

.page-hero::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -72px;
    top: -92px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.page-hero > div {
    position: relative;
    max-width: 780px;
}

.page-hero h1 {
    color: #ffffff;
    font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

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

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

.category-main-link {
    display: block;
    padding: 26px 26px 18px;
}

.mini-card-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0 22px 24px;
}

.mini-card {
    position: relative;
    display: grid;
    gap: 7px;
    color: var(--warm-800);
    font-weight: 800;
}

.mini-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    object-fit: cover;
    background: var(--warm-100);
}

.mini-card span:not(.mini-rank) {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 14px;
}

.mini-card small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.mini-rank {
    position: absolute;
    z-index: 2;
    top: 8px;
    left: 8px;
    min-width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: var(--tea-600);
    font-size: 12px;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 52px 96px minmax(180px, 1fr) minmax(180px, 0.8fr) 120px;
    align-items: center;
    gap: 16px;
    min-height: 96px;
    padding: 12px 18px;
    border: 1px solid var(--warm-100);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease;
}

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

.ranking-row img {
    width: 96px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--warm-100);
}

.ranking-number {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--tea-600);
    font-weight: 900;
}

.ranking-title {
    color: var(--warm-900);
    font-size: 18px;
    font-weight: 900;
}

.ranking-meta {
    color: var(--muted);
    font-weight: 700;
}

.ranking-tag {
    justify-self: end;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--tea-700);
    background: var(--tea-100);
    font-weight: 800;
    font-size: 13px;
}

.detail-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: #ffffff;
    background: #111111;
}

.detail-bg {
    position: absolute;
    inset: 0;
}

.detail-inner {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 620px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    align-items: end;
    gap: 40px;
    padding: 76px 0;
}

.detail-poster {
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

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

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

.breadcrumb a:hover {
    color: var(--tea-400);
}

.detail-copy h1 {
    color: #ffffff;
    font-size: clamp(38px, 5vw, 68px);
}

.detail-one-line {
    max-width: 760px;
    margin: 18px 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
}

.detail-tags {
    margin: 18px 0 26px;
}

.player-section {
    padding-top: 48px;
}

.player-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: var(--shadow-strong);
}

.movie-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-layer {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.18));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-button {
    width: 78px;
    height: 78px;
    font-size: 28px;
}

.player-layer strong {
    font-size: 22px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.story-card {
    padding: 28px;
}

.story-card p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.info-card {
    grid-column: 1 / -1;
}

.info-card dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 20px 0 0;
}

.info-card dl div {
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: 14px;
    background: var(--warm-50);
}

.info-card dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.info-card dd {
    margin: 0;
    color: var(--warm-900);
    font-weight: 800;
}

.site-footer {
    margin-top: 56px;
    color: var(--warm-100);
    background: var(--warm-900);
}

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

.footer-brand {
    color: #ffffff;
    font-size: 22px;
}

.footer-main p {
    max-width: 520px;
    color: var(--warm-200);
}

.footer-col h3 {
    margin: 0 0 14px;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer-col a {
    color: var(--warm-200);
}

.footer-col a:hover {
    color: var(--tea-400);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--warm-200);
    font-size: 14px;
}

.is-filter-hidden {
    display: none !important;
}

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

    .mobile-toggle {
        display: block;
    }

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

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

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

    .detail-inner {
        grid-template-columns: 260px minmax(0, 1fr);
    }

    .ranking-row {
        grid-template-columns: 48px 84px minmax(160px, 1fr);
    }

    .ranking-meta,
    .ranking-tag {
        display: none;
    }
}

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

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

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

    .hero-control {
        top: auto;
        bottom: 26px;
        width: 42px;
        height: 42px;
        font-size: 30px;
    }

    .hero-prev {
        left: 18px;
    }

    .hero-next {
        right: 18px;
    }

    .hero-dots {
        bottom: 42px;
    }

    .hero-actions,
    .search-panel div,
    .section-heading,
    .year-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .movie-grid,
    .featured-grid,
    .small-grid,
    .tiny-grid,
    .listing-grid,
    .category-grid,
    .category-overview-grid,
    .special-grid,
    .detail-content,
    .info-card dl,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

    .page-hero {
        padding: 36px 24px;
        border-radius: 22px;
    }

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

    .detail-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 54px 0;
    }

    .detail-poster {
        width: min(300px, 100%);
    }

    .detail-hero {
        min-height: auto;
    }

    .ranking-row {
        grid-template-columns: 42px 72px 1fr;
        gap: 12px;
        padding: 10px;
    }

    .ranking-row img {
        width: 72px;
        height: 50px;
    }
}
