:root {
    --color-bg: #f8fafc;
    --color-surface: #ffffff;
    --color-ink: #0f172a;
    --color-muted: #64748b;
    --color-line: #e2e8f0;
    --color-primary: #0f2f76;
    --color-primary-soft: #153f98;
    --color-gold: #f59e0b;
    --color-gold-soft: #fbbf24;
    --color-night: #020617;
    --shadow-soft: 0 20px 50px rgba(15, 23, 42, 0.12);
    --shadow-card: 0 14px 34px rgba(15, 23, 42, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input {
    font: inherit;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-main {
    flex: 1;
    padding-top: 74px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.header-inner {
    width: min(var(--container), calc(100% - 32px));
    height: 74px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--color-primary);
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), #081a44 55%, var(--color-gold));
    box-shadow: 0 12px 22px rgba(15, 47, 118, 0.28);
}

.logo-text {
    font-size: 20px;
}

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

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

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

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

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #f1f5f9;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: var(--color-primary);
}

.mobile-nav {
    display: none;
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

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

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

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: #ffffff;
    background: var(--color-primary);
}

.hero-carousel {
    position: relative;
    min-height: 670px;
    color: #ffffff;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, #1d4ed8 0, transparent 30%), linear-gradient(135deg, #020617, #0f172a 58%, #111827);
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transform: scale(1.02);
}

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

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.76) 42%, rgba(2, 6, 23, 0.34) 100%), linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.06) 48%);
}

.hero-content {
    position: relative;
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 128px 0 230px;
    max-width: 760px;
}

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

.hero-content h1,
.page-hero h1,
.detail-info h1 {
    margin: 16px 0 18px;
    font-size: clamp(38px, 7vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero-content p,
.page-hero p,
.detail-lead {
    max-width: 720px;
    margin: 0 0 24px;
    font-size: 18px;
    color: #dbeafe;
}

.hero-tags,
.detail-tags,
.tag-row,
.detail-meta,
.card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.detail-tags span,
.tag-row span {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.tag-row span {
    color: #475569;
    background: #f1f5f9;
}

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

.primary-button,
.ghost-button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #111827;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-soft));
    box-shadow: 0 16px 30px rgba(245, 158, 11, 0.28);
}

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

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

.text-link {
    color: var(--color-gold-soft);
    padding: 0;
    min-height: auto;
}

.hero-controls {
    position: absolute;
    right: calc((100% - min(var(--container), calc(100% - 32px))) / 2);
    bottom: 170px;
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-controls button {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.hero-thumbs {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: min(var(--container), calc(100% - 32px));
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    z-index: 3;
}

.hero-thumb {
    position: relative;
    height: 104px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    overflow: hidden;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

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

.hero-thumb span {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    font-weight: 900;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-thumb.is-active {
    border-color: var(--color-gold-soft);
}

.hero-thumb.is-active img,
.hero-thumb:hover img {
    opacity: 0.82;
    transform: scale(1.05);
}

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

.section-overlap {
    position: relative;
}

.section-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-head h2 {
    margin: 10px 0 10px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-head p {
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
}

.section-head.light h2,
.section-head.light p {
    color: #ffffff;
}

.search-panel {
    margin: 26px 0 30px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(680px, 100%);
    padding: 14px 18px;
    border: 1px solid var(--color-line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--color-ink);
    background: transparent;
}

.empty-state {
    display: none;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    color: #92400e;
    background: #fef3c7;
    font-weight: 700;
}

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.card-poster {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0f172a;
}

.card-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.movie-card:hover .card-poster img {
    transform: scale(1.08);
}

.poster-shade {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), transparent 60%);
    transition: opacity 0.25s ease;
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.92);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .poster-shade,
.movie-card:hover .poster-play {
    opacity: 1;
}

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

.poster-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.72);
    font-size: 12px;
    font-weight: 800;
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.card-body h3 {
    margin: 0 0 8px;
    color: var(--color-ink);
    font-size: 17px;
    line-height: 1.35;
}

.card-body h3 a:hover {
    color: var(--color-primary);
}

.card-body p {
    flex: 1;
    margin: 0 0 14px;
    color: var(--color-muted);
    font-size: 14px;
}

.card-meta {
    gap: 8px 12px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.card-meta span:not(:last-child)::after {
    content: "";
}

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

.dark-band,
.rank-band {
    width: 100%;
    max-width: none;
    padding: 82px max(16px, calc((100% - var(--container)) / 2));
    color: #ffffff;
    background: radial-gradient(circle at 12% 20%, rgba(245, 158, 11, 0.18), transparent 30%), linear-gradient(135deg, #020617, #0f172a 60%, #111827);
}

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

.feature-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.feature-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.feature-card:hover img {
    transform: scale(1.08);
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.08));
}

.feature-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: grid;
    gap: 8px;
}

.feature-content strong {
    font-size: 22px;
    line-height: 1.15;
}

.feature-content em,
.feature-tags {
    color: #dbeafe;
    font-style: normal;
    font-size: 13px;
}

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

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

.category-tile {
    min-height: 228px;
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.category-covers {
    min-height: 102px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.category-covers img {
    width: 100%;
    height: 102px;
    object-fit: cover;
    border-radius: 16px;
}

.category-info strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-primary);
    font-size: 20px;
}

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

.rank-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

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

.rank-list.slim {
    grid-template-columns: 1fr;
}

.rank-item a {
    display: grid;
    grid-template-columns: 42px 72px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    color: var(--color-ink);
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-band .rank-item a,
.dark-band .rank-item a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.rank-item a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.rank-number {
    color: var(--color-gold);
    font-size: 22px;
    font-weight: 900;
}

.rank-item img {
    width: 72px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-content {
    min-width: 0;
    display: grid;
    gap: 3px;
}

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

.rank-content em {
    color: #64748b;
    font-size: 12px;
    font-style: normal;
}

.rank-band .rank-content em,
.dark-band .rank-content em {
    color: #cbd5e1;
}

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

.rank-column {
    padding: 18px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.rank-column h2 {
    margin: 0 0 16px;
}

.page-hero,
.detail-hero {
    color: #ffffff;
    background: radial-gradient(circle at 16% 18%, rgba(59, 130, 246, 0.34), transparent 32%), linear-gradient(135deg, #020617, #0f172a 58%, #111827);
}

.page-hero {
    padding: 86px max(16px, calc((100% - var(--container)) / 2));
}

.page-hero-content {
    max-width: 820px;
}

.compact-hero {
    min-height: 340px;
    display: flex;
    align-items: center;
}

.category-hero {
    min-height: 390px;
}

.detail-hero {
    padding: 34px max(16px, calc((100% - var(--container)) / 2)) 70px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 28px;
    color: #cbd5e1;
    font-size: 14px;
}

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

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

.detail-poster {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.36);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.detail-info h1 {
    font-size: clamp(36px, 6vw, 70px);
}

.detail-meta {
    margin: 20px 0;
}

.detail-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.12);
}

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

.video-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #020617;
    box-shadow: var(--shadow-card);
    aspect-ratio: 16 / 9;
}

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

.video-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: grid;
    place-items: center;
    overflow: hidden;
    z-index: 2;
}

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

.video-cover-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.28));
}

