:root {
    --bg: #f3f6fb;
    --panel: #ffffff;
    --panel-soft: #f8fafc;
    --text: #172033;
    --muted: #64748b;
    --line: #e2e8f0;
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --gold: #f59e0b;
    --orange: #ea580c;
    --purple: #7c3aed;
    --green: #059669;
    --shadow: 0 18px 55px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
    --radius: 22px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 36rem), var(--bg);
    min-height: 100vh;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.98));
    color: #ffffff;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(18px);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 76px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.22s ease;
}

.brand:hover {
    transform: translateY(-1px) scale(1.02);
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    box-shadow: 0 12px 28px rgba(234, 88, 12, 0.35);
}

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

.brand-title {
    font-size: 23px;
    font-weight: 900;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #fbbf24, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-subtitle {
    margin-top: 4px;
    color: #cbd5e1;
    font-size: 12px;
}

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

.nav-link {
    color: #cbd5e1;
    padding: 10px 16px;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.26);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    border-radius: 99px;
}

.mobile-nav {
    display: none;
    padding: 0 24px 20px;
    border-top: 1px solid rgba(226, 232, 240, 0.12);
}

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

.mobile-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.mobile-categories a {
    color: #e2e8f0;
    font-size: 13px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

main,
.page-main,
.detail-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 64px;
}

.hero-carousel {
    position: relative;
    max-width: 1280px;
    min-height: 620px;
    margin: 26px auto 28px;
    overflow: hidden;
    border-radius: 34px;
    background: #0f172a;
    box-shadow: var(--shadow);
}

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

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

.hero-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(14px) saturate(1.16);
    transform: scale(1.08);
    opacity: 0.72;
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.66), rgba(15, 23, 42, 0.86));
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 360px;
    align-items: center;
    gap: 56px;
    padding: 72px 78px;
}

.hero-copy {
    color: #fff;
    max-width: 720px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    color: #fbbf24;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero-copy p,
.page-hero p,
.detail-lead {
    margin: 22px 0 0;
    color: #e2e8f0;
    font-size: 18px;
    line-height: 1.9;
}

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

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 10px;
    color: #92400e;
    background: #fffbeb;
    font-size: 12px;
    font-weight: 800;
}

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

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

.primary-button {
    color: #fff;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    box-shadow: 0 16px 34px rgba(234, 88, 12, 0.34);
}

.ghost-button {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
}

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

.hero-poster {
    display: block;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

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

.hero-poster:hover img {
    transform: scale(1.05);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(15, 23, 42, 0.58);
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: #fff;
}

.home-search {
    max-width: 920px;
    margin: -4px auto 28px;
}

.search-panel,
.listing-tools {
    border-radius: 24px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.86);
    backdrop-filter: blur(16px);
}

.home-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 14px;
}

.search-submit {
    border: 0;
    cursor: pointer;
}

.search-label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.search-label input {
    width: 100%;
    min-height: 54px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--text);
    background: #fff;
    padding: 0 18px;
    outline: none;
    font-size: 16px;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search-label input:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.content-section {
    margin-top: 56px;
}

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

.section-head h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.16;
}

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

.section-more {
    color: #fff;
    min-height: 42px;
    background: linear-gradient(135deg, var(--dark-soft), var(--dark));
    white-space: nowrap;
}

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

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

.listing-grid {
    margin-top: 24px;
}

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--panel);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.78);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.card-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

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

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

.play-chip,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.play-chip {
    right: 10px;
    bottom: 10px;
    padding: 7px 10px;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(10px);
}

.rank-badge {
    top: 10px;
    left: 10px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    box-shadow: 0 10px 24px rgba(234, 88, 12, 0.3);
}

.card-body {
    padding: 16px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.card-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 6px;
    color: #cbd5e1;
}

.card-body h3 {
    margin: 8px 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

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

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

.movie-card-small .card-body {
    padding: 13px;
}

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

.movie-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 280px);
    gap: 20px;
    overflow-x: auto;
    padding: 6px 2px 22px;
    scroll-snap-type: x proximity;
}

.movie-row .movie-card {
    scroll-snap-align: start;
}

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

