:root {
    --page-bg: #f7f8fc;
    --surface: #ffffff;
    --surface-soft: rgba(255, 255, 255, 0.82);
    --text: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --purple: #7c3aed;
    --orange: #f97316;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.10);
    --shadow-strong: 0 25px 60px rgba(15, 23, 42, 0.20);
}

* {
    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", Arial, sans-serif;
    background: var(--page-bg);
    color: var(--text);
    line-height: 1.65;
}

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

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

button,
input {
    font: inherit;
}

.page-shell {
    min-height: 100vh;
    overflow-x: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-weight: 800;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 18px;
    letter-spacing: 0.02em;
}

.brand-text small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    min-width: 0;
    flex: 1 1 auto;
}

.nav-link {
    padding: 9px 12px;
    border-radius: 999px;
    color: #4b5563;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
    background: #eff6ff;
}

.nav-link:hover {
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #111827;
    border-radius: 99px;
}

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

.mobile-nav.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.mobile-link {
    padding: 10px 12px;
    border-radius: 12px;
    background: #f3f4f6;
    color: #374151;
    font-weight: 700;
}

.mobile-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

.hero-wrap {
    position: relative;
    width: min(1280px, calc(100% - 32px));
    margin: 24px auto 0;
}

.hero-carousel {
    position: relative;
    height: min(720px, 82vh);
    min-height: 560px;
    overflow: hidden;
    border-radius: 34px;
    background: #111827;
    box-shadow: var(--shadow-strong);
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.08);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 74% 28%, rgba(124, 58, 237, 0.42), transparent 34%),
        linear-gradient(90deg, rgba(8, 13, 27, 0.92) 0%, rgba(15, 23, 42, 0.72) 48%, rgba(15, 23, 42, 0.34) 100%),
        linear-gradient(0deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.08));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: center;
    gap: 56px;
    padding: 72px;
    color: #ffffff;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow,
.section-heading span,
.page-hero span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(37, 99, 235, 0.22);
    border: 1px solid rgba(191, 219, 254, 0.24);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 22px 0 18px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    max-width: 760px;
}

.hero-tags,
.detail-tags,
.tag-row,
.filter-pills,
.quick-cats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

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

.hero-tags span,
.detail-tags a,
.tag-row span,
.filter-pills button,
.quick-cats a {
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

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

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

.primary-btn,
.ghost-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    padding: 13px 22px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 18px 35px rgba(37, 99, 235, 0.30);
}

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

.ghost-btn {
    padding: 12px 18px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(10px);
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
    transform: rotate(2deg);
    transition: transform 0.25s ease;
}

.hero-poster:hover {
    transform: rotate(0deg) translateY(-6px);
}

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

.hero-poster span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 12px 16px;
    border-radius: 16px;
    color: #ffffff;
    text-align: center;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(12px);
}

.hero-dots {
    position: absolute;
    z-index: 5;
    left: 72px;
    bottom: 44px;
    display: flex;
    gap: 9px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 36px;
    background: #ffffff;
}

.hero-search-card {
    position: relative;
    z-index: 8;
    width: min(1040px, calc(100% - 40px));
    margin: -66px auto 0;
    padding: 20px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.home-search label {
    display: block;
    margin-bottom: 10px;
    color: #374151;
    font-weight: 800;
}

.search-line,
.inline-search {
    display: flex;
    gap: 10px;
}

.search-line input,
.inline-search input {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--text);
    background: #ffffff;
    outline: none;
}

.search-line input:focus,
.inline-search input:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.search-line button,
.inline-search button {
    padding: 0 22px;
    border: 0;
    border-radius: 16px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

.quick-cats {
    margin-top: 14px;
}

.quick-cats a,
.filter-pills button {
    padding: 9px 12px;
    color: #374151;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
}

.quick-cats a:hover,
.filter-pills button:hover,
.filter-pills button.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-color: transparent;
}

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

.top-page {
    padding-top: 36px;
}

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

.section-heading {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.left-heading {
    margin-left: 0;
    text-align: left;
}

.compact-heading {
    margin: 0;
    text-align: left;
}

.section-heading span,
.page-hero span {
    color: var(--blue);
    background: #eff6ff;
    border-color: #dbeafe;
}

.section-heading h2,
.page-hero h1,
.detail-info h1,
.detail-text h2 {
    margin: 14px 0 12px;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.section-heading h2,
.page-hero h1 {
    font-size: clamp(30px, 4vw, 48px);
}

.section-heading p,
.page-hero p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.text-link {
    margin-top: 18px;
    color: var(--blue);
    font-weight: 900;
}

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: var(--surface);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e5e7eb;
}

.poster-link img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.58));
    opacity: 0.85;
}

.play-chip {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    background: rgba(37, 99, 235, 0.90);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), #ef4444);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.26);
}

.card-body {
    padding: 16px;
}

.card-meta,
.detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.card-meta span,
.detail-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: #f3f4f6;
}

