:root {
    --bg: #fff7f9;
    --bg-soft: #fff1f2;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-strong: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --line: rgba(244, 63, 94, 0.14);
    --rose: #e11d48;
    --rose-soft: #fb7185;
    --amber: #f59e0b;
    --amber-soft: #fbbf24;
    --slate: #0f172a;
    --shadow: 0 22px 55px rgba(225, 29, 72, 0.16);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    font-family: 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(251, 113, 133, 0.22), transparent 32rem),
        radial-gradient(circle at 80% 5%, rgba(245, 158, 11, 0.22), transparent 28rem),
        linear-gradient(135deg, #f8fafc 0%, #fff1f2 48%, #fffbeb 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--rose), var(--amber));
    box-shadow: 0 14px 30px rgba(225, 29, 72, 0.26);
}

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

.brand-name {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--rose), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-subtitle {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.main-nav a,
.mobile-nav a {
    padding: 9px 14px;
    border-radius: 12px;
    color: #4b5563;
    font-weight: 700;
    transition: all 0.22s ease;
}

.main-nav a:hover,
.mobile-nav a:hover,
.main-nav a.active,
.mobile-nav a.active {
    background: #ffe4e6;
    color: var(--rose);
}

.top-search {
    position: relative;
    width: min(270px, 24vw);
}

.top-search input,
.filter-control input,
.filter-control select,
.hero-search input {
    width: 100%;
    border: 1px solid rgba(251, 113, 133, 0.28);
    background: rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    padding: 11px 16px;
    outline: none;
    color: var(--text);
    transition: all 0.22s ease;
}

.top-search input:focus,
.filter-control input:focus,
.filter-control select:focus,
.hero-search input:focus {
    border-color: rgba(225, 29, 72, 0.6);
    box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.16);
}

.menu-toggle {
    display: none;
    border: 0;
    border-radius: 14px;
    width: 42px;
    height: 42px;
    background: #fff1f2;
    color: var(--rose);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 22px 18px;
    border-top: 1px solid var(--line);
}

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

.page {
    min-height: 64vh;
}

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

.hero {
    position: relative;
    overflow: hidden;
    padding: 54px 0 40px;
}

.hero-frame {
    position: relative;
    border-radius: 36px;
    min-height: 620px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(136, 19, 55, 0.92) 58%, rgba(245, 158, 11, 0.88));
    box-shadow: var(--shadow);
    overflow: hidden;
    color: #fff;
}

.hero-glow {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 20% 22%, rgba(251, 113, 133, 0.55), transparent 23rem),
        radial-gradient(circle at 84% 18%, rgba(251, 191, 36, 0.42), transparent 21rem),
        radial-gradient(circle at 68% 82%, rgba(244, 63, 94, 0.34), transparent 25rem);
    filter: blur(6px);
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
    gap: 28px;
    padding: 58px;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

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

.hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
}

.hero-kicker,
.section-kicker,
.detail-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffe4e6;
    font-size: 13px;
    font-weight: 800;
}

.section-kicker,
.detail-kicker {
    background: #fff1f2;
    color: var(--rose);
    border-color: var(--line);
}

.hero h1 {
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.02;
    margin: 24px 0 20px;
    letter-spacing: -0.06em;
}

.hero h2 {
    font-size: clamp(32px, 5vw, 66px);
    line-height: 1.04;
    margin: 18px 0 18px;
    letter-spacing: -0.05em;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 24px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 30px;
}

.hero-tags span,
.tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-actions,
.section-actions,
.detail-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 900;
    transition: all 0.24s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose), var(--amber));
    color: #fff;
    box-shadow: 0 15px 35px rgba(225, 29, 72, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(225, 29, 72, 0.36);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--rose);
    border-color: var(--line);
    box-shadow: 0 12px 28px rgba(225, 29, 72, 0.12);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(225, 29, 72, 0.17);
}

.hero-art {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.hero-poster-stack {
    position: relative;
    width: min(430px, 88%);
    aspect-ratio: 3 / 4;
}

.hero-poster-stack::before,
.hero-poster-stack::after {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.13);
    transform: rotate(-8deg) translate(-28px, 18px);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-poster-stack::after {
    transform: rotate(8deg) translate(28px, 24px);
    background: rgba(255, 255, 255, 0.09);
}

.hero-poster {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-card-float {
    position: absolute;
    left: -30px;
    bottom: 28px;
    z-index: 2;
    width: 220px;
    padding: 15px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.hero-card-float strong {
    display: block;
    margin-bottom: 6px;
}

.hero-card-float span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.76);
}

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

.hero-dot {
    width: 38px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: all 0.22s ease;
}

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

.hero-search {
    position: relative;
    z-index: 4;
    width: min(620px, calc(100% - 40px));
    margin: -28px auto 0;
    padding: 12px;
    display: flex;
    gap: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-search input {
    border: 0;
    background: transparent;
}

.hero-search .btn {
    min-width: 118px;
    border: 0;
}

.section {
    padding: 56px 0;
}

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

.section-title {
    margin: 11px 0 8px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: #111827;
}

.section-desc {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

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

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

.movie-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 58px rgba(225, 29, 72, 0.18);
    border-color: rgba(251, 113, 133, 0.35);
}

.poster-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #ffe4e6, #fef3c7);
}

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

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

.poster-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.74));
    opacity: 0.75;
}

