* {
    box-sizing: border-box;
}

:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-400: #f59e0b;
    --amber-500: #d97706;
    --amber-600: #b45309;
    --green-500: #16a34a;
    --green-600: #15803d;
    --green-900: #14532d;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-lg: 0 20px 45px rgba(17, 24, 39, 0.12);
    --shadow-md: 0 12px 28px rgba(17, 24, 39, 0.1);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--gray-800);
    background: linear-gradient(180deg, #fff7ed 0%, #f9fafb 34%, #ffffff 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(236, 253, 245, 0.96));
    border-bottom: 1px solid rgba(217, 119, 6, 0.14);
    backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: var(--gray-900);
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-400), var(--green-500));
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(217, 119, 6, 0.26);
}

.brand-text {
    font-size: 20px;
    letter-spacing: -0.02em;
}

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

.nav-link,
.mobile-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-700);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link {
    padding: 25px 0 22px;
    border-bottom: 3px solid transparent;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: var(--amber-500);
}

.nav-link.is-active {
    border-bottom-color: var(--amber-500);
}

.header-search,
.mobile-search,
.wide-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.wide-search input,
.filter-panel input,
.filter-panel select {
    border: 1px solid rgba(209, 213, 219, 0.95);
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-800);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
    width: 220px;
    padding: 10px 14px;
    border-radius: 999px;
}

.header-search button,
.mobile-search button,
.wide-search button,
.filter-panel button {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-400), var(--green-500));
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(217, 119, 6, 0.2);
}

.header-search button {
    padding: 10px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.wide-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--amber-400);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
    background: #ffffff;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.12);
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--amber-600);
    border-radius: 2px;
}

.mobile-panel {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

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

.mobile-panel nav {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.mobile-search input {
    flex: 1;
    min-width: 0;
    padding: 11px 14px;
    border-radius: 999px;
}

.mobile-search button {
    padding: 11px 16px;
}

.hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--green-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 35%, rgba(245, 158, 11, 0.42), transparent 36%),
        linear-gradient(90deg, rgba(120, 53, 15, 0.92) 0%, rgba(20, 83, 45, 0.86) 48%, rgba(17, 24, 39, 0.78) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(760px, calc(100% - 40px));
    margin-left: max(24px, calc((100vw - 1280px) / 2));
    color: #ffffff;
}

.hero-kicker,
.hero-tags,
.detail-meta,
.movie-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-kicker span,
.hero-tags span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.hero h1,
.hero h2 {
    max-width: 820px;
    margin: 24px 0 16px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero p {
    max-width: 680px;
    margin: 0 0 20px;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.88);
}

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

.primary-button,
.ghost-button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
    min-height: 48px;
    padding: 0 22px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-400), var(--green-500));
    border-radius: 999px;
    box-shadow: 0 18px 34px rgba(245, 158, 11, 0.28);
}

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

.ghost-button {
    min-height: 48px;
    padding: 0 22px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.ghost-button.light {
    color: var(--amber-600);
    background: rgba(255, 255, 255, 0.78);
}

.hero-side-panel {
    position: absolute;
    right: max(24px, calc((100vw - 1280px) / 2));
    bottom: 72px;
    z-index: 5;
    width: min(390px, calc(100% - 48px));
    padding: 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.hero-panel-title {
    margin: 0 0 12px;
    color: #ffffff;
    font-weight: 900;
}

.hero-mini-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 12px;
    padding: 8px;
    color: rgba(255, 255, 255, 0.88);
    border-radius: 18px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-mini-card:hover,
.hero-mini-card.is-active {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(-3px);
}

.hero-mini-card img {
    width: 64px;
    height: 84px;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.28), rgba(22, 163, 74, 0.28));
    border-radius: 14px;
}

.hero-mini-card span {
    font-weight: 800;
    line-height: 1.35;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

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

.home-search-band,
.content-section,
.page-shell,
.detail-shell {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.home-search-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
    gap: 24px;
    align-items: center;
    margin-top: -46px;
    padding: 28px;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}

.home-search-band h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 34px);
}

.home-search-band p {
    margin: 0;
    color: var(--gray-500);
    line-height: 1.7;
}

.wide-search input {
    flex: 1;
    min-width: 0;
    padding: 15px 18px;
    border-radius: 999px;
}

.wide-search button {
    padding: 15px 22px;
}

.content-section {
    padding: 70px 0 0;
}

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

.eyebrow {
    margin: 0 0 8px;
    color: var(--amber-500);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-heading h2,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    color: var(--gray-900);
    letter-spacing: -0.04em;
}

.section-heading h2 {
    font-size: clamp(28px, 4vw, 44px);
}

.section-heading p,
.page-hero p,
.category-overview-main p {
    margin: 8px 0 0;
    color: var(--gray-500);
    line-height: 1.75;
}

.section-more,
.text-link {
    color: var(--amber-500);
}

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

.category-card,
.category-overview-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(254, 243, 199, 0.72));
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card span,
.category-overview-main span {
    font-size: 20px;
    font-weight: 900;
    color: var(--gray-900);
}

.category-card p {
    min-height: 76px;
    margin: 10px 0 0;
    color: var(--gray-500);
    line-height: 1.7;
}

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

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

.movie-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(209, 213, 219, 0.8);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

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

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(22, 163, 74, 0.18));
}

.movie-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

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

.cover-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(17, 24, 39, 0.78));
}

