:root {
    --peach-50: #fff5f2;
    --peach-100: #ffe8e1;
    --peach-200: #ffd4c7;
    --peach-400: #ff9374;
    --coral-400: #ff7c64;
    --coral-500: #ff5533;
    --coral-600: #ed3010;
    --text-900: #111827;
    --text-800: #1f2937;
    --text-700: #374151;
    --text-600: #4b5563;
    --text-500: #6b7280;
    --white: #ffffff;
    --shadow: 0 20px 45px rgba(255, 85, 51, 0.14);
    --soft-shadow: 0 12px 30px rgba(31, 41, 55, 0.10);
    --sunrise: linear-gradient(135deg, #ffd4c7, #ffab9d, #ff9374, #ff7c64, #ff7a47);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text-800);
    background: linear-gradient(180deg, var(--peach-50), #ffffff 38%, var(--peach-50));
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "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;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: var(--sunrise);
    box-shadow: 0 12px 28px rgba(255, 85, 51, 0.22);
}

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

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

.brand-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 600;
}

.nav-links a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--peach-100);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

main {
    min-height: 70vh;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 560px;
    overflow: hidden;
    background: #111827;
}

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

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

.hero-slide img,
.channel-hero > img,
.detail-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 30%, rgba(255, 147, 116, 0.26), transparent 34%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.46) 45%, rgba(0, 0, 0, 0.18)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 56%);
}

.hero-content {
    position: absolute;
    left: max(32px, calc((100% - 1200px) / 2));
    bottom: 74px;
    width: min(720px, calc(100% - 64px));
    color: #ffffff;
}

.hero-kicker,
.sub-hero span,
.channel-content span,
.section-heading span {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 7px 13px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--coral-500);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero h1,
.detail-info h1 {
    margin: 20px 0 16px;
    font-size: clamp(36px, 7vw, 74px);
    line-height: 1.02;
    font-weight: 900;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

.hero p {
    max-width: 650px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.75;
}

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

.tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--coral-600);
    background: rgba(255, 232, 225, 0.92);
    font-size: 13px;
    font-weight: 700;
}

.tag-small {
    padding: 5px 9px;
    font-size: 12px;
}

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

.primary-btn,
.ghost-btn,
.panel-link,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: #ffffff;
    background: var(--sunrise);
    box-shadow: 0 14px 30px rgba(255, 85, 51, 0.32);
}

.ghost-btn {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.20);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.primary-btn:hover,
.ghost-btn:hover,
.panel-link:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.hero-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(10px);
    font-size: 36px;
    line-height: 1;
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dots button {
    width: 34px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
}

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

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

.section-heading {
    margin-bottom: 28px;
}

.section-heading-wide {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2,
.sub-hero h1,
.channel-content h1 {
    margin: 14px 0 10px;
    color: var(--text-900);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.18;
    font-weight: 900;
}

.section-heading p,
.sub-hero p,
.channel-content p {
    color: var(--text-600);
    font-size: 17px;
    line-height: 1.75;
}

.filter-panel {
    margin: 0 0 28px;
    padding: 18px;
    border: 1px solid var(--peach-200);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(16px);
}

.filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-600);
}

.filter-title span {
    color: var(--coral-500);
    font-weight: 800;
}

.filter-title strong {
    color: var(--text-900);
}

.filter-controls {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, minmax(120px, 1fr));
    gap: 12px;
}

.filter-controls input,
.filter-controls select {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--peach-200);
    border-radius: 14px;
    color: var(--text-800);
    background: #ffffff;
    outline: none;
}

.filter-controls input:focus,
.filter-controls select:focus {
    border-color: var(--coral-500);
    box-shadow: 0 0 0 4px rgba(255, 85, 51, 0.12);
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(255, 212, 199, 0.78);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(31, 41, 55, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: var(--peach-400);
    box-shadow: var(--shadow);
}

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--peach-100);
}

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

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

.movie-year,
.movie-play {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 800;
}

.movie-year {
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.58);
    font-size: 12px;
}

.movie-play {
    right: 12px;
    bottom: 12px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--coral-500);
    box-shadow: 0 10px 22px rgba(255, 85, 51, 0.35);
}

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

.movie-title {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    color: var(--text-900);
    font-size: 18px;
    font-weight: 850;
    line-height: 1.32;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.movie-title:hover {
    color: var(--coral-500);
}

.movie-desc {
    display: -webkit-box;
    min-height: 68px;
    margin: 10px 0 14px;
    overflow: hidden;
    color: var(--text-600);
    font-size: 14px;
    line-height: 1.62;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--text-500);
    font-size: 12px;
}

