:root {
    --amber-950: #451a03;
    --amber-900: #78350f;
    --amber-800: #92400e;
    --amber-700: #b45309;
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-100: #fef3c7;
    --orange-100: #ffedd5;
    --orange-700: #c2410c;
    --text: #1f2937;
    --muted: #6b7280;
    --paper: #ffffff;
    --soft: #fff7ed;
    --line: #fde68a;
    --shadow: 0 18px 45px rgba(120, 53, 15, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background: linear-gradient(180deg, #fffbeb 0%, #ffffff 42%, #fff7ed 100%);
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, var(--amber-950), var(--amber-800), var(--amber-950));
    box-shadow: 0 10px 25px rgba(69, 26, 3, 0.24);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff7ed;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    font-weight: 900;
    color: var(--amber-950);
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.28);
}

.brand-copy {
    display: grid;
    gap: 1px;
}

.brand-copy strong {
    font-size: 21px;
    letter-spacing: 0.02em;
}

.brand-copy em {
    color: rgba(254, 243, 199, 0.78);
    font-size: 12px;
    font-style: normal;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #fef3c7;
    font-weight: 700;
}

.nav-link,
.nav-dropdown > button {
    border: 0;
    padding: 8px 0;
    color: #fef3c7;
    font: inherit;
    background: transparent;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-dropdown > button:hover {
    color: #ffffff;
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: 36px;
    right: 0;
    width: 180px;
    padding: 10px;
    display: grid;
    gap: 2px;
    border-radius: 14px;
    color: var(--text);
    background: #ffffff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

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

.dropdown-panel a:hover {
    color: var(--amber-900);
    background: #fffbeb;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    background: #fff7ed;
}

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

.mobile-menu a {
    display: block;
    padding: 10px 12px;
    color: #fef3c7;
    border-radius: 10px;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.mobile-menu.open {
    display: grid;
}

.hero-carousel {
    position: relative;
    height: 74vh;
    min-height: 560px;
    overflow: hidden;
    background: #000000;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 1s ease;
}

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

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

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.46) 42%, rgba(0, 0, 0, 0.14) 100%),
        linear-gradient(0deg, rgba(69, 26, 3, 0.65) 0%, rgba(69, 26, 3, 0) 42%);
}

.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;
    color: #ffffff;
}

.hero-kicker {
    display: inline-flex;
    padding: 8px 13px;
    border-radius: 999px;
    color: #451a03;
    background: #fef3c7;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.22);
}

.hero-content h1 {
    max-width: 760px;
    margin: 20px 0 14px;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

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

.hero-tags,
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span,
.tag-cloud span {
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 900;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
    color: #ffffff;
    background: var(--amber-600);
    box-shadow: 0 14px 26px rgba(217, 119, 6, 0.28);
}

.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px);
}

.ghost-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.ghost-button.light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
}

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

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

.hero-arrow.prev {
    left: 24px;
}

.hero-arrow.next {
    right: 24px;
}

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

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

.hero-dot.active {
    width: 34px;
    background: var(--amber-500);
}

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

.intro-band {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
}

.intro-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 42px);
}

.intro-copy p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.quick-links a {
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--amber-900);
    background: #fef3c7;
    font-weight: 800;
}

.section-title {
    margin-bottom: 26px;
}

.section-title span {
    display: inline-flex;
    margin-bottom: 9px;
    color: var(--amber-700);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-title h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 38px);
}

.section-title.light span,
.section-title.light h2 {
    color: #ffffff;
}

.list-tools {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    margin: 0 0 24px;
}

.search-box {
    flex: 1;
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.search-box input {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    outline: none;
    color: var(--text);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(120, 53, 15, 0.06);
}

.search-box input:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.clear-search {
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 14px;
    color: #ffffff;
    background: var(--amber-700);
    font-weight: 900;
    cursor: pointer;
}

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

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

.poster-card,
.compact-card,
.horizontal-card,
.rank-card,
.category-overview-card {
    overflow: hidden;
    border: 1px solid rgba(253, 230, 138, 0.72);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(120, 53, 15, 0.10);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.poster-card:hover,
.compact-card:hover,
.horizontal-card:hover,
.rank-card:hover,
.category-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.poster-cover,
.compact-cover,
.horizontal-cover,
.rank-cover {
    position: relative;
    display: block;
    overflow: hidden;
    background: #1f2937;
}

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

.poster-cover img,
.compact-cover img,
.horizontal-cover img,
.rank-cover img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.poster-card:hover .poster-cover img,
.compact-card:hover .compact-cover img,
.horizontal-card:hover .horizontal-cover img,
.rank-card:hover .rank-cover img {
    transform: scale(1.08);
}

.score,
.rank-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    padding: 6px 9px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.72);
    font-size: 13px;
    font-weight: 900;
}

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

