:root {
    --bg: #f6f9fc;
    --bg-soft: #eef7fb;
    --text: #12202f;
    --muted: #64748b;
    --line: rgba(15, 23, 42, 0.1);
    --card: #ffffff;
    --cyan: #06b6d4;
    --blue: #2563eb;
    --deep: #0f172a;
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
    --radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.header-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.28);
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link,
.mobile-link {
    border-radius: 999px;
    color: #334155;
    font-weight: 650;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link {
    padding: 10px 16px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #eef7fb;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--deep);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
    background: #ffffff;
    border-top: 1px solid var(--line);
}

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

.mobile-link {
    padding: 12px 14px;
}

.mobile-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 8px;
}

.mobile-cats a,
.filter-links a {
    padding: 8px 12px;
    border-radius: 999px;
    color: #0f766e;
    background: rgba(6, 182, 212, 0.12);
    font-weight: 650;
}

.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: #ffffff;
    background: #071526;
}

.hero-slider {
    position: relative;
    min-height: 680px;
}

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

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

.hero-bg,
.detail-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.1);
    transform: scale(1.03);
}

.hero-shade,
.detail-mask {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.28), transparent 32%),
        linear-gradient(115deg, rgba(3, 7, 18, 0.94) 0%, rgba(8, 47, 73, 0.72) 48%, rgba(15, 23, 42, 0.52) 100%);
}

.hero-content {
    position: relative;
    min-height: 600px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.55fr);
    align-items: center;
    gap: 48px;
    padding-top: 48px;
}

.hero-info h1 {
    max-width: 760px;
    margin: 18px 0;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow {
    color: #cffafe;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.section-kicker {
    color: #0891b2;
    background: rgba(6, 182, 212, 0.12);
}

.hero-line {
    max-width: 680px;
    color: #cffafe;
    font-size: clamp(18px, 2.4vw, 25px);
    line-height: 1.7;
}

.hero-tags,
.detail-tags,
.movie-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.detail-tags span,
.movie-tags span {
    border-radius: 999px;
    color: #075985;
    background: #ecfeff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 10px;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

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

.button.primary {
    color: #0f172a;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.22);
}

.button.glass {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(12px);
}

.button.outline,
.button.small {
    color: #0369a1;
    background: #ffffff;
    border: 1px solid rgba(6, 182, 212, 0.28);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.button.small {
    min-height: 38px;
    padding: 0 14px;
    font-size: 14px;
}

.hero-poster {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.32), rgba(37, 99, 235, 0.28));
    box-shadow: 0 30px 90px rgba(2, 8, 23, 0.42);
    transform: rotate(2deg);
}

.hero-poster img,
.detail-poster img,
.poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-poster img.is-missing,
.detail-poster img.is-missing,
.poster img.is-missing {
    opacity: 0;
}

.hero-controls {
    position: relative;
    z-index: 3;
    margin-top: -72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 30px;
}

.hero-dots,
.hero-mini-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 38px;
    background: #ffffff;
}

.hero-mini-nav a {
    color: #e0f2fe;
    font-weight: 800;
}

.feature-strip {
    position: relative;
    margin-top: -1px;
    background: #ffffff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 28px 0;
}

.feature-grid div {
    padding: 24px;
    border-radius: 22px;
    text-align: center;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.feature-grid strong {
    display: block;
    font-size: 28px;
    color: #0891b2;
}

.feature-grid span {
    color: var(--muted);
    font-weight: 700;
}

.section {
    padding: 76px 0;
}

.section.soft {
    background: linear-gradient(180deg, #ffffff, #eff6ff);
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 32px;
}

.inline-head {
    width: 100%;
}

.section-head h2,
.rank-panel-head h2,
.content-card h2,
.info-card h2 {
    margin: 10px 0 8px;
    color: var(--deep);
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.section-head p,
.page-hero p,
.category-overview-card p {
    max-width: 680px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    padding: 24px;
    border-radius: 26px;
    color: #ffffff;
    box-shadow: var(--shadow);
}

.category-cover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.24;
    transform: scale(1.04);
}

.category-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.94), rgba(37, 99, 235, 0.82));
}