.category-tile {
    display: grid;
    gap: 10px;
    min-height: 150px;
    padding: 20px;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:nth-child(2n) {
    background: linear-gradient(135deg, #7c2d12, #0f172a);
}

.category-tile:nth-child(3n) {
    background: linear-gradient(135deg, #312e81, #0f172a);
}

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

.category-tile span {
    font-size: 21px;
    font-weight: 900;
}

.category-tile em {
    color: #cbd5e1;
    font-style: normal;
    line-height: 1.7;
}

.discovery-section,
.rank-section {
    padding: 30px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(226, 232, 240, 0.82));
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.page-hero {
    margin: 30px 0 34px;
    padding: 58px;
    border-radius: 34px;
    color: #fff;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.34), transparent 28rem), linear-gradient(135deg, #0f172a, #1e293b);
    box-shadow: var(--shadow);
}

.page-hero p {
    max-width: 760px;
}

.slim-hero,
.category-hero,
.search-hero,
.rank-hero {
    min-height: 260px;
}

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

.category-card {
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-covers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 190px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

.category-covers img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
}

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

.category-card-body h2 {
    margin: 0 0 8px;
    font-size: 26px;
}

.category-card-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.listing-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.inline-search {
    min-width: min(420px, 100%);
    flex: 1;
}

.wide-search {
    min-width: min(620px, 100%);
}

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

.filter-button {
    border: 0;
    border-radius: 999px;
    padding: 12px 16px;
    color: #334155;
    background: #f1f5f9;
    font-weight: 900;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.filter-button:hover,
.filter-button.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    transform: translateY(-1px);
}

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

.top-rank {
    position: relative;
    display: grid;
    min-height: 420px;
    align-items: end;
    overflow: hidden;
    border-radius: 32px;
    padding: 26px;
    color: #fff;
    background: #0f172a;
    box-shadow: var(--shadow);
}

.top-rank::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(15, 23, 42, 0.92));
}

.top-rank img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.top-rank:hover img {
    transform: scale(1.06);
}

.top-rank span,
.top-rank strong,
.top-rank em {
    position: relative;
    z-index: 2;
}

.top-rank span {
    width: max-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    font-weight: 900;
}

.top-rank strong {
    margin-top: 14px;
    font-size: 28px;
}

.top-rank em {
    color: #fbbf24;
    font-style: normal;
    font-size: 20px;
    font-weight: 900;
}

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

.breadcrumb a {
    color: #d97706;
    font-weight: 900;
}

.detail-hero {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 34px;
    align-items: stretch;
    padding: 34px;
    border-radius: 34px;
    color: #fff;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.24), transparent 30rem), linear-gradient(135deg, #0f172a, #1e293b);
    box-shadow: var(--shadow);
}

.detail-poster {
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(135deg, #334155, #0f172a);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
}

.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info {
    display: grid;
    align-content: center;
}

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

.detail-lead {
    color: #e2e8f0;
    max-width: 780px;
}

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

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

.detail-meta li {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.detail-meta span {
    display: block;
    color: #cbd5e1;
    font-size: 12px;
}

.detail-meta strong {
    display: block;
    margin-top: 6px;
    color: #fff;
}

.player-section {
    margin-top: 32px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: #020617;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.player-shell video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #020617;
}

.player-start {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.25), rgba(15, 23, 42, 0.56));
    cursor: pointer;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-start span {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    box-shadow: 0 18px 42px rgba(234, 88, 12, 0.38);
    font-size: 30px;
}

.player-start strong {
    font-size: 18px;
}

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

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.story-card {
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.78);
}

.story-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.story-card p {
    margin: 0;
    color: #475569;
    line-height: 1.9;
}

.site-footer {
    color: #cbd5e1;
    background: #0f172a;
    margin-top: 48px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
    gap: 32px;
    padding: 42px 24px;
}

.footer-inner strong {
    color: #fff;
    font-size: 22px;
}

.footer-inner p {
    max-width: 460px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    gap: 10px;
}

.footer-links a {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px 28px;
    color: #94a3b8;
    border-top: 1px solid rgba(226, 232, 240, 0.1);
}

[hidden] {
    display: none !important;
}

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

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

    .hero-inner {
        grid-template-columns: 1fr 280px;
        gap: 34px;
        padding: 58px;
    }

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

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

    .mobile-toggle {
        display: block;
    }

    main,
    .page-main,
    .detail-main {
        padding: 0 16px 46px;
    }

    .hero-carousel {
        min-height: 720px;
        margin-top: 18px;
        border-radius: 26px;
    }

    .hero-inner {
        min-height: 720px;
        grid-template-columns: 1fr;
        padding: 42px 28px 76px;
    }

    .hero-poster {
        max-width: 250px;
        margin: 0 auto;
        order: -1;
    }

    .hero-arrow {
        display: none;
    }

    .movie-grid,
    .compact-grid,
    .listing-grid,
    .category-overview-grid,
    .top-rank-grid,
    .detail-content,
    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .page-hero {
        padding: 36px 26px;
        border-radius: 26px;
    }

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

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

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

@media (max-width: 560px) {
    .header-inner {
        min-height: 66px;
        padding: 0 16px;
    }

    .brand-title {
        font-size: 19px;
    }

    .brand-subtitle {
        display: none;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

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

    .hero-inner {
        min-height: 640px;
        padding: 32px 20px 68px;
    }

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

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

    .section-head {
        display: grid;
        align-items: start;
    }

    .movie-grid,
    .compact-grid,
    .listing-grid,
    .category-grid,
    .category-overview-grid,
    .top-rank-grid,
    .detail-content,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .movie-row {
        grid-auto-columns: 74vw;
    }

    .listing-tools,
    .home-search-form {
        display: grid;
        grid-template-columns: 1fr;
    }

    .search-submit {
        width: 100%;
    }

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

    .player-shell {
        border-radius: 24px;
    }

    .player-start span {
        width: 64px;
        height: 64px;
    }
}