.play-badge,
.rank-badge,
.score-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.play-badge {
    left: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--rose);
}

.rank-badge {
    left: 12px;
    top: 12px;
    min-width: 44px;
    height: 30px;
    padding: 0 10px;
    background: linear-gradient(135deg, var(--rose), var(--amber));
    color: #fff;
}

.score-badge {
    right: 12px;
    top: 12px;
    min-width: 44px;
    height: 30px;
    padding: 0 10px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
}

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

.card-title {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
    color: #111827;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.card-desc {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
}

.card-tags .tag {
    background: #fff1f2;
    color: var(--rose);
    border-color: rgba(251, 113, 133, 0.2);
}

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

.category-tile {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 26px;
    padding: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 241, 242, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    transition: all 0.26s ease;
}

.category-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(225, 29, 72, 0.16);
}

.category-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--rose), var(--amber));
    color: #fff;
    font-weight: 900;
}

.category-tile h2,
.category-tile h3 {
    margin: 18px 0 8px;
    font-size: 22px;
}

.category-tile p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 66px 92px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
    transition: all 0.24s ease;
}

.rank-row:hover {
    transform: translateX(6px);
    box-shadow: 0 20px 42px rgba(225, 29, 72, 0.14);
}

.rank-number {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--slate), #881337);
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.rank-cover {
    width: 92px;
    height: 124px;
    border-radius: 18px;
    overflow: hidden;
    background: #ffe4e6;
}

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

.rank-content h2,
.rank-content h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

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

.filter-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px 180px;
    gap: 14px;
    padding: 16px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
    margin-bottom: 26px;
}

.empty-state {
    display: none;
    padding: 42px;
    text-align: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--muted);
}

.empty-state.show {
    display: block;
}

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

.breadcrumb a {
    color: var(--rose);
    font-weight: 800;
}

.detail-page {
    padding: 44px 0 68px;
}

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

.player-panel,
.detail-panel,
.summary-panel,
.related-panel {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.09);
    overflow: hidden;
}

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

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

.player-cover {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #020617;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
}

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.24), rgba(2, 6, 23, 0.72));
}

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

.play-orb {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--rose);
    font-size: 34px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
}

.player-caption {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

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

.detail-panel {
    padding: 28px;
}

.detail-panel h1 {
    margin: 18px 0 14px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.05em;
}

.detail-lead {
    color: #4b5563;
    line-height: 1.9;
    margin: 0 0 20px;
    font-size: 17px;
}

.detail-cover-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    align-items: center;
    margin-top: 20px;
}

.detail-cover-row img {
    width: 140px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
}

.summary-panel,
.related-panel {
    margin-top: 28px;
    padding: 30px;
}

.summary-panel h2,
.related-panel h2 {
    margin: 0 0 14px;
    font-size: 28px;
    letter-spacing: -0.03em;
}

.summary-panel p {
    margin: 0 0 22px;
    color: #374151;
    line-height: 2;
}

.summary-panel p:last-child {
    margin-bottom: 0;
}

.site-footer {
    margin-top: 56px;
    background: linear-gradient(135deg, #0f172a, #881337 66%, #92400e);
    color: #f8fafc;
}

.footer-inner {
    width: min(1280px, calc(100% - 44px));
    margin: 0 auto;
    padding: 46px 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
    gap: 28px;
}

.footer-title {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
}

.footer-text,
.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    font-size: 14px;
}

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

.footer-links a:hover {
    color: #fecdd3;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

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

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

@media (max-width: 900px) {
    .main-nav,
    .top-search {
        display: none;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
    }

    .hero-frame {
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        padding: 34px;
    }

    .hero-copy {
        justify-content: flex-start;
    }

    .hero-art {
        min-height: 340px;
    }

    .hero-poster-stack {
        width: min(300px, 72%);
    }

    .hero-dots {
        left: 34px;
        bottom: 26px;
    }

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

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

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

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

@media (max-width: 680px) {
    .header-inner,
    .mobile-nav {
        padding-left: 16px;
        padding-right: 16px;
    }

    .container,
    .footer-inner {
        width: min(100% - 28px, 1280px);
    }

    .brand-subtitle {
        display: none;
    }

    .hero {
        padding-top: 24px;
    }

    .hero-frame {
        border-radius: 26px;
        min-height: 720px;
    }

    .hero-slide {
        padding: 26px;
    }

    .hero-search {
        border-radius: 24px;
        flex-direction: column;
    }

    .hero-search .btn {
        width: 100%;
    }

    .movie-grid.dense,
    .movie-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .rank-row {
        grid-template-columns: 48px 78px 1fr;
    }

    .rank-row .btn {
        grid-column: 2 / -1;
        width: fit-content;
    }

    .rank-number {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 15px;
    }

    .rank-cover {
        width: 78px;
        height: 105px;
    }

    .detail-cover-row {
        grid-template-columns: 96px 1fr;
    }

    .detail-cover-row img {
        width: 96px;
    }

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

@media (max-width: 440px) {
    .movie-grid.dense,
    .movie-grid {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .hero h2 {
        letter-spacing: -0.04em;
    }
}