.movie-card h3 {
    margin: 11px 0 8px;
    font-size: 18px;
    line-height: 1.32;
}

.movie-card h3 a:hover {
    color: var(--blue);
}

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

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

.tag-row span {
    padding: 5px 8px;
    color: var(--blue);
    background: #eff6ff;
}

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

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

.category-tile,
.overview-card {
    display: block;
    padding: 24px;
    border-radius: 24px;
    background: var(--surface);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.category-tile strong,
.overview-title {
    display: block;
    color: var(--text);
    font-size: 21px;
    font-weight: 900;
}

.category-tile span,
.overview-card p {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

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

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

.rank-row {
    display: grid;
    grid-template-columns: 40px 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.rank-row:hover {
    color: var(--blue);
}

.rank-num {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

.rank-row img {
    width: 58px;
    height: 78px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-info {
    min-width: 0;
}

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

.rank-info strong {
    font-weight: 900;
}

.rank-info em {
    margin-top: 3px;
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.page-hero {
    position: relative;
    padding: 54px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 82% 12%, rgba(124, 58, 237, 0.18), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #eff6ff 52%, #f5f3ff 100%);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
}

.page-hero > * {
    position: relative;
    z-index: 1;
}

.inline-search {
    max-width: 720px;
    margin-top: 24px;
}

.filter-pills {
    margin-top: 18px;
}

.overview-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.overview-links a {
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--blue);
    background: #eff6ff;
    font-size: 13px;
    font-weight: 700;
}

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

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

.detail-hero {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 36px;
    align-items: center;
    padding: 36px;
    border-radius: 32px;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 12%, rgba(96, 165, 250, 0.28), transparent 32%),
        radial-gradient(circle at 88% 20%, rgba(168, 85, 247, 0.30), transparent 34%),
        linear-gradient(135deg, #0f172a, #1e1b4b 58%, #111827);
    box-shadow: var(--shadow-strong);
}

.detail-cover {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.38);
}

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

.detail-info h1 {
    font-size: clamp(34px, 5vw, 58px);
}

.lead-text {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.detail-info .detail-meta span {
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.12);
}

.detail-tags {
    margin: 22px 0 28px;
}

.detail-tags a {
    padding: 7px 10px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: var(--shadow-strong);
}

.movie-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.05), rgba(2, 6, 23, 0.46));
    transition: opacity 0.2s ease;
}

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

.play-icon {
    position: relative;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.play-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -50%);
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 26px solid var(--blue);
}

.narrow-section {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}

.detail-text {
    color: #1f2937;
}

.detail-text h2 {
    font-size: 28px;
}

.detail-text p {
    margin: 0 0 22px;
    color: #374151;
    font-size: 17px;
}

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

.compact-card .movie-card p,
.compact-card p {
    min-height: auto;
}

.site-footer {
    margin-top: 86px;
    padding: 46px 0 24px;
    color: #cbd5e1;
    background: #0f172a;
}

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

.footer-brand {
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
}

.footer-inner p {
    max-width: 560px;
    margin: 12px 0 0;
    color: #94a3b8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.footer-links a {
    padding: 8px 10px;
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    width: min(1280px, calc(100% - 32px));
    margin: 30px auto 0;
    padding-top: 20px;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 14px;
}

.is-filtered-out,
.is-search-hidden {
    display: none !important;
}

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

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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 44px;
    }

    .hero-poster {
        display: none;
    }

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

    .split-section,
    .ranking-preview {
        grid-template-columns: 1fr;
    }

    .compact-heading,
    .ranking-preview .section-heading {
        text-align: center;
        margin: 0 auto 24px;
    }
}

@media (max-width: 820px) {
    .header-inner {
        height: 68px;
    }

    .brand-text small {
        display: none;
    }

    .hero-wrap,
    .main-content,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 22px, 1280px);
    }

    .hero-carousel {
        min-height: 560px;
        height: 72vh;
        border-radius: 24px;
    }

    .hero-content {
        padding: 30px 24px 92px;
        align-items: end;
    }

    .hero-copy p {
        font-size: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-dots {
        left: 24px;
        bottom: 38px;
    }

    .hero-search-card {
        width: calc(100% - 16px);
        margin-top: -46px;
        border-radius: 20px;
    }

    .search-line,
    .inline-search {
        flex-direction: column;
    }

    .search-line button,
    .inline-search button {
        min-height: 48px;
    }

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

    .movie-grid,
    .related-grid,
    .category-grid,
    .overview-grid,
    .rank-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .card-body {
        padding: 13px;
    }

    .movie-card h3 {
        font-size: 16px;
    }

    .page-hero,
    .detail-hero {
        padding: 28px 20px;
        border-radius: 24px;
    }

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

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

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

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

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

    .mobile-nav.open,
    .movie-grid,
    .related-grid,
    .category-grid,
    .overview-grid,
    .rank-list {
        grid-template-columns: 1fr;
    }

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

    .hero-copy h1 {
        font-size: 36px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

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

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