:root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --surface-soft: #fff7ed;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #e5e7eb;
    --amber: #d97706;
    --amber-dark: #b45309;
    --emerald: #10b981;
    --rose: #f43f5e;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    --radius: 24px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 0%, rgba(245, 158, 11, 0.18), transparent 34rem),
        radial-gradient(circle at 90% 12%, rgba(16, 185, 129, 0.14), transparent 30rem),
        var(--bg);
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.65;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(229, 231, 235, 0.82);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
}

.nav-shell {
    width: min(1240px, calc(100% - 28px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #ffffff;
    font-weight: 900;
    font-size: 22px;
    background: linear-gradient(135deg, var(--amber), #ef4444);
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.26);
}

.brand-text {
    display: grid;
    line-height: 1.15;
}

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

.brand-text em {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.nav-menu a {
    position: relative;
    color: #374151;
    font-weight: 700;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--amber);
    transition: width 0.24s ease;
}

.nav-menu a:hover {
    color: var(--amber-dark);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    border-radius: 14px;
    padding: 10px 14px;
    color: #ffffff;
    background: #111827;
    cursor: pointer;
}

.top-search {
    width: 280px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px;
    background: #ffffff;
}

.top-search input,
.hero-search input,
.inline-filter input,
.standalone-filter {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
}

.top-search input {
    padding: 8px 8px 8px 14px;
}

.top-search button,
.hero-search button,
.inline-filter button {
    border: 0;
    border-radius: 999px;
    padding: 9px 16px;
    color: #ffffff;
    font-weight: 800;
    background: var(--amber);
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: calc(100vh - 76px);
    display: grid;
    overflow: hidden;
    background: #111827;
}

.hero-slider {
    position: relative;
    min-height: calc(100vh - 76px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: center;
    gap: 52px;
    padding: 80px max(32px, calc((100vw - var(--container)) / 2)) 170px;
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-backdrop {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(17, 24, 39, 0.96) 0%, rgba(17, 24, 39, 0.78) 44%, rgba(17, 24, 39, 0.35) 100%),
        radial-gradient(circle at 18% 22%, rgba(245, 158, 11, 0.36), transparent 28rem),
        var(--hero-image);
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #ffffff;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--amber);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 14px 0 10px;
    font-size: clamp(40px, 7vw, 84px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-copy h2 {
    margin: 0 0 18px;
    color: #fbbf24;
    font-size: clamp(24px, 3.2vw, 46px);
    line-height: 1.1;
}

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

.hero-tags {
    margin-top: 24px;
}

.hero-poster {
    position: relative;
    z-index: 2;
    height: min(58vh, 620px);
    min-height: 420px;
    border-radius: 32px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.36);
}

.hero-panel {
    position: absolute;
    left: max(32px, calc((100vw - var(--container)) / 2));
    right: max(32px, calc((100vw - var(--container)) / 2));
    bottom: 42px;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    gap: 22px;
    align-items: stretch;
}

.hero-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.hero-search input {
    padding: 13px 12px;
    color: #ffffff;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.68);
}

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

.hero-thumb {
    min-height: 82px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 22px;
    padding: 12px;
    color: #ffffff;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-thumb:hover,
.hero-thumb.is-active {
    border-color: rgba(251, 191, 36, 0.84);
    background: rgba(217, 119, 6, 0.32);
    transform: translateY(-3px);
}

.hero-thumb span {
    color: #fbbf24;
    font-weight: 900;
}

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

.hero-thumb strong {
    margin-top: 4px;
    font-size: 14px;
}

.hero-thumb em {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-style: normal;
}

.section {
    padding: 72px 0;
}

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

.section-heading h2,
.rank-panel-title h2,
.info-card h2,
.side-card h2 {
    margin: 8px 0 0;
    color: #111827;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 660px;
    margin: 10px 0 0;
    color: var(--muted);
}

.section-more,
.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--amber-dark);
    font-weight: 900;
}

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

.category-card,
.category-overview-card,
.info-card,
.side-card,
.rank-panel,
.hero-mini-list {
    border: 1px solid rgba(229, 231, 235, 0.86);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.category-card {
    min-height: 170px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at 90% 20%, rgba(251, 191, 36, 0.26), transparent 8rem),
        #ffffff;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover,
.movie-card:hover,
.category-overview-card:hover,
.ranking-row:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-card span,
.category-overview-head span {
    color: var(--amber-dark);
    font-weight: 900;
}

.category-card strong,
.category-overview-head strong {
    display: block;
    margin-top: 8px;
    color: #111827;
    font-size: 22px;
    line-height: 1.15;
}

.category-card em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.cover {
    position: relative;
    display: block;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 0%, rgba(251, 191, 36, 0.46), transparent 10rem),
        linear-gradient(135deg, #111827, #374151 45%, #92400e);
}

.cover::after {
    content: attr(data-title);
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    color: #ffffff;
    font-weight: 900;
    line-height: 1.25;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.45);
}

.cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.2s ease;
}

.cover::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.72));
}

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

