:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-850: #132033;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-500: #78716c;
    --stone-700: #44403c;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --white: #ffffff;
    --shadow-soft: 0 18px 55px rgba(15, 23, 42, 0.16);
    --shadow-deep: 0 22px 70px rgba(0, 0, 0, 0.32);
    --radius-xl: 22px;
    --radius-lg: 16px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--slate-900);
    background: var(--stone-50);
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    color: var(--stone-100);
    background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
    border-bottom: 1px solid rgba(245, 158, 11, 0.22);
    box-shadow: 0 12px 32px rgba(2, 6, 23, 0.25);
}

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

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

.brand-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(217, 119, 6, 0.36);
}

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

.brand-text strong {
    font-size: 22px;
    letter-spacing: 0.04em;
}

.brand-text small {
    color: var(--stone-300);
    font-size: 12px;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    white-space: nowrap;
}

.main-nav a,
.mobile-nav a {
    position: relative;
    color: var(--stone-200);
    transition: color 0.25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--amber-500);
    transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--amber-400);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-button span {
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 14px 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.98);
}

.mobile-nav a {
    display: block;
    padding: 11px 12px;
    border-radius: 12px;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: rgba(255, 255, 255, 0.08);
}

.hero-slider {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: var(--slate-900);
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient,
.detail-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.18));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: var(--white);
    max-width: 720px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 5px 14px;
    margin-bottom: 16px;
    color: var(--white);
    background: rgba(217, 119, 6, 0.9);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero-content h1,
.hero-content h2,
.page-hero h1,
.detail-hero h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.hero-content p,
.page-hero p,
.detail-hero p {
    max-width: 690px;
    margin: 22px 0 0;
    color: var(--stone-200);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.8;
}

.hero-tags,
.tag-cloud,
.tag-row,
.chip-row,
.info-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.hero-tags span,
.tag-cloud span,
.info-pills span,
.chip,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
}

.hero-tags span {
    padding: 8px 12px;
    color: var(--stone-100);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

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

.primary-button,
.ghost-button,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 800;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.primary-button {
    min-height: 48px;
    padding: 0 26px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
    box-shadow: 0 18px 34px rgba(217, 119, 6, 0.28);
}

.primary-button:hover,
.ghost-button:hover,
.section-link:hover {
    transform: translateY(-2px);
}

.primary-button:hover {
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    box-shadow: 0 20px 42px rgba(217, 119, 6, 0.36);
}

.primary-button.full {
    width: 100%;
}

.ghost-button {
    min-height: 48px;
    padding: 0 22px;
    color: var(--stone-100);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.ghost-button:hover {
    color: var(--amber-400);
    background: rgba(255, 255, 255, 0.18);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(10px);
    font-size: 34px;
    line-height: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.54);
    transform: translateY(-50%) scale(1.04);
}

.hero-arrow.prev {
    left: 22px;
    transform: translateY(-50%);
}

.hero-arrow.next {
    right: 22px;
    transform: translateY(-50%);
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.active {
    width: 34px;
    background: var(--amber-500);
}

.dark-section {
    padding: 72px 0;
    color: var(--white);
    background: linear-gradient(180deg, var(--slate-800), var(--slate-700));
}

.light-section,
.split-section {
    padding: 72px 0;
    background: var(--stone-50);
}

.split-section {
    background: linear-gradient(180deg, #ffffff, var(--stone-100));
}

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

.section-head h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 0;
    color: var(--stone-500);
    font-size: 16px;
    line-height: 1.7;
}

.dark-section .section-head p {
    color: var(--stone-300);
}

.section-link {
    min-width: max-content;
    padding: 10px 16px;
    color: var(--amber-700);
    background: rgba(245, 158, 11, 0.12);
}

.dark-section .section-link {
    color: var(--amber-400);
    background: rgba(245, 158, 11, 0.16);
}

.feature-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 330px);
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
}

.feature-card {
    position: relative;
    height: 330px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    scroll-snap-align: start;
    background: var(--slate-900);
}

.feature-card img,
.category-tile img,
.movie-card img,
.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.feature-card:hover img,
.category-tile:hover img,
.movie-card:hover img {
    transform: scale(1.07);
}

.feature-shade,
.category-tile-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(2, 6, 23, 0.88));
}

.feature-text,
.category-tile-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px;
    color: var(--white);
}

.feature-text strong,
.category-tile-text strong {
    display: block;
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.25;
}

.feature-text small,
.category-tile-text small {
    display: block;
    color: var(--stone-300);
    line-height: 1.55;
}

.feature-text em {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    font-style: normal;
}

.feature-text em span {
    padding: 6px 9px;
    color: var(--amber-400);
    background: rgba(245, 158, 11, 0.16);
    border-radius: 999px;
    font-size: 12px;
}

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

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

.category-tile {
    position: relative;
    min-height: 220px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--slate-900);
}

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

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

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

.movie-card {
    display: grid;
    color: var(--slate-900);
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.1);
    transform: translateY(0);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.18);
}

.poster-frame {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
}

.poster-mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.25s ease;
}

.play-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(217, 119, 6, 0.94);
    border-radius: 999px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .poster-mask {
    background: rgba(0, 0, 0, 0.38);
}

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

.card-rank {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 5px 9px;
    color: var(--white);
    background: var(--amber-600);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.movie-info {
    display: grid;
    gap: 9px;
    padding: 14px;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: var(--stone-500);
    font-size: 12px;
}

.movie-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 6px;
    color: var(--stone-300);
}

