:root {
    --night-950: #0a1929;
    --night-925: #0d2033;
    --night-900: #102a43;
    --night-850: #173653;
    --night-800: #243b53;
    --night-700: #334e68;
    --night-500: #829ab1;
    --night-400: #9fb3c8;
    --night-300: #bcccdc;
    --night-200: #d9e2ec;
    --night-100: #f0f4f8;
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --border: rgba(159, 179, 200, 0.16);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    --glow: 0 0 26px rgba(245, 158, 11, 0.24);
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--night-100);
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.08), transparent 34rem),
        linear-gradient(180deg, var(--night-950), #07111e 58%, var(--night-950));
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 75%);
    z-index: -1;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    background: rgba(10, 25, 41, 0.72);
    backdrop-filter: blur(18px);
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    border-color: var(--border);
    background: rgba(10, 25, 41, 0.94);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--night-950);
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    box-shadow: var(--glow);
}

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

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

.nav-link {
    position: relative;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--night-300);
    transition: color 0.25s ease, background 0.25s ease;
}

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

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(16, 42, 67, 0.86);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: var(--night-100);
}

.hero {
    position: relative;
    height: min(82vh, 780px);
    min-height: 580px;
    overflow: hidden;
    background: var(--night-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-layer {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, var(--night-950) 0%, rgba(10, 25, 41, 0.78) 42%, rgba(10, 25, 41, 0.18) 100%),
        linear-gradient(90deg, rgba(10, 25, 41, 0.95) 0%, rgba(10, 25, 41, 0.54) 44%, transparent 100%);
}

.hero-content {
    position: absolute;
    inset: auto 0 0 0;
    padding-bottom: clamp(58px, 10vw, 120px);
}

.hero-copy {
    max-width: 760px;
    animation: fadeIn 0.7s ease both;
}

.hero-copy h1,
.page-hero h1,
.detail-hero h1 {
    margin: 12px 0 14px;
    font-size: clamp(2.3rem, 6vw, 5.4rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    text-shadow: 0 22px 44px rgba(0, 0, 0, 0.42);
}

.hero-copy p,
.page-hero p,
.detail-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--night-200);
    font-size: clamp(1rem, 1.7vw, 1.24rem);
}

.hero-meta,
.movie-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--night-300);
}

.hero-meta {
    margin-top: 18px;
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(12px);
    font-size: 2.4rem;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform 0.25s ease, background 0.25s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.62);
    transform: translateY(-50%) scale(1.06);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
}

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

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

.section {
    padding: clamp(56px, 7vw, 92px) 0;
    background: linear-gradient(180deg, rgba(16, 42, 67, 0.2), rgba(10, 25, 41, 0.24));
}

.section-deep {
    background: linear-gradient(180deg, rgba(10, 25, 41, 0.72), rgba(16, 42, 67, 0.72));
}

.section-heading {
    margin-bottom: 30px;
}

.section-heading h2 {
    margin: 4px 0 8px;
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
    background: linear-gradient(90deg, var(--amber-400), var(--amber-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-heading p {
    max-width: 720px;
    margin: 0;
    color: var(--night-400);
}

.split-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.compact-heading {
    margin-bottom: 20px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 5px 11px;
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 999px;
    color: var(--amber-400);
    background: rgba(245, 158, 11, 0.1);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.text-link {
    color: var(--amber-400);
    font-weight: 700;
}

.text-link:hover {
    color: var(--amber-500);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.btn-primary {
    color: var(--night-950);
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    box-shadow: var(--glow);
}

.btn-ghost {
    color: var(--night-100);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(16, 42, 67, 0.84);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    border-color: rgba(245, 158, 11, 0.34);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--night-900);
}

.movie-card-large .poster-link {
    aspect-ratio: 16 / 9;
}

.poster-link img,
.list-poster img,
.category-card img,
.poster-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.movie-card:hover .poster-link img,
.list-card:hover .list-poster img,
.category-card:hover img {
    transform: scale(1.07);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.74), transparent 54%);
    opacity: 0.7;
}

.play-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--night-950);
    background: var(--amber-500);
    box-shadow: var(--glow);
}

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

.movie-card h3,
.list-card h3 {
    margin: 10px 0 8px;
    color: var(--night-100);
    font-size: 1.05rem;
    line-height: 1.3;
}

.movie-card h3 a:hover,
.list-card h3 a:hover {
    color: var(--amber-400);
}

.movie-line,
.list-content p {
    display: -webkit-box;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--night-400);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-card-compact .movie-line {
    display: none;
}

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

.tag-row span,
.detail-tags span,
.genre-links a {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 9px;
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 999px;
    color: var(--amber-400);
    background: rgba(245, 158, 11, 0.1);
    font-size: 0.78rem;
}

.hero-tags span {
    font-size: 0.9rem;
}

.movie-meta {
    gap: 10px;
    color: var(--night-500);
    font-size: 0.86rem;
}

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

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

.category-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--night-900);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.category-card a {
    position: relative;
    display: block;
    min-height: 230px;
}

.category-card img {
    position: absolute;
    inset: 0;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(10, 25, 41, 0.92), rgba(10, 25, 41, 0.18)),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.2), transparent 48%);
}

.category-card div {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
}

.category-card h2 {
    margin: 8px 0 6px;
    font-size: 1.4rem;
}

.category-card p {
    margin: 0;
    color: var(--night-300);
}

.category-count {
    color: var(--amber-400);
    font-size: 0.88rem;
    font-weight: 800;
}