.image-missing {
    opacity: 0;
}

.movie-card-cover {
    height: 270px;
}

.cover-badge,
.cover-play {
    position: absolute;
    z-index: 3;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
}

.cover-badge {
    top: 14px;
    left: 14px;
    padding: 5px 10px;
    background: rgba(217, 119, 6, 0.92);
}

.cover-play {
    right: 14px;
    bottom: 14px;
    padding: 8px 12px;
    background: rgba(16, 185, 129, 0.92);
}

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

.movie-card-meta,
.rank-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.movie-card-meta a {
    color: var(--amber-dark);
}

.movie-card h3 {
    margin: 9px 0 8px;
    color: #111827;
    font-size: 20px;
    line-height: 1.25;
}

.movie-card p,
.rank-card p,
.ranking-info p,
.info-card p,
.side-card dd,
.category-overview-card p {
    color: var(--muted);
}

.movie-card p {
    min-height: 54px;
    margin: 0;
    font-size: 14px;
}

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

.movie-card .tag-row {
    margin-top: 14px;
}

.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 4px 10px;
    color: #92400e;
    font-size: 12px;
    font-weight: 800;
    background: #fffbeb;
}

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

.rank-panel {
    position: sticky;
    top: 100px;
    padding: 24px;
}

.rank-panel ol {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.rank-panel li {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
}

.rank-panel li span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 900;
    background: #111827;
}

.rank-panel li a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 900;
}

.rank-panel li em {
    color: var(--amber-dark);
    font-style: normal;
    font-weight: 900;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 900;
    cursor: pointer;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), #ef4444);
    box-shadow: 0 14px 32px rgba(217, 119, 6, 0.24);
}

.btn-soft {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-block {
    width: 100%;
}

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

.page-hero {
    padding: 76px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 84% 20%, rgba(251, 191, 36, 0.3), transparent 18rem),
        linear-gradient(135deg, #111827, #1f2937 54%, #92400e);
}

.small-hero {
    padding: 68px 0;
}

.page-hero h1,
.detail-hero h1 {
    max-width: 920px;
    margin: 10px 0 12px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1;
    letter-spacing: -0.055em;
}

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

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

.inline-filter,
.standalone-filter {
    margin-top: 26px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(18px);
}

.inline-filter {
    display: flex;
    gap: 8px;
}

.inline-filter input,
.standalone-filter {
    padding: 13px 16px;
    color: #ffffff;
}

.inline-filter input::placeholder,
.standalone-filter::placeholder {
    color: rgba(255, 255, 255, 0.68);
}

.standalone-filter {
    display: block;
    width: min(680px, 100%);
}

.hero-mini-list {
    padding: 16px;
    display: grid;
    gap: 12px;
}

.rank-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
}

.rank-cover {
    height: 118px;
    border-radius: 16px;
}

.rank-card h3,
.rank-card p {
    margin: 4px 0;
}

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