.movie-meta span {
    padding: 4px 8px;
    border-radius: 10px;
    background: var(--peach-50);
}

.movie-card-compact .movie-cover {
    aspect-ratio: 16 / 9;
}

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

.movie-card-compact .movie-desc {
    min-height: 46px;
    -webkit-line-clamp: 2;
}

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

.ranking-panel,
.content-panel,
.detail-sidebar,
.poster-card,
.category-card-large,
.filter-panel {
    background: rgba(255, 255, 255, 0.90);
}

.ranking-panel {
    position: sticky;
    top: 92px;
    padding: 24px;
    border: 1px solid var(--peach-200);
    border-radius: 28px;
    box-shadow: var(--soft-shadow);
}

.compact-heading {
    margin-bottom: 18px;
}

.compact-heading h2 {
    font-size: 28px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 34px 76px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.rank-number {
    color: var(--coral-500);
    font-size: 19px;
    font-weight: 900;
}

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

.rank-info {
    min-width: 0;
}

.rank-info strong,
.rank-info em {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-info strong {
    color: var(--text-900);
    font-size: 14px;
}

.rank-info em {
    color: var(--text-500);
    font-size: 12px;
    font-style: normal;
}

.rank-heat {
    color: var(--coral-600);
    font-size: 13px;
    font-weight: 800;
}

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

.panel-link,
.text-link {
    margin-top: 18px;
    color: var(--coral-600);
    background: var(--peach-100);
}

.category-section,
.featured-band {
    width: min(1200px, calc(100% - 32px));
    margin-top: 34px;
    padding: 48px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--peach-100), #ffffff 48%, #ffe4df);
    box-shadow: var(--soft-shadow);
}

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

.category-tile {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: 24px;
    color: #ffffff;
    background: var(--text-900);
    box-shadow: 0 14px 30px rgba(31, 41, 55, 0.14);
}

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

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

.category-tile span,
.category-tile p {
    position: relative;
    z-index: 2;
    display: block;
    padding: 0 18px;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.42);
}

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

.category-tile span {
    margin-top: 110px;
    font-size: 20px;
    font-weight: 900;
}

.category-tile p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    line-height: 1.55;
}

.sub-hero,
.channel-hero,
.detail-hero {
    position: relative;
    margin-top: 68px;
    overflow: hidden;
}

.sub-hero {
    display: flex;
    align-items: center;
    min-height: 360px;
    padding: 80px max(32px, calc((100% - 1200px) / 2));
    background:
        radial-gradient(circle at 80% 30%, rgba(255, 85, 51, 0.24), transparent 36%),
        linear-gradient(135deg, var(--peach-100), #ffffff 58%, #fff3f1);
}

.sub-hero > div {
    max-width: 760px;
}

.channel-hero {
    height: 430px;
    color: #ffffff;
    background: var(--text-900);
}

.channel-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.34));
}

.channel-content {
    position: absolute;
    left: max(32px, calc((100% - 1200px) / 2));
    bottom: 54px;
    width: min(680px, calc(100% - 64px));
}

.channel-content h1,
.channel-content p {
    color: #ffffff;
}

.category-list-large {
    display: grid;
    gap: 22px;
}

.category-card-large {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--peach-200);
    border-radius: 28px;
    box-shadow: var(--soft-shadow);
}

.category-cover-set {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 4px;
    background: var(--peach-100);
}

.category-cover-set img {
    width: 100%;
    height: 145px;
    border-radius: 18px;
    object-fit: cover;
}

.category-card-body {
    padding: 28px;
}

.category-card-body span {
    color: var(--coral-500);
    font-weight: 900;
}

.category-card-body h2 {
    margin: 8px 0 10px;
    color: var(--text-900);
    font-size: 30px;
}

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

.category-sample {
    margin-top: 14px;
}

.detail-hero {
    min-height: 660px;
    color: #ffffff;
    background: var(--text-900);
}

.detail-bg {
    position: absolute;
    inset: 0;
    filter: blur(1px) saturate(1.05);
    transform: scale(1.02);
}

.detail-bg-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 32%, rgba(255, 85, 51, 0.28), transparent 32%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.52) 52%, rgba(0, 0, 0, 0.22)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 56%);
}

