:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.74);
    --panel-strong: rgba(15, 23, 42, 0.94);
    --line: rgba(148, 163, 184, 0.16);
    --muted: #94a3b8;
    --text: #f8fafc;
    --text-soft: #cbd5e1;
    --cyan: #22d3ee;
    --cyan-strong: #06b6d4;
    --orange: #fb923c;
    --red: #f87171;
    --green: #4ade80;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--bg);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100%;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at 20% -10%, rgba(34, 211, 238, 0.15), transparent 32rem),
        radial-gradient(circle at 85% 12%, rgba(251, 146, 60, 0.12), transparent 26rem),
        linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.86);
    backdrop-filter: blur(18px);
}

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

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 24px;
}

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

.brand-mark {
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), #2563eb);
    color: white;
    box-shadow: 0 0 24px rgba(34, 211, 238, 0.35);
    font-size: 14px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 14px;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: rgba(34, 211, 238, 0.16);
}

.nav-link-soft {
    color: var(--muted);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.86);
    color: var(--text);
}

.hero-slider {
    position: relative;
    height: min(70vh, 720px);
    min-height: 520px;
    overflow: hidden;
    background: #020617;
}

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

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

.hero-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 7s ease;
}

.hero-slide.is-active .hero-card img,
.hero-card:hover img {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.62) 42%, rgba(2, 6, 23, 0.18) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.94) 0%, transparent 42%);
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100% - var(--container)) / 2));
    bottom: 82px;
    width: min(720px, calc(100% - 48px));
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-kicker {
    display: inline-flex;
    width: max-content;
    align-items: center;
    border: 1px solid rgba(34, 211, 238, 0.36);
    border-radius: 999px;
    padding: 7px 12px;
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.12);
    font-size: 13px;
    font-weight: 700;
}

.hero-content h1,
.page-hero h1,
.detail-intro h1 {
    margin: 0;
    color: var(--text);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-content h1 {
    font-size: clamp(38px, 7vw, 82px);
    max-width: 12em;
}

.hero-content p {
    margin: 0;
    color: var(--text-soft);
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 1.75;
    max-width: 760px;
}

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

.hero-tags span,
.detail-meta span,
.movie-card-foot span,
.movie-meta-line span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(15, 23, 42, 0.72);
    color: var(--text-soft);
    font-size: 13px;
}

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

.primary-btn,
.ghost-btn,
.quick-search button,
.full-link,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 0 18px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-btn,
.quick-search button {
    color: #001018;
    background: linear-gradient(135deg, var(--cyan), #38bdf8);
    box-shadow: 0 18px 34px rgba(34, 211, 238, 0.28);
}

.ghost-btn,
.full-link,
.section-more {
    border: 1px solid var(--line);
    color: var(--text);
    background: rgba(15, 23, 42, 0.68);
}

.primary-btn:hover,
.ghost-btn:hover,
.quick-search button:hover,
.full-link:hover,
.section-more:hover {
    transform: translateY(-2px);
}

.hero-control {
    position: absolute;
    top: 50%;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.46);
    color: white;
    font-size: 36px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 180ms ease, transform 180ms ease;
}

.hero-control:hover {
    background: rgba(0, 0, 0, 0.74);
    transform: translateY(-50%) scale(1.05);
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    transition: width 180ms ease, background 180ms ease;
}

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

.home-wrap,
.page-wrap {
    padding: 46px 0;
}

.quick-search-panel,
.feature-panel,
.filter-panel,
.rank-panel,
.watch-panel,
.detail-content,
.related-panel,
.category-overview,
.category-card {
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.quick-search-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
    gap: 24px;
    align-items: center;
    margin-bottom: 56px;
    border-radius: var(--radius-xl);
    padding: 28px;
}

.quick-search-panel h2,
.section-head h2,
.rank-panel h2,
.related-panel h2,
.detail-content h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
}

.quick-search-panel p,
.section-head p,
.page-hero p,
.detail-intro p,
.detail-content p,
.category-overview em,
.category-card em {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.quick-search {
    display: flex;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px;
    background: rgba(2, 6, 23, 0.72);
}

.quick-search input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid var(--line);
    outline: 0;
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.72);
    color: var(--text);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.quick-search input {
    border: 0;
    padding: 0 16px;
    background: transparent;
}