.category-card.orange:after { background: linear-gradient(135deg, rgba(234, 88, 12, 0.92), rgba(220, 38, 38, 0.78)); }
.category-card.green:after { background: linear-gradient(135deg, rgba(5, 150, 105, 0.92), rgba(13, 148, 136, 0.78)); }
.category-card.violet:after { background: linear-gradient(135deg, rgba(124, 58, 237, 0.92), rgba(37, 99, 235, 0.78)); }
.category-card.rose:after { background: linear-gradient(135deg, rgba(225, 29, 72, 0.92), rgba(219, 39, 119, 0.78)); }
.category-card.blue:after { background: linear-gradient(135deg, rgba(2, 132, 199, 0.94), rgba(37, 99, 235, 0.78)); }
.category-card.amber:after { background: linear-gradient(135deg, rgba(217, 119, 6, 0.92), rgba(234, 88, 12, 0.78)); }
.category-card.teal:after { background: linear-gradient(135deg, rgba(15, 118, 110, 0.92), rgba(8, 145, 178, 0.78)); }
.category-card.purple:after { background: linear-gradient(135deg, rgba(147, 51, 234, 0.92), rgba(79, 70, 229, 0.78)); }
.category-card.slate:after { background: linear-gradient(135deg, rgba(30, 41, 59, 0.94), rgba(51, 65, 85, 0.84)); }

.category-card strong,
.category-card em {
    position: relative;
    z-index: 2;
    display: block;
}

.category-card strong {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
}

.category-card em {
    font-size: 14px;
    line-height: 1.7;
    font-style: normal;
    color: rgba(255, 255, 255, 0.86);
}

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

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

.latest-grid,
.catalog-grid {
    grid-template-columns: repeat(4, 1fr);
}

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

.poster {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}

.movie-card.compact .poster,
.featured-grid .poster {
    aspect-ratio: 16 / 10;
}

.poster-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(15, 23, 42, 0.74));
}

.play-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(6, 182, 212, 0.92);
    font-weight: 900;
    font-size: 12px;
}

.movie-body {
    padding: 18px;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 10px;
}

.movie-meta span {
    color: #0891b2;
    font-size: 12px;
    font-weight: 800;
}

.movie-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 900;
    color: var(--deep);
}