.filter-panel,
.search-page-panel {
    margin-bottom: 28px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(16, 42, 67, 0.72);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.filter-panel {
    display: grid;
    grid-template-columns: 1fr 190px 190px;
    gap: 16px;
}

.filter-panel label,
.search-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--night-300);
    font-size: 0.9rem;
    font-weight: 700;
}

input,
select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--night-100);
    background: rgba(10, 25, 41, 0.82);
    outline: none;
    padding: 0 14px;
}

input:focus,
select:focus {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: var(--glow);
}

.filter-empty {
    display: none;
    margin: 26px 0 0;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--night-300);
    text-align: center;
    background: rgba(16, 42, 67, 0.7);
}

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

.two-column-section,
.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 30px;
}

.list-stack {
    display: grid;
    gap: 14px;
}

.list-card {
    display: grid;
    grid-template-columns: 164px minmax(0, 1fr);
    gap: 16px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(16, 42, 67, 0.72);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.list-card:hover {
    border-color: rgba(245, 158, 11, 0.32);
    transform: translateY(-3px);
}

.list-poster {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 16 / 10;
    background: var(--night-900);
}

.list-poster span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.16);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.list-card:hover .list-poster span {
    opacity: 1;
}

.rank-panel {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(16, 42, 67, 0.72);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.rank-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rank-list li a {
    display: grid;
    grid-template-columns: 44px 58px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: rgba(10, 25, 41, 0.62);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.rank-list li a:hover {
    border-color: rgba(245, 158, 11, 0.32);
    transform: translateX(4px);
}

.rank-number {
    color: var(--amber-400);
    font-weight: 900;
    font-size: 1.05rem;
}

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

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

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

.rank-info small {
    color: var(--night-500);
}

.page-main {
    padding-top: 72px;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(86px, 12vw, 150px) 0 clamp(54px, 8vw, 90px);
    background:
        radial-gradient(circle at 16% 20%, rgba(245, 158, 11, 0.18), transparent 34rem),
        linear-gradient(135deg, var(--night-900), var(--night-950));
}

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

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

.ranking-layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.rank-panel-full {
    min-width: 0;
}

.rank-list-wide {
    max-height: none;
}

.search-field-large input {
    min-height: 58px;
    font-size: 1.05rem;
}

.search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.search-chips button {
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 999px;
    color: var(--amber-400);
    background: rgba(245, 158, 11, 0.08);
    padding: 7px 13px;
}

.detail-hero {
    min-height: 540px;
    display: flex;
    align-items: end;
    padding-top: 150px;
}

.detail-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero-layer {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, var(--night-950), rgba(10, 25, 41, 0.78), rgba(10, 25, 41, 0.42)),
        linear-gradient(90deg, rgba(10, 25, 41, 0.96), rgba(10, 25, 41, 0.4));
}

.detail-hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--night-300);
}

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

.detail-section {
    padding-top: 36px;
}

.detail-content {
    display: grid;
    gap: 22px;
}

.player-card,
.info-card,
.side-card {
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(16, 42, 67, 0.76);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.23);
}

.player-card {
    overflow: hidden;
}

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
}

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

.player-start {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background:
        radial-gradient(circle, rgba(245, 158, 11, 0.16), transparent 24rem),
        rgba(0, 0, 0, 0.38);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-round {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--night-950);
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    box-shadow: var(--glow);
    font-size: 1.7rem;
}

.player-message {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    margin: 0;
    color: var(--amber-400);
    text-align: center;
}

.info-card,
.side-card {
    padding: 24px;
}

.info-card h2,
.side-card h2 {
    margin: 0 0 14px;
    color: var(--night-100);
    font-size: 1.35rem;
}

.info-card p {
    margin: 0;
    color: var(--night-300);
}

.detail-sidebar {
    display: grid;
    align-content: start;
    gap: 22px;
}

.poster-side {
    overflow: hidden;
    padding: 0;
}

.poster-side img {
    aspect-ratio: 2 / 3;
}

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

.detail-dl div {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.detail-dl div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.detail-dl dt {
    color: var(--night-500);
}

.detail-dl dd {
    margin: 0;
    color: var(--night-200);
}

.site-footer {
    border-top: 1px solid var(--border);
    background: rgba(7, 17, 30, 0.92);
    padding: 44px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
}

.footer-brand {
    margin-bottom: 14px;
}

.site-footer p,
.site-footer a {
    color: var(--night-400);
}

.site-footer a:hover {
    color: var(--amber-400);
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 1.05rem;
}

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

.back-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: var(--night-950);
    background: var(--amber-500);
    box-shadow: var(--glow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

[hidden] {
    display: none !important;
}

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

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

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

    .two-column-section,
    .detail-layout {
        grid-template-columns: 1fr;
    }

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

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

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 72px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: rgba(10, 25, 41, 0.96);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero {
        height: 74vh;
        min-height: 540px;
    }

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

    .hero-arrow {
        display: none;
    }

    .movie-grid,
    .large-grid,
    .category-grid,
    .category-grid-wide,
    .ranking-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filter-panel {
        grid-template-columns: 1fr;
    }

    .split-heading {
        align-items: start;
        flex-direction: column;
    }

    .footer-grid,
    .detail-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, 1280px);
    }

    .movie-grid,
    .large-grid,
    .category-grid,
    .category-grid-wide {
        grid-template-columns: 1fr;
    }

    .movie-card-compact .poster-link {
        aspect-ratio: 16 / 9;
    }

    .list-card {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .list-content p {
        -webkit-line-clamp: 1;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-hero h1 {
        font-size: 2.35rem;
    }

    .page-main {
        padding-top: 66px;
    }

    .detail-hero {
        min-height: 500px;
    }
}
