:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.88);
    --panel-strong: rgba(15, 23, 42, 0.96);
    --line: rgba(34, 211, 238, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --cyan: #22d3ee;
    --cyan-dark: #0891b2;
    --blue: #60a5fa;
    --amber: #fbbf24;
    --orange: #fb923c;
    --radius: 24px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 34rem),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 34rem),
        linear-gradient(180deg, #020617 0%, #0f172a 44%, #020617 100%);
    color: var(--text);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 86%);
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(34, 211, 238, 0.12);
    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(22px);
}

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

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: white;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 32px rgba(34, 211, 238, 0.36);
}

.brand-text {
    display: grid;
    gap: 2px;
}

.brand-text strong,
.footer-logo {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex: 1;
}

.nav-link {
    color: var(--muted-strong);
    font-size: 15px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--cyan);
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.8);
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 10px;
    background: var(--cyan);
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.95);
}

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

.hero {
    padding: 34px 16px 22px;
}

.hero-shell {
    position: relative;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.hero-slide {
    display: none;
    position: relative;
    overflow: hidden;
    min-height: 560px;
    border: 1px solid rgba(34, 211, 238, 0.18);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.72));
    box-shadow: var(--shadow);
}

.hero-slide.is-active {
    display: block;
    animation: fadeIn 0.56s ease both;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    filter: blur(10px) saturate(1.18);
    transform: scale(1.08);
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 30%, rgba(34, 211, 238, 0.22), transparent 28rem),
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.72) 48%, rgba(2, 6, 23, 0.84) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    gap: 56px;
    align-items: center;
    min-height: 560px;
    padding: 58px;
}

.hero-copy h1 {
    margin: 18px 0 18px;
    max-width: 760px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero-summary {
    max-width: 680px;
    margin: 0 0 24px;
    color: var(--muted-strong);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.8;
}

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

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

.hero-tags span,
.tag-row span,
.detail-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #bae6fd;
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(34, 211, 238, 0.16);
    font-size: 12px;
}

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

.btn-primary,
.btn-secondary,
.rank-action,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary,
.rank-action {
    color: white;
    background: linear-gradient(135deg, var(--cyan-dark), #2563eb);
    box-shadow: 0 16px 44px rgba(8, 145, 178, 0.34);
}

.btn-secondary,
.section-more {
    color: var(--cyan);
    border: 1px solid rgba(34, 211, 238, 0.28);
    background: rgba(15, 23, 42, 0.72);
}

.btn-primary:hover,
.btn-secondary:hover,
.rank-action:hover,
.section-more:hover {
    transform: translateY(-2px);
}

.hero-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(34, 211, 238, 0.22);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.hero-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.78), transparent 60%);
}

.hero-poster span {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: white;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    transform: translateX(-50%);
    box-shadow: 0 0 36px rgba(34, 211, 238, 0.45);
}

.hero-controls {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 28px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.hero-arrow,
.hero-dot {
    pointer-events: auto;
    cursor: pointer;
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(34, 211, 238, 0.22);
    border-radius: 50%;
    color: var(--cyan);
    background: rgba(15, 23, 42, 0.76);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.52);
}

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

.hero-search-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    margin: 18px 0 0;
    padding: 18px;
    border: 1px solid rgba(34, 211, 238, 0.14);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(18px);
}

.hero-search-card strong {
    color: var(--cyan);
    font-size: 18px;
}

.hero-search-card p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.hero-category-links,
.category-samples,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-category-links a,
.category-samples a,
.footer-links a {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--muted-strong);
    background: rgba(30, 41, 59, 0.72);
    transition: color 0.2s ease, background 0.2s ease;
}

.hero-category-links a:hover,
.category-samples a:hover,
.footer-links a:hover {
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.12);
}

.content-section,
.page-hero,
.breadcrumb,
.detail-hero,
.detail-content {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.content-section {
    padding: 44px 0;
}

.soft-bg {
    position: relative;
}

.soft-bg::before {
    content: "";
    position: absolute;
    inset: 0 calc(50% - 50vw);
    z-index: -1;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5), transparent);
}

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

.section-heading h2 {
    margin: 12px 0 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-heading p {
    max-width: 680px;
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.card-grid,
.category-grid {
    display: grid;
    gap: 22px;
}

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

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

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

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

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

.movie-card,
.category-tile,
.ranking-row,
.detail-text-block,
.ranking-panel,
.player-card,
.detail-panel {
    border: 1px solid rgba(34, 211, 238, 0.14);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.72));
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.24);
}

.movie-card {
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.36);
    box-shadow: 0 22px 70px rgba(8, 145, 178, 0.16);
}

.movie-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: rgba(15, 23, 42, 0.82);
}

.movie-cover img {
    transition: transform 0.35s ease, filter 0.35s ease;
}

.movie-card:hover .movie-cover img,
.category-tile:hover .category-image img,
.rank-cover:hover img {
    transform: scale(1.06);
    filter: saturate(1.12);
}

.score-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 999px;
    color: #111827;
    background: var(--amber);
    font-size: 12px;
    font-weight: 900;
}

.play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: white;
    background: rgba(34, 211, 238, 0.88);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

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

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

.movie-card h2,
.category-tile h2,
.ranking-row h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.35;
}

.movie-card h2 a:hover,
.category-tile h2 a:hover,
.ranking-row h2 a:hover {
    color: var(--cyan);
}

.movie-card p,
.category-tile p,
.ranking-row p,
.detail-panel p,
.detail-text-block p {
    color: var(--muted);
    line-height: 1.7;
}

.movie-card p,
.ranking-row p {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 14px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: #64748b;
    font-size: 12px;
}

.movie-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
}