.movie-card p {
    min-height: 48px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.movie-actions {
    justify-content: space-between;
    margin-top: 16px;
}

.text-link {
    color: #0891b2;
    font-weight: 900;
}

.text-link.muted {
    color: #64748b;
}

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

.rank-panel {
    position: sticky;
    top: 94px;
    align-self: start;
    border-radius: 28px;
    padding: 24px;
    background: #0f172a;
    box-shadow: var(--shadow);
}

.rank-panel h2,
.rank-panel .section-kicker {
    color: #ffffff;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 42px 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: background 0.25s ease, transform 0.25s ease;
}

.rank-list-large .rank-item {
    color: var(--deep);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.rank-item:hover {
    transform: translateX(3px);
    background: rgba(6, 182, 212, 0.18);
}

.rank-number {
    color: #67e8f9;
    font-weight: 900;
    font-size: 18px;
}

.rank-list-large .rank-number {
    color: #0891b2;
}

.rank-thumb {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    background-color: #e0f2fe;
}

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

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

.rank-info strong {
    font-size: 15px;
}

.rank-info em {
    margin-top: 3px;
    color: #94a3b8;
    font-size: 12px;
    font-style: normal;
}

.rank-heat {
    color: #fbbf24;
    font-weight: 900;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.34), transparent 30%),
        linear-gradient(135deg, #082f49, #1d4ed8 60%, #0891b2);
}

.page-hero h1 {
    margin: 14px 0;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.page-hero p {
    color: #dff8ff;
}

.compact-hero {
    padding: 72px 0;
}

.library-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.search-box {
    display: grid;
    gap: 8px;
    width: min(360px, 100%);
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(14px);
}

.search-box span {
    color: #dff8ff;
    font-size: 13px;
    font-weight: 800;
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    border-radius: 16px;
    padding: 14px 16px;
    color: var(--deep);
    background: #ffffff;
    font-size: 16px;
}

.filter-row {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.filter-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px 0;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 20px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.category-overview-card h2 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 900;
}

.category-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.category-collage span {
    display: block;
    aspect-ratio: 1;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    background-color: #dbeafe;
}

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

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

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #071526;
}

.detail-backdrop {
    opacity: 0.55;
    filter: blur(2px) saturate(1.15);
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 46px 0 66px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    color: #dff8ff;
    font-weight: 700;
}

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

.detail-poster {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 30px;
    background: linear-gradient(135deg, #0e7490, #1d4ed8);
    box-shadow: 0 30px 80px rgba(2, 8, 23, 0.38);
}

.detail-info h1 {
    margin: 18px 0;
    font-size: clamp(42px, 6vw, 74px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.detail-one-line {
    max-width: 820px;
    color: #cffafe;
    font-size: 20px;
    line-height: 1.8;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: #020617;
    box-shadow: 0 26px 80px rgba(2, 8, 23, 0.28);
    aspect-ratio: 16 / 9;
}

.movie-video,
.player-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.movie-video {
    z-index: 1;
    background: #000000;
}

.player-cover {
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.player-cover.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.play-circle {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    color: #0f172a;
    background: #ffffff;
    box-shadow: 0 22px 50px rgba(255, 255, 255, 0.24);
    font-size: 30px;
}

.player-cover strong {
    max-width: 78%;
    text-align: center;
    font-size: clamp(24px, 4vw, 46px);
    line-height: 1.15;
}

.player-cover em {
    color: #cffafe;
    font-style: normal;
    font-weight: 800;
}

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

.content-card,
.info-card {
    border-radius: 28px;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.content-card h2,
.info-card h2 {
    font-size: 28px;
}

.content-card p {
    color: #334155;
    font-size: 17px;
    line-height: 2;
}

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

.info-card dt {
    color: #64748b;
    font-weight: 800;
}

.info-card dd {
    margin: 0;
    color: var(--deep);
    font-weight: 700;
}

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

.site-footer {
    color: #cbd5e1;
    background: #0f172a;
    padding-top: 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 36px;
}

.footer-logo .brand-name,
.footer-logo {
    color: #ffffff;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.8;
}

.site-footer h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 18px;
}

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

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

.footer-links a {
    color: #cbd5e1;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 42px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

@media (max-width: 1100px) {
    .category-grid,
    .movie-grid,
    .latest-grid,
    .catalog-grid,
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .rank-panel {
        position: relative;
        top: auto;
    }
}

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

    .menu-toggle {
        display: block;
    }

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

    .hero-content,
    .detail-grid,
    .library-hero-inner,
    .category-overview-card,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .library-hero-inner {
        display: grid;
    }

    .hero-poster {
        min-height: 320px;
        transform: none;
    }

    .hero-controls,
    .section-head,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .feature-grid,
    .category-grid,
    .movie-grid,
    .featured-grid,
    .latest-grid,
    .catalog-grid,
    .related-grid,
    .side-grid,
    .category-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-overview-card {
        display: grid;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .header-inner {
        height: 64px;
    }

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

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

    .hero-content {
        padding-top: 30px;
        gap: 24px;
    }

    .feature-grid,
    .category-grid,
    .movie-grid,
    .featured-grid,
    .latest-grid,
    .catalog-grid,
    .related-grid,
    .side-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 54px 0;
    }

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

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

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

    .rank-heat {
        display: none;
    }
}
