:root {
    --amber: #f59e0b;
    --amber-dark: #d97706;
    --orange: #f97316;
    --slate: #0f172a;
    --slate-soft: #1e293b;
    --muted: #64748b;
    --line: #e5e7eb;
    --card: #ffffff;
    --bg: #f8fafc;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 22px;
}

* {
    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: #111827;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #f8fafc 100%);
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.96), rgba(249, 115, 22, 0.96));
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(146, 64, 14, 0.18);
    backdrop-filter: blur(16px);
}

.nav-shell {
    max-width: 1280px;
    min-height: 72px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 900;
    white-space: nowrap;
}

.brand-mark,
.footer-logo span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    overflow: hidden;
}

.desktop-nav a {
    font-weight: 700;
    opacity: 0.95;
    white-space: nowrap;
    transition: color 0.25s ease, transform 0.25s ease;
}

.desktop-nav a:hover {
    color: #fef3c7;
    transform: translateY(-1px);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 270px;
}

.nav-search input,
.mobile-menu input,
.large-search input,
.filter-panel input,
.filter-panel select {
    border: 0;
    outline: 0;
    color: #111827;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    padding: 12px 16px;
    box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.18);
}

.nav-search input {
    width: 100%;
}

.nav-search button,
.mobile-menu button,
.large-search button,
.filter-panel button {
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    color: var(--amber-dark);
    background: #ffffff;
    font-weight: 800;
    transition: transform 0.25s ease, background 0.25s ease;
}

.nav-search button:hover,
.mobile-menu button:hover,
.large-search button:hover,
.filter-panel button:hover {
    transform: translateY(-1px);
    background: #fffbeb;
}

.menu-toggle {
    display: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 0;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 22px;
}

.mobile-menu {
    display: none;
    padding: 16px 24px 22px;
    background: linear-gradient(180deg, var(--amber-dark), var(--orange));
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-menu.is-open {
    display: grid;
    gap: 12px;
}

.mobile-menu form {
    display: flex;
    gap: 8px;
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
    font-weight: 800;
}

.hero-section {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(circle at 20% 20%, rgba(254, 243, 199, 0.38), transparent 24%), linear-gradient(135deg, var(--amber), var(--orange) 50%, var(--amber-dark));
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background-image: linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 64px 64px;
}

.hero-shell {
    position: relative;
    max-width: 1280px;
    min-height: 72vh;
    margin: 0 auto;
    padding: 64px 24px 72px;
    display: flex;
    align-items: center;
}

.hero-slide {
    display: none;
    width: 100%;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
    gap: 48px;
    align-items: center;
}

.hero-slide.is-active {
    display: grid;
    animation: heroFade 0.55s ease both;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff7ed;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--amber-dark);
    background: #fffbeb;
}

.hero-copy h1 {
    max-width: 900px;
    margin: 22px 0 12px;
    font-size: clamp(40px, 6vw, 82px);
    line-height: 1.02;
    font-weight: 950;
    text-shadow: 0 18px 30px rgba(120, 53, 15, 0.28);
}

.hero-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(26px, 3.5vw, 44px);
    line-height: 1.15;
    font-weight: 900;
}

.hero-copy p {
    max-width: 760px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    line-height: 1.75;
}

.hero-actions,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-actions {
    margin-top: 26px;
}

.primary-button,
.ghost-button,
.cta-band a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
    background: #ffffff;
    color: var(--amber-dark);
    box-shadow: 0 12px 28px rgba(120, 53, 15, 0.18);
}

.primary-button.full {
    width: 100%;
    margin-top: 18px;
    background: linear-gradient(90deg, var(--amber), var(--orange));
    color: #ffffff;
}

.ghost-button {
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.72);
}

.primary-button:hover,
.ghost-button:hover,
.cta-band a:hover {
    transform: translateY(-2px) scale(1.02);
}

.hero-poster {
    position: relative;
    display: block;
    min-height: 460px;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
    box-shadow: 0 30px 70px rgba(120, 53, 15, 0.34);
    transform: rotate(1.5deg);
}

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

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

.hero-poster span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(12px);
    font-weight: 800;
}

.hero-controls {
    position: absolute;
    left: 24px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-controls button {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    min-width: 38px;
    height: 38px;
    font-weight: 900;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    min-width: 10px;
    width: 10px;
    height: 10px;
    padding: 0;
    opacity: 0.55;
}

.hero-dot.is-active {
    width: 28px;
    opacity: 1;
}

.section-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px;
}

.intro-search {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px);
    gap: 34px;
    align-items: center;
}