.play-dot {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #451a03;
    background: #fef3c7;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.poster-body,
.compact-body,
.horizontal-body,
.rank-info {
    padding: 18px;
}

.meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 13px;
}

.pill {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--amber-900);
    background: #fef3c7;
    font-size: 12px;
    font-weight: 900;
}

.rating {
    color: var(--amber-700);
    font-weight: 900;
}

.poster-body h3,
.horizontal-body h3,
.rank-info h3 {
    margin: 0 0 9px;
    font-size: 18px;
    line-height: 1.35;
}

.poster-body h3 a:hover,
.horizontal-body h3 a:hover,
.rank-info h3 a:hover,
.compact-title:hover {
    color: var(--amber-700);
}

.poster-body p,
.horizontal-body p,
.rank-info p {
    min-height: 46px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.tiny-meta {
    color: #9ca3af;
    font-size: 13px;
}

.feature-band {
    width: min(1180px, calc(100% - 32px));
    margin-top: 16px;
    padding: 36px;
    border-radius: 28px;
    background: linear-gradient(90deg, #ffedd5, #fffbeb, #fed7aa);
    box-shadow: var(--shadow);
}

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

.horizontal-card {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
}

.horizontal-cover {
    min-height: 100%;
}

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

.category-tile {
    min-height: 150px;
    padding: 22px;
    border: 1px solid rgba(253, 230, 138, 0.72);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(120, 53, 15, 0.08);
    transition: all 0.22s ease;
}

.category-tile:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-900), var(--orange-700));
    transform: translateY(-5px);
}

.category-tile strong {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
}

.category-tile span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.category-tile:hover span {
    color: rgba(255, 255, 255, 0.82);
}

.ranking-band,
.more-band {
    width: min(1180px, calc(100% - 32px));
    margin-top: 16px;
    padding: 42px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--amber-950), var(--orange-700));
    box-shadow: var(--shadow);
}

.rank-list {
    display: grid;
    gap: 18px;
}

.rank-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
}

.rank-cover {
    min-height: 150px;
}

.page-rank-list .rank-card {
    grid-template-columns: 240px minmax(0, 1fr);
}

.center-action {
    margin-top: 28px;
    text-align: center;
}

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

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

.compact-cover {
    aspect-ratio: 3 / 4;
}

.compact-body {
    padding: 12px;
}

.compact-title {
    display: block;
    margin-bottom: 6px;
    font-weight: 900;
    line-height: 1.4;
}

.compact-body span {
    color: var(--muted);
    font-size: 12px;
}

.no-result {
    display: none;
    padding: 28px;
    border-radius: 18px;
    color: var(--muted);
    background: #ffffff;
    text-align: center;
}

.no-result.show {
    display: block;
}

.movie-card.hidden {
    display: none;
}

.page-hero,
.detail-head {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-950), var(--orange-700));
}

.page-hero {
    padding: 82px 0;
}

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

.page-hero span,
.breadcrumb {
    color: #fde68a;
    font-weight: 900;
}

.page-hero h1 {
    margin: 12px 0 12px;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1;
}

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

.category-overview-list {
    display: grid;
    gap: 24px;
}

.category-overview-card {
    padding: 24px;
}

.category-overview-head {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.category-overview-head h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.category-overview-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.category-overview-head a {
    flex: 0 0 auto;
    padding: 10px 14px;
    border-radius: 12px;
    color: #ffffff;
    background: var(--amber-700);
    font-weight: 900;
}

.detail-head {
    min-height: 590px;
}

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

.detail-backdrop img {
    height: 100%;
    object-fit: cover;
    filter: blur(8px) saturate(1.1);
    transform: scale(1.04);
    opacity: 0.42;
}

.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(69, 26, 3, 0.94), rgba(120, 53, 15, 0.72), rgba(0, 0, 0, 0.38));
}