.movie-info strong {
    min-height: 42px;
    color: var(--slate-900);
    font-size: 16px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-desc {
    color: var(--stone-700);
    font-size: 13px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-row span {
    padding: 5px 8px;
    color: var(--amber-700);
    background: rgba(245, 158, 11, 0.12);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 42px;
    align-items: start;
}

.split-grid.wide-left {
    grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
}

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

.rank-row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.rank-number {
    font-size: 26px;
    font-weight: 900;
    color: var(--amber-600);
    text-align: center;
}

.rank-link {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.rank-link img {
    width: 70px;
    height: 88px;
    object-fit: cover;
    border-radius: 12px;
    background: var(--slate-800);
}

.rank-link strong {
    display: block;
    margin-bottom: 7px;
    font-size: 17px;
    line-height: 1.35;
}

.rank-link small {
    color: var(--stone-500);
    line-height: 1.6;
}

.search-panel,
.side-panel {
    padding: 22px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.search-panel input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 48px;
    padding: 0 15px;
    border: 1px solid var(--stone-200);
    border-radius: 12px;
    color: var(--slate-900);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-panel input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.compact-panel .mini-filter-grid {
    margin-top: 20px;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.09);
}

.filter-bar.full {
    grid-template-columns: minmax(260px, 1fr) 180px 180px;
}

.empty-message {
    margin: 28px 0 0;
    padding: 20px;
    color: var(--stone-700);
    text-align: center;
    background: var(--white);
    border-radius: 16px;
}

.page-hero,
.detail-hero {
    position: relative;
    color: var(--white);
    background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
    overflow: hidden;
}

.small-hero {
    padding: 74px 0 82px;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: -120px -70px auto auto;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.28), transparent 62%);
    pointer-events: none;
}

.page-hero .container,
.detail-hero-content {
    position: relative;
    z-index: 2;
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--stone-300);
    font-size: 14px;
}

.crumbs a:hover {
    color: var(--amber-400);
}

.chip-row {
    margin-top: 28px;
}

.chip {
    padding: 9px 13px;
    color: var(--stone-100);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.chip:hover {
    color: var(--amber-400);
    background: rgba(255, 255, 255, 0.17);
}

.detail-hero {
    min-height: 520px;
    display: flex;
    align-items: center;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.06);
}

.detail-hero-content {
    padding: 78px 0;
}

.player-section {
    padding: 48px 0;
    background: linear-gradient(180deg, var(--slate-900), var(--slate-800));
}

.player-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    background: #000000;
}

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

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--white);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.58));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
    box-shadow: 0 18px 44px rgba(217, 119, 6, 0.42);
    font-size: 34px;
}

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

.detail-body-section {
    padding-top: 58px;
}

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

.detail-poster {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 100px;
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    background: var(--slate-800);
}

.detail-copy {
    padding: 34px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.detail-copy h2 {
    margin: 0 0 16px;
    font-size: 26px;
    line-height: 1.25;
}

.detail-copy h2:not(:first-child) {
    margin-top: 32px;
}

.detail-copy p {
    margin: 0;
    color: var(--stone-700);
    font-size: 16px;
    line-height: 2;
}

.info-pills {
    margin-bottom: 20px;
}

.info-pills span,
.tag-cloud span {
    padding: 8px 12px;
    color: var(--amber-700);
    background: rgba(245, 158, 11, 0.12);
}

.related-section {
    padding-top: 24px;
}

.site-footer {
    color: var(--stone-300);
    background: linear-gradient(90deg, var(--slate-950), var(--slate-900), var(--slate-950));
    border-top: 1px solid rgba(245, 158, 11, 0.22);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 1fr;
    gap: 36px;
    padding: 54px 0 36px;
}

.footer-brand p {
    max-width: 520px;
    margin: 18px 0 0;
    color: var(--stone-300);
    line-height: 1.8;
}

.footer-grid h3 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 16px;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 18px 16px;
    color: var(--stone-500);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

[hidden] {
    display: none !important;
}

@media (max-width: 1100px) {
    .main-nav {
        gap: 14px;
        font-size: 13px;
    }

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

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

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

    .menu-button {
        display: inline-flex;
    }

    .mobile-nav.open {
        display: block;
    }

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

    .hero-content {
        max-width: none;
        padding-right: 40px;
    }

    .hero-arrow {
        display: none;
    }

    .section-head,
    .split-grid,
    .split-grid.wide-left,
    .detail-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        display: grid;
    }

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

    .filter-bar,
    .filter-bar.full {
        grid-template-columns: 1fr;
    }

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

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

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

    .brand-text small {
        font-size: 11px;
    }

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

    .hero-content h1,
    .hero-content h2,
    .page-hero h1,
    .detail-hero h1 {
        font-size: 36px;
    }

    .hero-actions {
        width: 100%;
    }

    .primary-button,
    .ghost-button {
        width: 100%;
    }

    .feature-strip {
        grid-auto-columns: minmax(230px, 82vw);
    }

    .category-grid,
    .category-grid.large,
    .movie-grid,
    .movie-grid.compact-grid,
    .movie-grid.dense-grid {
        grid-template-columns: 1fr;
    }

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

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

    .rank-link img {
        width: 56px;
        height: 74px;
    }

    .detail-copy {
        padding: 22px;
    }

    .play-overlay span {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }

    .footer-bottom {
        display: grid;
        text-align: center;
    }
}
