:root {
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-strong: rgba(15, 23, 42, 0.92);
    --line: rgba(245, 158, 11, 0.22);
    --muted-line: rgba(148, 163, 184, 0.22);
    --text: #f8fafc;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --amber: #f59e0b;
    --amber-light: #fbbf24;
    --amber-dark: #d97706;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.13), transparent 30rem),
        radial-gradient(circle at 85% 10%, rgba(30, 41, 59, 0.85), transparent 34rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(245, 158, 11, 0.18));
}

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

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

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.brand-mark,
.footer-logo span {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber-light), var(--amber-dark));
    color: white;
    box-shadow: 0 0 26px rgba(245, 158, 11, 0.35);
}

.brand-text {
    font-size: 1.35rem;
    background: linear-gradient(90deg, var(--amber-light), var(--amber-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.mobile-link {
    color: var(--soft);
    font-weight: 700;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

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

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: var(--amber-light);
    background: rgba(245, 158, 11, 0.1);
}

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

.mobile-nav {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

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

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

.hero {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    background: #0f172a;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.8s ease, transform 1.4s ease;
    pointer-events: none;
}

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

.hero-overlay,
.detail-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, var(--bg) 0%, rgba(2, 6, 23, 0.82) 38%, rgba(2, 6, 23, 0.35) 100%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 96px;
    max-width: 760px;
}

.site-h1 {
    margin: 0 0 10px;
    font-size: clamp(1.4rem, 2vw, 2rem);
    color: var(--amber-light);
}

.hero-content h2,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-content p {
    max-width: 720px;
    margin: 22px 0 0;
    color: var(--soft);
    font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--amber-light);
    font-weight: 800;
}

.hero-kicker span,
.eyebrow,
.tag-row span {
    padding: 6px 12px;
    border: 1px solid rgba(245, 158, 11, 0.34);
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.hero-tags span,
.tag-row span {
    color: var(--soft);
    border-color: rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.62);
    font-size: 0.84rem;
}

.hero-actions,
.detail-info .btn {
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 900;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--amber-light), var(--amber-dark));
    color: white;
    box-shadow: 0 16px 36px rgba(245, 158, 11, 0.26);
}

.btn-soft {
    margin-left: 10px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid var(--line);
    color: var(--amber-light);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.58);
    color: white;
    font-size: 2rem;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 18px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.7);
    transition: width 0.2s ease, background 0.2s ease;
}

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

.hero-search {
    position: absolute;
    right: max(16px, calc((100% - 1280px) / 2));
    bottom: 82px;
    z-index: 4;
    display: flex;
    width: min(420px, calc(100% - 32px));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(14px);
}

.hero-search input,
.movie-search {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
}

.hero-search input {
    padding: 15px 16px;
}

.hero-search button {
    border: 0;
    padding: 0 18px;
    background: var(--amber);
    color: white;
    font-weight: 900;
}

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

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

.section-heading h2,
.rank-panel-head h2,
.player-title-row h2,
.detail-text h2,
.detail-side h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    line-height: 1.1;
    background: linear-gradient(90deg, var(--amber-light), var(--amber-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-heading p {
    max-width: 540px;
    margin: 0;
    color: var(--muted);
}

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

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

.movie-card {
    border: 1px solid var(--muted-line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--panel);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(245, 158, 11, 0.58);
    box-shadow: 0 24px 70px rgba(245, 158, 11, 0.14);
}

.poster-frame {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #0f172a;
}

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

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

.poster-frame::after {
    content: "";
    position: absolute;
    inset: 38% 0 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.9), transparent);
}

.poster-type,
.poster-year,
.poster-play {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.78rem;
    font-weight: 900;
}

.poster-type {
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.92);
}

.poster-year {
    top: 12px;
    right: 12px;
    padding: 5px 8px;
    border-radius: 10px;
    background: rgba(2, 6, 23, 0.72);
}

.poster-play {
    left: 50%;
    top: 50%;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.92);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.movie-card-body h3 {
    margin: 0 0 8px;
    color: white;
    font-size: 1.08rem;
    line-height: 1.35;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.movie-card:hover h3 {
    color: var(--amber-light);
}

.movie-card-body p {
    min-height: 46px;
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta,
.ranking-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    color: #64748b;
    font-size: 0.83rem;
}

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

.category-tile,
.category-overview-card,
.filter-panel,
.rank-panel,
.detail-text,
.detail-side,
.cta-band {
    border: 1px solid var(--muted-line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.category-tile {
    min-height: 178px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
    border-color: var(--amber);
}

.category-tile span,
.category-overview-title {
    color: var(--amber-light);
    font-size: 1.35rem;
    font-weight: 900;
}

.category-tile p,
.category-overview-card p,
.cta-band p,
.page-hero p {
    color: var(--muted);
}

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

.rank-panel {
    position: sticky;
    top: 92px;
    padding: 24px;
}

.rank-panel-head,
.player-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.rank-panel-head a,
.player-title-row a {
    color: var(--amber-light);
    font-weight: 800;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 38px 56px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.25);
}

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

.rank-no,
.ranking-number {
    color: var(--amber-light);
    font-weight: 950;
    font-size: 1.2rem;
}

.rank-title {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 800;
}

.rank-meta {
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
}

.cta-band h2 {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.page-shell {
    padding-top: 48px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 36px;
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(245, 158, 11, 0.14), transparent),
        rgba(15, 23, 42, 0.66);
    box-shadow: var(--shadow);
}

.small-hero h1,
.category-hero h1 {
    margin-bottom: 16px;
}

.filter-panel {
    padding: 22px;
    margin-bottom: 28px;
}

.movie-search {
    min-height: 52px;
    padding: 0 16px;
    margin-bottom: 16px;
    border: 1px solid var(--muted-line);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.35);
}

.filter-row,
.category-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip,
.category-jump a {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--muted-line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: var(--soft);
    font-weight: 800;
}

.filter-chip.is-active,
.filter-chip:hover,
.category-jump a:hover {
    border-color: var(--amber);
    background: rgba(245, 158, 11, 0.12);
    color: var(--amber-light);
}

.empty-state {
    display: none;
    padding: 30px;
    text-align: center;
    color: var(--muted);
}

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

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

.category-overview-card {
    padding: 24px;
}

.mini-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.mini-card {
    display: grid;
    gap: 8px;
}

.mini-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 12px;
}