.video-play-button {
    position: relative;
    z-index: 2;
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--color-primary);
    background: #ffffff;
    font-size: 36px;
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}

.video-cover strong {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    font-size: clamp(22px, 4vw, 40px);
    text-align: left;
}

.article-section {
    padding-top: 12px;
}

.movie-article {
    max-width: 900px;
    padding: 34px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.movie-article h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.movie-article h2:not(:first-child) {
    margin-top: 28px;
}

.movie-article p {
    margin: 0;
    color: #334155;
    font-size: 17px;
}

.inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.inline-links a {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--color-primary);
    background: #eff6ff;
    font-weight: 800;
}

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

.movie-card.is-compact .card-body p {
    min-height: 42px;
}

.site-footer {
    color: #cbd5e1;
    background: #020617;
}

.footer-inner {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) 1fr 1fr;
    gap: 34px;
}

.footer-logo {
    color: #ffffff;
}

.footer-brand p {
    max-width: 520px;
    color: #94a3b8;
}

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

.footer-links h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 18px;
}

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

.footer-bottom {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(148, 163, 184, 0.24);
    color: #94a3b8;
    font-size: 14px;
}

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

@media (max-width: 1080px) {
    .movie-grid,
    .feature-grid,
    .category-grid,
    .rank-list.expanded {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .hero-thumb:nth-child(n + 4) {
        display: none;
    }

    .detail-layout {
        grid-template-columns: 280px minmax(0, 1fr);
    }
}

@media (max-width: 820px) {
    .page-main {
        padding-top: 66px;
    }

    .header-inner {
        height: 66px;
    }

    .desktop-nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .logo-text {
        font-size: 18px;
    }

    .hero-carousel {
        min-height: 680px;
    }

    .hero-content {
        padding: 92px 0 230px;
    }

    .hero-controls {
        right: 16px;
        bottom: 160px;
    }

    .hero-thumbs {
        overflow-x: auto;
        grid-template-columns: repeat(3, 230px);
        justify-content: start;
    }

    .movie-grid,
    .feature-grid,
    .category-grid,
    .category-grid.large,
    .rank-list,
    .rank-list.expanded,
    .rank-columns,
    .compact-grid,
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

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

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

@media (max-width: 560px) {
    .page-main {
        padding-top: 62px;
    }

    .header-inner {
        height: 62px;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .hero-content h1,
    .page-hero h1,
    .detail-info h1 {
        letter-spacing: -0.04em;
    }

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

    .hero-thumbs {
        grid-template-columns: repeat(2, 210px);
    }

    .hero-thumb:nth-child(3) {
        display: none;
    }

    .movie-grid,
    .feature-grid,
    .category-grid,
    .category-grid.large,
    .rank-list,
    .rank-list.expanded,
    .rank-columns,
    .compact-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .section-block,
    .dark-band,
    .rank-band {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .rank-item a {
        grid-template-columns: 38px 68px 1fr;
    }

    .movie-article {
        padding: 24px;
    }

    .video-play-button {
        width: 68px;
        height: 68px;
    }
}