.tag-row {
    margin-top: 12px;
}

.horizontal {
    display: grid;
    grid-template-columns: 136px 1fr;
    min-height: 206px;
}

.horizontal .movie-cover {
    height: 100%;
    aspect-ratio: auto;
}

.category-tile {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 18px;
    overflow: hidden;
    padding: 16px;
}

.category-image {
    overflow: hidden;
    min-height: 210px;
    border-radius: 18px;
}

.category-tile h2 {
    font-size: 24px;
}

.category-samples {
    margin-top: 18px;
}

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

.ranking-panel {
    position: sticky;
    top: 96px;
    padding: 18px;
}

.ranking-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.ranking-panel-head span {
    color: var(--cyan);
    font-size: 20px;
    font-weight: 900;
}

.ranking-panel-head a {
    color: var(--muted);
    font-size: 14px;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 58px 92px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
}

.ranking-row.compact {
    grid-template-columns: 42px 62px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
}

.ranking-row.compact .rank-action {
    display: none;
}

.ranking-row.compact .rank-info p,
.ranking-row.compact .movie-meta span:nth-child(n + 3) {
    display: none;
}

.rank-number {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #111827;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    font-weight: 900;
}

.rank-cover {
    display: block;
    overflow: hidden;
    height: 120px;
    border-radius: 16px;
}

.ranking-row.compact .rank-cover {
    height: 82px;
}

.filter-toolbar {
    display: grid;
    grid-template-columns: minmax(240px, 360px) 1fr;
    gap: 18px;
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid rgba(34, 211, 238, 0.13);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.72);
}

.search-field {
    display: grid;
    gap: 8px;
}

.search-field span {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
}

.site-search-input {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(34, 211, 238, 0.18);
    border-radius: 14px;
    outline: none;
    color: var(--text);
    background: rgba(2, 6, 23, 0.7);
}

.site-search-input:focus {
    border-color: rgba(34, 211, 238, 0.54);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.09);
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: end;
}

.filter-pill {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(34, 211, 238, 0.14);
    border-radius: 999px;
    color: var(--muted-strong);
    background: rgba(30, 41, 59, 0.68);
    cursor: pointer;
}

.filter-pill.is-active,
.filter-pill:hover {
    color: white;
    background: linear-gradient(135deg, var(--cyan-dark), #2563eb);
}

.is-hidden {
    display: none !important;
}

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    margin-top: 34px;
    border: 1px solid rgba(34, 211, 238, 0.16);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 41, 59, 0.68));
    box-shadow: var(--shadow);
}

.compact-hero {
    display: grid;
    place-items: center start;
    padding: 46px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.26;
    filter: blur(8px) saturate(1.08);
    transform: scale(1.05);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.72));
}

.page-hero-content,
.compact-hero > div {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 46px;
}

.page-hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1;
}

.page-hero p {
    color: var(--muted-strong);
    font-size: 18px;
    line-height: 1.8;
}

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

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

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.72fr);
    gap: 28px;
    align-items: stretch;
    padding: 26px 0 18px;
}

.player-card,
.detail-panel {
    overflow: hidden;
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

.movie-video {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 12px;
    width: 100%;
    height: 100%;
    border: 0;
    color: white;
    background:
        radial-gradient(circle at center, rgba(34, 211, 238, 0.12), transparent 18rem),
        linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.76));
    cursor: pointer;
    pointer-events: auto;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.player-icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    color: white;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 45px rgba(34, 211, 238, 0.48);
}

.detail-panel {
    padding: 28px;
}

.detail-panel h1 {
    margin: 18px 0 14px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.06;
}

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

.detail-badges {
    margin: 22px 0;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 12px 0 18px;
}

.detail-text-block {
    padding: 26px;
}

.detail-text-block h2 {
    margin: 0 0 12px;
    color: var(--cyan);
    font-size: 24px;
}

.detail-text-block p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 16px;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.info-list div {
    padding: 14px;
    border: 1px solid rgba(34, 211, 238, 0.12);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.32);
}

.info-list dt {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 13px;
}

.info-list dd {
    margin: 0;
    color: var(--text);
    font-weight: 800;
}

.site-footer {
    margin-top: 42px;
    border-top: 1px solid rgba(34, 211, 238, 0.12);
    background: rgba(2, 6, 23, 0.86);
}

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

.site-footer p {
    max-width: 460px;
    color: var(--muted);
    line-height: 1.75;
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 30px;
    color: #64748b;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .mobile-menu-button {
        display: block;
    }

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

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

    .hero-poster {
        width: min(340px, 100%);
    }

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

    .ranking-panel {
        position: static;
    }
}

@media (max-width: 820px) {
    .brand {
        min-width: auto;
    }

    .brand-text em {
        display: none;
    }

    .hero-slide,
    .hero-content {
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 30px 22px 86px;
    }

    .hero-search-card,
    .filter-toolbar,
    .category-tile,
    .ranking-row,
    .info-list {
        grid-template-columns: 1fr;
    }

    .hero-controls {
        left: 20px;
        right: 20px;
    }

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

    .rank-action {
        width: 100%;
    }

    .rank-cover {
        height: 180px;
    }

    .page-hero-content,
    .compact-hero > div {
        padding: 30px 22px;
    }
}

@media (max-width: 560px) {
    .nav-shell {
        height: 66px;
    }

    .brand-text strong {
        font-size: 17px;
    }

    .hero {
        padding-top: 18px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 38px;
    }

    .card-grid-3,
    .card-grid-4,
    .card-grid-5,
    .card-grid-6,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .horizontal {
        grid-template-columns: 116px 1fr;
    }

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

    .detail-panel,
    .detail-text-block {
        padding: 20px;
    }
}