.detail-shell {
    position: relative;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0 60px;
}

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

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

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

.poster-card {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

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

.poster-meta {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px;
}

.poster-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--coral-600);
    background: var(--peach-100);
    font-size: 12px;
    font-weight: 800;
}

.detail-info h1 {
    color: #ffffff;
}

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

.detail-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: start;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 22px 50px rgba(31, 41, 55, 0.18);
}

.player-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.play-mask {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18));
}

.play-mask span {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--sunrise);
    box-shadow: 0 18px 42px rgba(255, 85, 51, 0.36);
    font-size: 28px;
}

.play-mask strong {
    font-size: 20px;
}

.play-mask.is-hidden {
    display: none;
}

.content-panel,
.detail-sidebar {
    margin-top: 24px;
    padding: 28px;
    border: 1px solid var(--peach-200);
    border-radius: 28px;
    box-shadow: var(--soft-shadow);
}

.content-panel h2,
.info-table h2 {
    margin: 0 0 14px;
    color: var(--text-900);
    font-size: 24px;
}

.content-panel p {
    margin: 0;
    color: var(--text-700);
    font-size: 16px;
    line-height: 1.9;
}

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

.info-table div {
    padding: 14px;
    border-radius: 16px;
    background: var(--peach-50);
}

.info-table dt {
    color: var(--text-500);
    font-size: 13px;
}

.info-table dd {
    margin: 4px 0 0;
    color: var(--text-900);
    font-weight: 800;
}

.detail-sidebar {
    position: sticky;
    top: 92px;
    margin-top: 0;
}

.sidebar-grid {
    grid-template-columns: 1fr;
    gap: 16px;
}

.site-footer {
    margin-top: 36px;
    padding: 54px max(32px, calc((100% - 1200px) / 2)) 28px;
    border-top: 1px solid var(--peach-200);
    background: linear-gradient(180deg, var(--peach-50), #ffffff);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
}

.footer-brand {
    color: var(--coral-600);
    font-size: 20px;
}

.site-footer p {
    max-width: 560px;
    color: var(--text-600);
    line-height: 1.75;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: var(--text-900);
    font-size: 18px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--text-700);
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(31, 41, 55, 0.06);
}

.footer-links a:hover {
    color: var(--coral-600);
}

.copyright {
    margin-top: 30px;
    color: var(--text-500);
    font-size: 13px;
}

@media (max-width: 1100px) {
    .movie-grid,
    .movie-grid-small {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .split-layout,
    .detail-main {
        grid-template-columns: 1fr;
    }

    .ranking-panel,
    .detail-sidebar {
        position: static;
    }

    .filter-controls {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 780px) {
    .nav-shell {
        width: calc(100% - 24px);
    }

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

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 20px 18px;
        color: var(--text-800);
        background: rgba(255, 255, 255, 0.96);
        border-bottom: 1px solid var(--peach-200);
        box-shadow: 0 18px 30px rgba(31, 41, 55, 0.10);
    }

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

    .nav-links a {
        padding: 12px 0;
    }

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

    .hero-content {
        left: 20px;
        bottom: 72px;
        width: calc(100% - 40px);
    }

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

    .hero-control {
        display: none;
    }

    .page-section,
    .category-section,
    .featured-band {
        width: calc(100% - 24px);
        padding: 48px 0;
    }

    .category-section,
    .featured-band {
        padding: 28px 16px;
        border-radius: 28px;
    }

    .filter-controls,
    .footer-grid,
    .detail-grid,
    .category-card-large,
    .rank-list-full {
        grid-template-columns: 1fr;
    }

    .filter-title {
        display: block;
    }

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

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

    .movie-title {
        min-height: auto;
        font-size: 16px;
    }

    .movie-desc {
        min-height: auto;
        -webkit-line-clamp: 2;
    }

    .category-cover-set img {
        height: 118px;
    }

    .detail-shell {
        width: calc(100% - 24px);
    }

    .poster-card {
        max-width: 240px;
    }

    .detail-hero {
        min-height: 820px;
    }

    .info-table dl {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 30px 68px minmax(0, 1fr);
    }

    .rank-heat {
        display: none;
    }
}

@media (max-width: 520px) {
    .movie-grid,
    .movie-grid-small,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .sub-hero {
        min-height: 320px;
        padding: 56px 20px;
    }

    .category-tile {
        min-height: 190px;
    }

    .category-tile span {
        margin-top: 92px;
    }
}