.intro-search h2,
.section-title h2,
.ranking-panel h2,
.detail-content-card h1,
.sub-hero h1,
.cta-band h2 {
    margin: 12px 0;
    color: #111827;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 950;
}

.intro-search p,
.sub-hero p,
.cta-band p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 18px;
}

.large-search,
.filter-panel {
    display: flex;
    gap: 12px;
    padding: 14px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.large-search input,
.filter-panel input,
.filter-panel select {
    flex: 1;
    background: #f8fafc;
    box-shadow: inset 0 0 0 1px var(--line);
}

.large-search button,
.filter-panel button {
    color: #ffffff;
    background: linear-gradient(90deg, var(--amber), var(--orange));
}

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

.section-title span {
    display: block;
    color: var(--amber-dark);
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-title h2 {
    margin: 4px 0 0;
}

.section-title a {
    color: var(--amber-dark);
    font-weight: 900;
}

.section-title.inverse h2,
.section-title.inverse span,
.section-title.inverse a {
    color: #ffffff;
}

.movie-grid,
.compact-grid,
.category-grid,
.category-overview-grid {
    display: grid;
    gap: 22px;
}

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

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

.movie-card {
    min-width: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.09);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.15);
}

.movie-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.poster-frame {
    position: relative;
    margin: 0;
    aspect-ratio: 3 / 4.2;
    overflow: hidden;
    background: linear-gradient(135deg, #fde68a, #fb923c);
}

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

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

.poster-frame::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.68));
}

.poster-badge,
.poster-duration {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
    font-size: 12px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(12px);
}

.poster-badge {
    left: 12px;
    top: 12px;
    padding: 6px 10px;
}

.poster-duration {
    right: 12px;
    bottom: 12px;
    padding: 5px 9px;
}

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

.movie-card-body h3 {
    margin: 0;
    color: #111827;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 950;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #64748b;
    font-size: 13px;
}

.tag-pill,
.detail-tags a,
.footer-tags a {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    color: #92400e;
    background: #fffbeb;
    font-size: 12px;
    font-weight: 800;
}

.warm-section {
    background: linear-gradient(90deg, #fff7ed, #fffbeb);
}

.dark-section {
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

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

.category-tile,
.category-overview-card {
    display: block;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    transition: transform 0.25s ease, background 0.25s ease;
}

.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
}

.category-tile strong {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 950;
}

.category-tile span {
    color: #cbd5e1;
    line-height: 1.7;
}

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

.wide-list {
    display: grid;
    gap: 18px;
}

.movie-card-wide .movie-card-link {
    flex-direction: row;
}

.movie-card-wide .poster-frame {
    width: 180px;
    aspect-ratio: 16 / 10;
    flex: 0 0 180px;
}

.ranking-panel,
.side-card,
.detail-content-card,
.player-card,
.ranking-table-block {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.ranking-panel {
    position: sticky;
    top: 96px;
    padding: 24px;
}

.ranking-panel h2 {
    margin-top: 0;
    font-size: 30px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 44px 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    transition: background 0.25s ease;
}

.rank-item:hover {
    background: #fffbeb;
}

.rank-number {
    color: var(--amber-dark);
    font-size: 22px;
    font-weight: 950;
}

.rank-item img {
    width: 58px;
    height: 76px;
    object-fit: cover;
    border-radius: 12px;
    background: #f8fafc;
}

.rank-info strong,
.rank-info em {
    display: block;
}

.rank-info strong {
    color: #111827;
    line-height: 1.35;
}

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

.cta-band {
    margin: 24px auto 72px;
    max-width: 1180px;
    border-radius: 32px;
    padding: 56px 24px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 24px 58px rgba(245, 158, 11, 0.26);
}

.cta-band h2,
.cta-band p {
    color: #ffffff;
}

.cta-band a {
    margin-top: 20px;
    background: #ffffff;
    color: var(--amber-dark);
}

.sub-hero {
    color: #ffffff;
    background: radial-gradient(circle at 22% 20%, rgba(254, 243, 199, 0.28), transparent 26%), linear-gradient(135deg, var(--amber), var(--orange));
    padding: 72px 24px;
}

.sub-hero > div {
    max-width: 1180px;
    margin: 0 auto;
}

.sub-hero h1 {
    color: #ffffff;
}

.sub-hero p {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
}

.breadcrumb a:hover {
    color: #fffbeb;
}

.filter-panel {
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.filter-panel select {
    flex: 0 0 160px;
}

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

.category-overview-card {
    background: #ffffff;
    box-shadow: var(--shadow);
}

.category-overview-card h2 {
    margin: 12px 0;
    font-size: 30px;
}

.category-overview-card p {
    color: var(--muted);
    line-height: 1.75;
}

.sample-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.sample-links a {
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--amber-dark);
    background: #fffbeb;
    font-weight: 800;
}

.ranking-shell {
    display: grid;
    gap: 28px;
}

.ranking-table-block {
    padding: 24px;
}

.ranking-table-block h2 {
    margin: 0 0 18px;
}

.table-wrap {
    overflow-x: auto;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.ranking-table th,
.ranking-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.ranking-table th {
    color: #475569;
    background: #f8fafc;
}

.table-rank {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    font-weight: 900;
}

.table-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
}

.table-title img {
    width: 46px;
    height: 58px;
    object-fit: cover;
    border-radius: 10px;
    background: #f8fafc;
}

.search-summary {
    margin-bottom: 22px;
    color: var(--muted);
    font-weight: 800;
}

.detail-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px 24px;
}

.detail-breadcrumb {
    color: #475569;
    margin-bottom: 22px;
}

.detail-breadcrumb a:hover {
    color: var(--amber-dark);
}

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

.detail-main {
    min-width: 0;
}

.player-card {
    padding: 14px;
}

.video-player {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 18px;
    background: #020617;
}

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

.player-center-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 82px;
    height: 82px;
    border-radius: 999px;
    border: 0;
    color: #ffffff;
    background: rgba(245, 158, 11, 0.92);
    font-size: 30px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.video-player.is-playing .player-center-button {
    opacity: 0;
    pointer-events: none;
}

.player-loading,
.player-error {
    position: absolute;
    left: 18px;
    top: 18px;
    border-radius: 999px;
    padding: 8px 12px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.72);
    font-weight: 800;
}