.category-overview-card {
    padding: 26px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.mini-link-list a {
    overflow: hidden;
    border-radius: 14px;
    padding: 10px 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #374151;
    background: #f9fafb;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 72px 150px 1fr;
    gap: 22px;
    align-items: center;
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: var(--radius);
    padding: 18px;
    background: rgba(255, 255, 255, 0.92);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ranking-index {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    background: #111827;
}

.rank-top .ranking-index {
    background: linear-gradient(135deg, var(--amber), #ef4444);
}

.ranking-cover {
    height: 200px;
    border-radius: 20px;
}

.ranking-info h2 {
    margin: 8px 0 8px;
    font-size: 28px;
    line-height: 1.18;
}

.detail-hero {
    padding: 58px 0 70px;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.24), transparent 20rem),
        linear-gradient(135deg, #0f172a, #1f2937 56%, #78350f);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

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

.detail-poster {
    height: 470px;
    border-radius: 30px;
    box-shadow: 0 30px 78px rgba(0, 0, 0, 0.34);
}

.player-section {
    padding-bottom: 26px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(circle at 18% 10%, rgba(245, 158, 11, 0.28), transparent 22rem),
        #020617;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
}

.play-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.24), rgba(15, 23, 42, 0.78));
    cursor: pointer;
}

.play-layer span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), #ef4444);
    box-shadow: 0 18px 44px rgba(217, 119, 6, 0.38);
    font-size: 28px;
}

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

.play-layer.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

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

.detail-main {
    display: grid;
    gap: 22px;
}

.info-card,
.side-card {
    padding: 26px;
}

.info-card p {
    margin: 16px 0 0;
    font-size: 17px;
}

.detail-side {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 100px;
}

.side-card h2 {
    font-size: 22px;
}

.side-card dl {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px 14px;
    margin: 18px 0 0;
}

.side-card dt {
    color: #111827;
    font-weight: 900;
}

.side-card dd {
    margin: 0;
}

.stacked-tags {
    margin-top: 14px;
}

.pager-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.pager-row a {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #ffffff;
    font-weight: 900;
}

.empty-state {
    display: none;
    margin-top: 26px;
    border-radius: 20px;
    padding: 28px;
    color: var(--muted);
    text-align: center;
    background: #ffffff;
}

.empty-state.is-visible {
    display: block;
}

.site-footer {
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.72);
    background: #111827;
}

.footer-shell {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0;
    display: grid;
    gap: 26px;
}

.footer-brand {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
}

.footer-shell p {
    max-width: 650px;
    margin: 12px 0 0;
}

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

.footer-links a:hover {
    color: #fbbf24;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 22px;
}

[hidden] {
    display: none !important;
}

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

    .hero-slide {
        grid-template-columns: 1fr;
        padding-bottom: 230px;
    }

    .hero-poster {
        display: none;
    }

    .hero-panel {
        grid-template-columns: 1fr;
    }

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

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

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

    .hot-layout,
    .split-hero,
    .detail-content,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .rank-panel,
    .detail-side {
        position: static;
    }
}

@media (max-width: 760px) {
    .nav-shell {
        min-height: 68px;
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 0;
    }

    .brand-text em {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        order: 5;
        width: 100%;
        display: none;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        margin-left: 0;
    }

    .nav-menu.is-open {
        display: grid;
    }

    .nav-menu a {
        border-radius: 14px;
        padding: 10px;
        text-align: center;
        background: #f9fafb;
    }

    .nav-menu a::after {
        display: none;
    }

    .hero,
    .hero-slider {
        min-height: 760px;
    }

    .hero-slide {
        padding: 48px 18px 280px;
    }

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

    .hero-copy p,
    .page-hero p,
    .detail-hero p {
        font-size: 16px;
    }

    .hero-panel {
        left: 16px;
        right: 16px;
        bottom: 24px;
    }

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

    .section {
        padding: 46px 0;
    }

    .section-heading {
        display: grid;
        align-items: start;
    }

    .category-grid,
    .category-overview-grid,
    .movie-grid,
    .compact-grid,
    .pager-row {
        grid-template-columns: 1fr;
    }

    .movie-card-cover {
        height: 320px;
    }

    .ranking-row {
        grid-template-columns: 48px 96px 1fr;
        gap: 12px;
        padding: 12px;
    }

    .ranking-index {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .ranking-cover {
        height: 132px;
    }

    .ranking-info h2 {
        font-size: 20px;
    }

    .ranking-info p,
    .ranking-info .tag-row {
        display: none;
    }

    .detail-poster {
        height: 430px;
    }

    .player-shell {
        border-radius: 20px;
    }
}
