:root {
    color-scheme: light;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --cyan: #06b6d4;
    --teal: #14b8a6;
    --slate: #0f172a;
    --text: #1f2937;
    --muted: #64748b;
    --line: #e2e8f0;
    --soft: #f8fafc;
    --card: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 20px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f1f5f9;
    color: var(--text);
    min-width: 320px;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan), var(--teal));
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.28);
}

.logo-text {
    font-size: 22px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    color: #475569;
    font-weight: 650;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

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

.nav-dropdown {
    position: relative;
}

.nav-dropdown-panel {
    position: absolute;
    top: 46px;
    left: 0;
    width: 190px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #475569;
    font-weight: 650;
}

.nav-dropdown-panel a:hover {
    color: var(--blue);
    background: #eff6ff;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #f1f5f9;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

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

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

.mobile-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
    color: #475569;
}

.mobile-nav a:hover {
    color: var(--blue);
    background: #eff6ff;
}

.hero-carousel {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: #020617;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(0deg, #f1f5f9, rgba(241, 245, 249, 0));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 640px;
    margin: 0 auto;
    padding: 88px 380px 88px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    display: inline-flex;
    width: max-content;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #cffafe;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    margin: 24px 0 18px;
    color: #ffffff;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.96;
    letter-spacing: -0.06em;
    text-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-summary {
    max-width: 720px;
    margin: 0;
    color: #e0f2fe;
    font-size: 19px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 800;
}

.hero-tags .tag {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.primary-button,
.ghost-button,
.search-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 850;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button,
.search-form button {
    color: #ffffff;
    border: 0;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 18px 30px rgba(37, 99, 235, 0.28);
}

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

.primary-button:hover,
.ghost-button:hover,
.search-form button:hover {
    transform: translateY(-2px) scale(1.02);
}

.hero-poster {
    position: absolute;
    z-index: 3;
    right: max(32px, calc((100vw - 1180px) / 2));
    top: 50%;
    width: min(310px, 27vw);
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    overflow: hidden;
    transform: translateY(-50%) rotate(3deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.hero-arrow {
    position: absolute;
    z-index: 6;
    top: 50%;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

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

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

.section-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.stats-section,
.content-section {
    padding: 74px 0;
}

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

.stat-card,
.category-card,
.movie-card,
.category-overview-card,
.movie-detail-card,
.side-card,
.search-panel {
    background: var(--card);
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.stat-card {
    padding: 28px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.stat-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 66px;
    height: 66px;
    padding: 0 14px;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan), var(--teal));
    font-size: 24px;
    box-shadow: 0 18px 32px rgba(37, 99, 235, 0.25);
}

.stat-card h2 {
    margin: 18px 0 8px;
    font-size: 20px;
}

.stat-card p,
.category-card p,
.section-heading p,
.movie-card-body p,
.category-overview-main p,
.site-footer p {
    color: var(--muted);
    line-height: 1.7;
}

.soft-bg {
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.gradient-bg {
    background: linear-gradient(135deg, #fff7ed, #f0fdfa, #eff6ff);
}

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

.section-heading h2 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 0;
    max-width: 680px;
}

.section-more {
    color: var(--blue);
    font-weight: 850;
    white-space: nowrap;
}

.section-more span {
    display: inline-block;
    transition: transform 0.25s ease;
}

.section-more:hover span {
    transform: translateX(4px);
}

.search-panel {
    padding: 18px;
    margin-bottom: 32px;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.search-form input {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0 18px;
    outline: none;
    color: #0f172a;
    background: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-form input:focus {
    border-color: rgba(37, 99, 235, 0.65);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

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

.category-card {
    min-height: 170px;
    padding: 24px;
    overflow: hidden;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    right: -36px;
    top: -36px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(20, 184, 166, 0.12));
}

.category-card span {
    display: block;
    margin-bottom: 12px;
    color: #0f172a;
    font-size: 20px;
    font-weight: 850;
}

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

.movie-card {
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0f172a;
}

.movie-card-compact .poster-wrap {
    aspect-ratio: 3 / 4;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.03), rgba(2, 6, 23, 0.65));
}

.badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 850;
    background: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(10px);
}

.badge-year {
    left: 12px;
    top: 12px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.badge-type {
    right: 12px;
    top: 12px;
}

.rank-badge {
    left: 12px;
    bottom: 12px;
    background: linear-gradient(135deg, #f97316, #facc15);
    color: #111827;
}

.play-chip {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.92);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.84);
    transition: all 0.25s ease;
}

.movie-card:hover .play-chip {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

.movie-card-body h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.movie-card-body p {
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.card-meta span {
    padding: 5px 9px;
    border-radius: 999px;
    background: #f1f5f9;
}

.page-hero {
    padding: 92px 0;
    color: #ffffff;
    background: radial-gradient(circle at top left, rgba(6, 182, 212, 0.8), transparent 34%), linear-gradient(135deg, #1e3a8a, #0f172a 70%);
}

.page-hero .eyebrow {
    margin-bottom: 20px;
}

.page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(40px, 7vw, 66px);
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: #dbeafe;
    font-size: 19px;
    line-height: 1.8;
}

.ranking-hero {
    background: radial-gradient(circle at top right, rgba(250, 204, 21, 0.26), transparent 28%), linear-gradient(135deg, #172554, #0f172a);
}

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

.category-overview-card {
    padding: 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-overview-main {
    display: block;
}

.category-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--teal));
}

.category-overview-card h2 {
    margin: 0 0 10px;
    font-size: 25px;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.category-samples a {
    padding: 8px 11px;
    border-radius: 999px;
    color: #2563eb;
    background: #eff6ff;
    font-size: 13px;
    font-weight: 800;
}

.detail-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 80px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin: 8px 0 24px;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
}

.breadcrumbs a {
    color: #2563eb;
}

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

.player-card,
.movie-detail-card,
.side-card {
    border-radius: 24px;
    overflow: hidden;
}

.player-card {
    margin-bottom: 24px;
    background: #020617;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

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

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    border: 0;
    cursor: pointer;
    color: #ffffff;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.22), rgba(2, 6, 23, 0.84));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-box.is-playing .player-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.big-play {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    color: var(--blue);
    background: #ffffff;
    font-size: 34px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}

.player-overlay strong {
    max-width: 82%;
    text-align: center;
    font-size: 22px;
}

.movie-detail-card {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 28px;
    padding: 26px;
}

.detail-poster {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.18);
}

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

.detail-info h1 {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -0.05em;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 4px;
}

.detail-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    color: #1d4ed8;
    background: #eff6ff;
    font-weight: 800;
    font-size: 13px;
}

.detail-info h2,
.side-card h2 {
    margin: 28px 0 12px;
    color: #0f172a;
    font-size: 22px;
}

.detail-info p {
    margin: 0 0 16px;
    color: #334155;
    line-height: 1.9;
    font-size: 16px;
}

.review-box {
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.detail-side {
    position: sticky;
    top: 92px;
}

.side-card {
    padding: 22px;
}

.side-card .movie-grid {
    grid-template-columns: 1fr;
    gap: 16px;
}

.side-card .movie-card {
    display: grid;
    grid-template-columns: 116px 1fr;
    border-radius: 18px;
}

.side-card .poster-wrap {
    height: 100%;
    aspect-ratio: 4 / 3;
}

.side-card .movie-card-body {
    padding: 12px;
}

.side-card .movie-card-body h3 {
    font-size: 15px;
}

.side-card .movie-card-body p {
    font-size: 13px;
    -webkit-line-clamp: 2;
}

.side-card .card-meta {
    display: none;
}

.empty-related {
    padding: 18px;
    color: #64748b;
    border-radius: 16px;
    background: #f8fafc;
}

.site-footer {
    color: #cbd5e1;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.24), transparent 30%), linear-gradient(135deg, #0f172a, #111827);
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0 36px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
    gap: 34px;
}

.footer-logo {
    color: #ffffff;
    margin-bottom: 14px;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 17px;
}

.site-footer a {
    display: block;
    margin: 9px 0;
    color: #cbd5e1;
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    color: #94a3b8;
}

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

.no-results {
    grid-column: 1 / -1;
    padding: 34px;
    text-align: center;
    color: #64748b;
    border-radius: 20px;
    background: #ffffff;
    border: 1px dashed #cbd5e1;
}

@media (max-width: 1100px) {
    .hero-content {
        padding-right: 300px;
    }

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

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

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

    .detail-side {
        position: static;
    }

    .side-card .movie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .menu-toggle {
        display: flex;
    }

    .mobile-nav.is-open {
        display: block;
    }

    .hero-carousel,
    .hero-slides,
    .hero-content {
        min-height: 720px;
    }

    .hero-content {
        padding: 72px 0 300px;
    }

    .hero-poster {
        top: auto;
        bottom: 70px;
        right: 50%;
        width: 190px;
        transform: translateX(50%) rotate(2deg);
    }

    .hero-arrow {
        display: none;
    }

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

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

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

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

@media (max-width: 560px) {
    .site-header-inner {
        height: 62px;
    }

    .logo-text {
        font-size: 19px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-summary {
        font-size: 16px;
        -webkit-line-clamp: 5;
    }

    .hero-actions,
    .search-form {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .primary-button,
    .ghost-button,
    .search-form button {
        width: 100%;
    }

    .stats-grid,
    .movie-grid,
    .category-grid,
    .category-overview-grid,
    .footer-grid,
    .side-card .movie-grid {
        grid-template-columns: 1fr;
    }

    .movie-card-compact {
        display: grid;
        grid-template-columns: 120px 1fr;
    }

    .movie-card-compact .poster-wrap {
        height: 100%;
        aspect-ratio: 3 / 4;
    }

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

    .page-hero {
        padding: 66px 0;
    }

    .detail-shell {
        padding-bottom: 54px;
    }
}