.quick-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(34, 211, 238, 0.6);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.content-section {
    margin: 0 0 64px;
}

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

.section-head.compact {
    margin-bottom: 18px;
}

.movie-grid {
    display: grid;
    gap: 18px;
}

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

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

.movie-card,
.movie-row {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.62);
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.movie-card:hover,
.movie-row:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.38);
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.36);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #0f172a;
}

.poster-wrap img,
.movie-row-poster img,
.category-card img,
.rank-thumb img,
.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-card:hover img,
.movie-row:hover img,
.category-card:hover img {
    transform: scale(1.08);
}

.poster-wrap img,
.movie-row-poster img,
.category-card img {
    transition: transform 650ms ease;
}

.poster-shade,
.category-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.86), transparent 56%);
}

.badge,
.play-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    padding: 6px 9px;
    font-size: 12px;
    font-weight: 800;
}

.badge-left {
    top: 10px;
    left: 10px;
    background: rgba(6, 182, 212, 0.9);
    color: white;
}

.badge-right {
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.68);
    color: white;
}

.play-badge {
    left: 50%;
    top: 50%;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    padding: 0;
    background: rgba(34, 211, 238, 0.9);
    color: white;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 200ms ease, transform 200ms ease;
}

.movie-card:hover .play-badge {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.movie-card-body {
    display: flex;
    min-height: 174px;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.movie-card strong,
.movie-row strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--text);
    font-size: 16px;
    line-height: 1.42;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card em,
.movie-row em {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-foot {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
}

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

.category-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: 22px;
}

.category-card img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.category-layer {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.92)),
        linear-gradient(90deg, rgba(2, 6, 23, 0.76), transparent);
}

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

.category-card strong {
    margin-top: 76px;
    font-size: 23px;
}

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

.rank-panel {
    position: sticky;
    top: 92px;
    border-radius: var(--radius-xl);
    padding: 22px;
}

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

.rank-item,
.rank-row {
    display: grid;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.38);
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.rank-item {
    grid-template-columns: 44px minmax(0, 1fr) auto 42px;
    gap: 10px;
    min-height: 50px;
    padding: 9px 12px;
}

.rank-item:hover,
.rank-row:hover {
    border-color: rgba(34, 211, 238, 0.34);
    background: rgba(15, 23, 42, 0.92);
}

.rank-number {
    color: var(--cyan);
    font-weight: 900;
}

.rank-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text);
    font-weight: 700;
}

.rank-info,
.rank-hot {
    color: var(--muted);
    font-size: 13px;
}

.rank-hot {
    color: var(--orange);
    font-weight: 900;
    text-align: right;
}

.page-hero {
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 18% 10%, rgba(34, 211, 238, 0.16), transparent 28rem),
        linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.48));
}

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

.page-hero h1,
.detail-intro h1 {
    margin-top: 16px;
    font-size: clamp(36px, 5.5vw, 68px);
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 14px;
}

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

.category-overview {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    gap: 12px;
    border-radius: var(--radius-xl);
    padding: 22px;
    transition: transform 220ms ease, border-color 220ms ease;
}

.category-overview:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.36);
}

.category-overview strong {
    color: var(--text);
    font-size: 22px;
}

.mini-titles {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
}

.mini-titles span {
    border-radius: 999px;
    padding: 5px 9px;
    background: rgba(2, 6, 23, 0.48);
    color: var(--text-soft);
    font-size: 12px;
}

.filter-panel {
    margin-bottom: 34px;
    border-radius: var(--radius-xl);
    padding: 24px;
}