.mini-card span {
    color: var(--soft);
    font-size: 0.82rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.crumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    color: var(--muted);
}

.crumb a:hover {
    color: var(--amber-light);
}

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

.ranking-card {
    border: 1px solid var(--muted-line);
    border-radius: 22px;
    background: var(--panel);
    overflow: hidden;
}

.ranking-link {
    display: grid;
    grid-template-columns: 64px 96px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 16px;
}

.ranking-link img {
    width: 96px;
    height: 130px;
    border-radius: 14px;
    object-fit: cover;
}

.ranking-link h2 {
    margin: 0 0 8px;
    font-size: 1.35rem;
}

.ranking-link p {
    margin: 0;
    color: var(--muted);
}

.detail-hero {
    position: relative;
    min-height: 620px;
    background-size: cover;
    background-position: center;
}

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

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

.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.detail-info {
    max-width: 800px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
    color: var(--soft);
}

.detail-meta span {
    padding: 7px 12px;
    border: 1px solid var(--muted-line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.62);
}

.detail-one-line {
    max-width: 760px;
    margin: 0;
    color: var(--soft);
    font-size: 1.12rem;
}

.player-block {
    padding-top: 70px;
}

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #000;
    box-shadow: var(--shadow);
}

.player-shell video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.2));
    transition: opacity 0.2s ease;
}

.player-overlay span {
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber-light), var(--amber-dark));
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 18px 60px rgba(245, 158, 11, 0.35);
}

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

.player-loading {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: none;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    color: var(--amber-light);
    font-weight: 800;
}

.player-loading.is-visible {
    display: block;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    padding-top: 54px;
}

.detail-text,
.detail-side {
    padding: 28px;
}

.detail-text h2,
.detail-side h2 {
    margin-bottom: 16px;
    font-size: 1.65rem;
}

.detail-text p {
    margin: 0 0 24px;
    color: var(--soft);
    font-size: 1.03rem;
}

.detail-side dl {
    margin: 0;
    display: grid;
    gap: 12px;
}

.detail-side dt {
    color: var(--muted);
    font-size: 0.88rem;
}

.detail-side dd {
    margin: -8px 0 0;
    color: var(--text);
    font-weight: 800;
}

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

.movie-card-compact .movie-card-body p,
.movie-card-compact .tag-row,
.movie-card-compact .card-meta {
    display: none;
}

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

.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 38px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--amber-light);
    font-size: 1.3rem;
    font-weight: 950;
}

.footer-brand p {
    max-width: 520px;
    color: var(--muted);
}

.footer-block h2 {
    margin: 0 0 16px;
    color: var(--amber-light);
    font-size: 1rem;
}

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

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

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

.footer-copy {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    color: #64748b;
    text-align: center;
}

.back-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    width: 46px;
    height: 46px;
    display: none;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--amber);
    color: white;
    font-weight: 950;
}

.back-top.is-visible {
    display: block;
}

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

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

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

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

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

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding-bottom: 170px;
    }

    .hero-search {
        left: 16px;
        right: 16px;
        bottom: 86px;
        width: auto;
    }

    .hero-arrow {
        display: none;
    }

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

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

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

    .ranking-link {
        grid-template-columns: 46px 76px minmax(0, 1fr);
        gap: 12px;
    }

    .ranking-link img {
        width: 76px;
        height: 104px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .container,
    .nav-wrap,
    .mobile-nav,
    .footer-inner,
    .footer-copy {
        width: min(100% - 22px, 1280px);
    }

    .brand-text {
        font-size: 1.08rem;
    }

    .hero-content h2,
    .page-hero h1,
    .detail-info h1 {
        font-size: 2.35rem;
    }

    .hero-content {
        padding-bottom: 160px;
    }

    .hero-actions {
        display: grid;
        gap: 10px;
    }

    .btn-soft {
        margin-left: 0;
    }

    .section-heading,
    .cta-band,
    .player-title-row {
        display: grid;
    }

    .page-hero {
        padding: 28px;
    }

    .movie-grid,
    .movie-grid-tight,
    .category-grid,
    .category-overview-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

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

    .ranking-link {
        grid-template-columns: 1fr;
    }

    .ranking-number {
        font-size: 1.6rem;
    }
}