.player-error:empty {
    display: none;
}

.video-player.is-ready .player-loading {
    display: none;
}

.player-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 48px 16px 16px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.video-player:hover .player-bar {
    opacity: 1;
}

.player-bar button {
    border: 0;
    border-radius: 999px;
    padding: 8px 13px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 800;
}

.detail-content-card {
    margin-top: 24px;
    padding: 28px;
}

.detail-content-card h1 {
    font-size: clamp(30px, 4vw, 48px);
}

.detail-content-card h2,
.side-card h2 {
    margin: 28px 0 12px;
    color: #111827;
    font-size: 24px;
    font-weight: 950;
}

.detail-content-card p {
    color: #334155;
    line-height: 1.9;
    font-size: 17px;
}

.lead-text {
    padding: 18px;
    border-radius: 18px;
    background: #fffbeb;
    color: #78350f !important;
    font-weight: 800;
}

.detail-meta,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

.detail-meta span {
    border-radius: 999px;
    padding: 7px 12px;
    color: #475569;
    background: #f1f5f9;
    font-weight: 800;
}

.detail-tags a {
    font-size: 13px;
}

.detail-side {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 20px;
}

.side-card {
    padding: 20px;
}

.poster-side img {
    width: 100%;
    border-radius: 18px;
    background: linear-gradient(135deg, #fde68a, #fb923c);
}

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

.info-list dt {
    color: #64748b;
    font-weight: 900;
}

.info-list dd {
    margin: 0;
    color: #111827;
    font-weight: 800;
}

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

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(180deg, #0f172a, #020617);
}

.footer-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: #fbbf24;
    font-size: 18px;
}

.site-footer p {
    line-height: 1.8;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.site-footer a:hover {
    color: #fbbf24;
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px 32px;
    color: #94a3b8;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.is-hidden {
    display: none !important;
}

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

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .hero-slide,
    .intro-search,
    .two-column-section,
    .detail-layout,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        max-width: 520px;
        margin: 0 auto;
    }

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

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

    .ranking-panel,
    .detail-side {
        position: static;
    }
}

@media (max-width: 720px) {
    .nav-shell {
        min-height: 64px;
        padding: 0 16px;
    }

    .brand {
        font-size: 20px;
    }

    .hero-shell {
        padding: 40px 16px 76px;
    }

    .hero-copy p {
        font-size: 17px;
    }

    .hero-poster,
    .hero-poster img {
        min-height: 340px;
    }

    .section-shell,
    .detail-shell {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .movie-card-wide .movie-card-link {
        flex-direction: column;
    }

    .movie-card-wide .poster-frame {
        width: 100%;
        flex-basis: auto;
        aspect-ratio: 3 / 4.2;
    }

    .filter-panel,
    .large-search,
    .mobile-menu form {
        flex-direction: column;
    }

    .filter-panel select {
        flex: 1 1 auto;
    }

    .section-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .sub-hero {
        padding: 48px 16px;
    }

    .player-center-button {
        width: 66px;
        height: 66px;
    }
}