.rating-badge,
.rank-badge,
.play-chip {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.rating-badge {
    right: 12px;
    top: 12px;
    min-width: 48px;
    height: 30px;
    color: #78350f;
    background: var(--amber-100);
    border-radius: 999px;
}

.rank-badge {
    left: 12px;
    top: 12px;
    width: 36px;
    height: 36px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-400), var(--green-500));
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.play-chip {
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.44);
    border-radius: 999px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.24s ease, transform 0.24s ease;
    backdrop-filter: blur(6px);
}

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

.movie-body {
    padding: 18px;
}

.movie-body h3 {
    margin: 0 0 10px;
    color: var(--gray-900);
    font-size: 19px;
    line-height: 1.35;
}

.movie-body h3 a:hover {
    color: var(--amber-500);
}

.movie-line {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--gray-500);
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    margin-bottom: 12px;
    color: var(--gray-500);
    font-size: 13px;
}

.movie-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 10px;
    color: #c4b5a3;
}

.movie-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.movie-tags span {
    padding: 5px 10px;
    color: var(--amber-600);
    background: var(--amber-50);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.movie-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    color: var(--gray-500);
    font-size: 14px;
}

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

.movie-card-compact .movie-cover {
    aspect-ratio: auto;
    min-height: 170px;
}

.movie-card-compact .movie-line {
    min-height: auto;
}

.page-shell {
    padding: 36px 0 76px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    padding: 40px;
    color: #ffffff;
    background:
        radial-gradient(circle at 76% 10%, rgba(245, 158, 11, 0.32), transparent 34%),
        linear-gradient(135deg, rgba(120, 53, 15, 0.96), rgba(20, 83, 45, 0.93));
    border-radius: 34px;
    box-shadow: var(--shadow-lg);
}

.page-hero h1 {
    color: #ffffff;
    font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(140px, 180px));
    gap: 12px;
    margin-bottom: 28px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    padding: 13px 14px;
    border-radius: 16px;
}

.empty-state {
    display: none;
    margin-top: 28px;
    padding: 28px;
    text-align: center;
    color: var(--gray-500);
    background: #ffffff;
    border: 1px dashed rgba(217, 119, 6, 0.3);
    border-radius: 24px;
}

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

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

.category-overview-card {
    padding: 26px;
}

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

.category-sample-links a {
    padding: 8px 12px;
    color: var(--amber-600);
    background: #ffffff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.detail-shell {
    padding: 30px 0 76px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--gray-500);
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: var(--amber-500);
}

.detail-hero {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 30px;
    color: #ffffff;
    background:
        radial-gradient(circle at 85% 12%, rgba(245, 158, 11, 0.32), transparent 32%),
        linear-gradient(135deg, rgba(120, 53, 15, 0.97), rgba(20, 83, 45, 0.95));
    border-radius: 34px;
    box-shadow: var(--shadow-lg);
}

.detail-poster {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(22, 163, 74, 0.18));
    border: 6px solid rgba(255, 255, 255, 0.22);
    border-radius: 30px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

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

.detail-info h1 {
    color: #ffffff;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.08;
}

.detail-one-line {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
    line-height: 1.8;
}

.detail-meta {
    margin: 22px 0;
}

.detail-tags span {
    padding: 7px 12px;
    color: #78350f;
    background: var(--amber-100);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

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

.player-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.player-frame video {
    width: 100%;
    height: 100%;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    gap: 12px;
    color: #ffffff;
    border: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.72));
    cursor: pointer;
}

.player-overlay.is-hidden {
    display: none;
}

.player-icon {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    padding-left: 6px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-400), var(--green-500));
    border-radius: 999px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.player-overlay span:last-child {
    font-size: 20px;
    font-weight: 900;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    margin-top: 34px;
}

.text-panel {
    padding: 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(209, 213, 219, 0.78);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.text-panel h2 {
    margin: 0 0 16px;
    color: var(--gray-900);
    font-size: 26px;
}

.text-panel p {
    margin: 0;
    color: var(--gray-700);
    line-height: 1.9;
    white-space: pre-line;
}

.site-footer {
    margin-top: 86px;
    color: rgba(255, 255, 255, 0.82);
    background: linear-gradient(135deg, #78350f, #14532d);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
    gap: 32px;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0;
}

.footer-brand {
    color: #ffffff;
    font-size: 22px;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.footer-links a {
    padding: 9px 13px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

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

    .mobile-toggle {
        display: block;
    }

    .hero-side-panel {
        display: none;
    }

    .home-search-band,
    .detail-hero,
    .detail-content,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 720px) {
    .brand-text {
        font-size: 17px;
    }

    .hero {
        min-height: 560px;
    }

    .hero-content {
        width: min(100% - 32px, 680px);
        margin: 0 auto;
    }

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

    .home-search-band {
        margin-top: 20px;
        padding: 22px;
    }

    .wide-search,
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .category-grid,
    .category-overview-grid,
    .movie-grid,
    .rank-grid,
    .filter-panel {
        grid-template-columns: 1fr;
    }

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

    .movie-card-compact .movie-cover {
        min-height: 150px;
    }

    .page-hero,
    .detail-hero {
        padding: 24px;
        border-radius: 24px;
    }

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

    .detail-poster {
        width: min(260px, 100%);
        margin: 0 auto;
    }

    .footer-links {
        justify-content: flex-start;
    }
}