.detail-layout {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 590px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    padding: 58px 0;
}

.detail-poster {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

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

.breadcrumb-line {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fde68a;
    font-weight: 800;
}

.detail-intro h1 {
    margin: 18px 0 16px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1;
}

.detail-one-line {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 20px;
    line-height: 1.8;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #451a03;
    background: #fef3c7;
    font-weight: 900;
}

.detail-section {
    padding-bottom: 20px;
}

.player-module {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.movie-player,
.player-cover,
.player-cover img {
    width: 100%;
    height: 100%;
}

.movie-player {
    display: block;
    background: #000000;
}

.player-cover {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #000000;
}

.player-cover img {
    object-fit: cover;
    opacity: 0.62;
}

.player-cover span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #451a03;
    background: #fef3c7;
    font-size: 38px;
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
}

.player-cover.is-hidden {
    display: none;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
}

.detail-article,
.related-panel {
    padding: 30px;
    border: 1px solid rgba(253, 230, 138, 0.72);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(120, 53, 15, 0.08);
}

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

.detail-article p {
    margin: 0 0 26px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.9;
}

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

.info-table div {
    padding: 14px;
    border-radius: 16px;
    background: #fffbeb;
}

.info-table strong {
    display: block;
    margin-bottom: 5px;
    color: var(--amber-900);
}

.info-table span,
.info-table a {
    color: #4b5563;
}

.prev-next {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.prev-next a {
    padding: 14px 16px;
    border-radius: 14px;
    color: var(--amber-900);
    background: #fef3c7;
    font-weight: 900;
}

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

.site-footer {
    margin-top: 40px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--amber-950), var(--amber-900), var(--amber-950));
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 900;
}

.footer-logo span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--amber-950);
    background: #fef3c7;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
    line-height: 1.8;
}

.site-footer h3 {
    margin: 0 0 14px;
}

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

.site-footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(254, 243, 199, 0.22);
    color: rgba(255, 255, 255, 0.68);
    text-align: center;
}

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

    .menu-toggle {
        display: block;
    }

    .hero-carousel {
        min-height: 620px;
    }

    .hero-arrow {
        display: none;
    }

    .intro-band,
    .category-overview-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .poster-grid,
    .poster-grid.all-grid,
    .category-grid,
    .horizontal-list,
    .compact-grid,
    .footer-grid,
    .detail-content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .horizontal-card,
    .rank-card,
    .page-rank-list .rank-card {
        grid-template-columns: 160px minmax(0, 1fr);
    }

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

    .related-panel {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .top-nav,
    .mobile-menu,
    .section,
    .page-hero > div,
    .detail-layout,
    .footer-grid,
    .footer-bottom {
        width: min(100% - 24px, 1180px);
    }

    .brand-copy em {
        display: none;
    }

    .brand-copy strong {
        font-size: 18px;
    }

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

    .hero-content {
        width: min(100% - 28px, 1180px);
        padding-top: 30px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

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

    .section,
    .page-hero {
        padding: 38px 0;
    }

    .feature-band,
    .ranking-band,
    .more-band {
        width: min(100% - 24px, 1180px);
        padding: 24px;
        border-radius: 22px;
    }

    .poster-grid,
    .poster-grid.all-grid,
    .category-grid,
    .horizontal-list,
    .compact-grid,
    .compact-grid.small,
    .footer-grid,
    .detail-content-grid,
    .info-table,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .horizontal-card,
    .rank-card,
    .page-rank-list .rank-card {
        grid-template-columns: 128px minmax(0, 1fr);
    }

    .horizontal-cover,
    .rank-cover {
        min-height: 160px;
    }

    .detail-layout {
        display: block;
        padding: 36px 0;
    }

    .detail-poster {
        max-width: 230px;
        margin-bottom: 24px;
    }

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

    .detail-intro h1 {
        font-size: 36px;
    }

    .detail-one-line {
        font-size: 16px;
    }

    .player-cover span {
        width: 68px;
        height: 68px;
        font-size: 30px;
    }

    .list-tools {
        align-items: stretch;
        flex-direction: column;
    }
}