.filter-row {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.filter-search-row label,
.filter-row label {
    color: var(--text-soft);
    font-weight: 700;
}

.filter-panel input,
.filter-panel select {
    margin-top: 7px;
    padding: 12px 14px;
}

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

.result-count {
    color: var(--cyan);
    font-weight: 800;
}

[data-search-card].is-hidden {
    display: none;
}

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

.rank-row {
    grid-template-columns: 70px 78px minmax(0, 1fr) minmax(220px, auto) 60px;
    gap: 16px;
    padding: 12px;
}

.rank-thumb {
    width: 64px;
    height: 86px;
    overflow: hidden;
    border-radius: 12px;
    background: #0f172a;
}

.rank-title-block strong,
.rank-title-block em {
    display: block;
}

.rank-title-block strong {
    color: var(--text);
    font-size: 18px;
}

.rank-title-block em {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 7px;
    color: var(--muted);
    font-style: normal;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.detail-hero {
    padding: 44px 0 28px;
    background:
        radial-gradient(circle at 82% 8%, rgba(34, 211, 238, 0.13), transparent 22rem),
        linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(2, 6, 23, 0.2));
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
    align-items: end;
    padding: 26px 0;
}

.detail-poster {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    aspect-ratio: 3 / 4;
    background: #0f172a;
    box-shadow: var(--shadow);
}

.detail-intro p {
    max-width: 840px;
    font-size: 18px;
}

.detail-meta {
    margin-top: 22px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tag-cloud a {
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(15, 23, 42, 0.72);
    color: var(--text-soft);
    font-size: 13px;
}

.tag-cloud a:hover {
    color: var(--cyan);
}

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

.watch-panel,
.detail-content,
.related-panel {
    border-radius: var(--radius-xl);
    padding: 22px;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
    background: #000;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.52);
}

.movie-video {
    width: 100%;
    height: 100%;
    background: #000;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background:
        radial-gradient(circle, rgba(34, 211, 238, 0.26), transparent 22%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.24));
    color: white;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.player-shell.is-playing .player-cover {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.player-play-icon {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.92);
    color: white;
    font-size: 34px;
    box-shadow: 0 22px 48px rgba(34, 211, 238, 0.32);
}

.detail-content {
    display: grid;
    gap: 28px;
}

.detail-content h2,
.related-panel h2 {
    font-size: 24px;
}

.detail-content p {
    color: var(--text-soft);
    font-size: 16px;
}

.lead-text {
    color: var(--cyan) !important;
    font-size: 19px !important;
}

.related-panel {
    position: sticky;
    top: 92px;
}

.related-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.movie-row {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
}

.movie-row-poster {
    display: block;
    height: 92px;
    overflow: hidden;
    background: #0f172a;
}

.movie-row-body {
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 9px 12px 9px 0;
}

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.site-footer {
    border-top: 1px solid var(--line);
    margin-top: 46px;
    background: rgba(2, 6, 23, 0.82);
}

.footer-wrap {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 30px 0;
}

.footer-wrap p {
    margin: 0;
    color: var(--muted);
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 14px;
    color: var(--text-soft);
    font-size: 14px;
}

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

@media (max-width: 1120px) {
    .grid-5,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .rank-panel,
    .related-panel {
        position: static;
    }

    .rank-row {
        grid-template-columns: 58px 68px minmax(0, 1fr) 54px;
    }

    .rank-row .rank-info {
        display: none;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .nav-links {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 72px;
        display: none;
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 12px;
        background: rgba(2, 6, 23, 0.96);
        box-shadow: var(--shadow);
    }

    .nav-links.is-open {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .hero-content {
        bottom: 76px;
    }

    .quick-search-panel,
    .detail-hero-grid,
    .footer-wrap {
        grid-template-columns: 1fr;
    }

    .footer-wrap p {
        text-align: left;
    }

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

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

    .section-head {
        align-items: start;
        flex-direction: column;
    }

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

@media (max-width: 560px) {
    .nav-wrap,
    .page-wrap,
    .footer-wrap {
        width: min(100% - 22px, var(--container));
    }

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

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

    .hero-control {
        display: none;
    }

    .hero-content h1,
    .page-hero h1,
    .detail-intro h1 {
        font-size: 34px;
    }

    .quick-search {
        align-items: stretch;
        flex-direction: column;
        border-radius: 18px;
    }

    .quick-search input {
        min-height: 44px;
    }

    .grid-4,
    .grid-5,
    .category-grid,
    .category-overview-grid,
    .four-cols {
        grid-template-columns: 1fr;
    }

    .movie-card-body {
        min-height: auto;
    }

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

    .rank-item .rank-info {
        display: none;
    }

    .rank-row {
        grid-template-columns: 46px 58px minmax(0, 1fr);
    }

    .rank-row .rank-hot {
        display: none;
    }

    .watch-panel,
    .detail-content,
    .related-panel,
    .filter-panel {
        padding: 16px;
    }

    .movie-row {
        grid-template-columns: 96px minmax(0, 1fr);
    }
}
