:root {
    color-scheme: dark;
    --stone-950: #0c0a09;
    --stone-900: #1c1917;
    --stone-850: #231f1d;
    --stone-800: #292524;
    --stone-700: #44403c;
    --stone-600: #57534e;
    --stone-400: #a8a29e;
    --stone-300: #d6d3d1;
    --stone-200: #e7e5e4;
    --amber-700: #b45309;
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --amber-300: #fcd34d;
    --amber-100: #fef3c7;
    --white: #ffffff;
    --black: #000000;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--stone-950);
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "Microsoft YaHei", sans-serif;
    color: var(--stone-200);
    background:
        radial-gradient(circle at 20% 0%, rgba(180, 83, 9, 0.14), transparent 28rem),
        linear-gradient(180deg, var(--stone-900), var(--stone-950) 36rem);
    min-height: 100vh;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: rgba(12, 10, 9, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.nav-bar {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.02em;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
    color: var(--white);
    box-shadow: 0 14px 35px rgba(245, 158, 11, 0.22);
}

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

.desktop-nav a,
.mobile-nav a,
.footer-links a {
    color: var(--amber-100);
    font-weight: 600;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover {
    color: var(--white);
}

.top-search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 300px;
    padding: 6px;
    background: rgba(41, 37, 36, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.top-search input,
.mobile-nav input,
.search-panel input,
.toolbar-card input {
    width: 100%;
    color: var(--white);
    background: transparent;
    border: 0;
    outline: 0;
}

.top-search input {
    padding: 0 10px;
}

.top-search button,
.search-panel button,
.mobile-nav button {
    border: 0;
    color: var(--white);
    background: var(--amber-600);
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 700;
    transition: background 0.2s ease;
}

.top-search button:hover,
.search-panel button:hover,
.mobile-nav button:hover {
    background: var(--amber-700);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    color: var(--white);
    background: var(--stone-800);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.mobile-nav {
    display: none;
    width: min(100% - 32px, var(--container));
    margin: 0 auto 16px;
    padding: 16px;
    background: rgba(28, 25, 23, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

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

.mobile-nav form {
    display: flex;
    gap: 10px;
    padding: 8px;
    background: var(--stone-800);
    border-radius: 999px;
}

.with-top {
    padding-top: 104px;
}

.hero-carousel {
    position: relative;
    height: 60vh;
    min-height: 520px;
    overflow: hidden;
    background: var(--stone-950);
}

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

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

.hero-slide img,
.detail-backdrop {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade,
.detail-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, var(--stone-950) 0%, rgba(12, 10, 9, 0.62) 42%, rgba(12, 10, 9, 0.18) 100%),
        radial-gradient(circle at 20% 60%, rgba(217, 119, 6, 0.24), transparent 28rem);
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: 56px;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    color: var(--amber-100);
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.hero-content h1,
.detail-info h1,
.page-hero h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(2.5rem, 7vw, 5.75rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-shadow: 0 18px 54px rgba(0, 0, 0, 0.55);
}

.hero-content p {
    max-width: 760px;
    margin: 20px 0 0;
    color: var(--stone-300);
    font-size: clamp(1rem, 2vw, 1.24rem);
    line-height: 1.8;
}

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

.primary-button,
.ghost-button,
.section-action,
.category-showcase span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
    color: var(--white);
    background: var(--amber-600);
    box-shadow: 0 18px 42px rgba(217, 119, 6, 0.28);
}

.primary-button:hover,
.section-action:hover {
    transform: translateY(-2px);
    background: var(--amber-700);
}

.ghost-button {
    color: var(--amber-100);
    background: rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ghost-button:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 34px;
    line-height: 1;
    background: rgba(0, 0, 0, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    backdrop-filter: blur(8px);
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

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

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

.page-content {
    padding-bottom: 72px;
}

.home-search-panel {
    position: relative;
    z-index: 8;
    margin-top: -34px;
}

.search-panel,
.toolbar-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(28, 25, 23, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
}

.search-panel span,
.toolbar-card label {
    color: var(--amber-300);
    font-weight: 800;
    white-space: nowrap;
}

.search-panel input,
.toolbar-card input {
    min-height: 44px;
    padding: 0 14px;
    background: rgba(68, 64, 60, 0.65);
    border-radius: 14px;
}

.search-panel.wide {
    max-width: 760px;
    margin-top: 26px;
}

.content-section {
    margin-top: 64px;
}

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

.section-kicker {
    margin: 0 0 8px;
    color: var(--amber-400);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-head h2,
.detail-article h2,
.info-card h2,
.rank-side-card h2,
.year-block h3,
.category-showcase h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.55rem, 2.6vw, 2.45rem);
    letter-spacing: -0.02em;
}

.section-head p,
.page-hero p,
.category-showcase p,
.site-footer p {
    margin: 8px 0 0;
    color: var(--stone-400);
    line-height: 1.8;
}

.section-action {
    color: var(--white);
    background: var(--stone-800);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.movie-card {
    display: block;
    overflow: hidden;
    background: rgba(41, 37, 36, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 191, 36, 0.34);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.32);
}

.poster-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--stone-800), var(--stone-900));
}

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

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

.type-badge,
.year-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 4px 9px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.62);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    backdrop-filter: blur(7px);
}

.type-badge {
    top: 10px;
    left: 10px;
}

.year-badge {
    right: 10px;
    bottom: 10px;
}

.rank-badge {
    top: 10px;
    right: 10px;
    background: var(--amber-600);
}

.play-float {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) scale(0.86);
    color: var(--white);
    background: rgba(217, 119, 6, 0.88);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

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

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

.movie-card-body.compact {
    padding: 13px;
}

.movie-card h3 {
    margin: 0;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta,
.movie-line {
    margin: 8px 0 0;
    color: var(--stone-400);
    font-size: 0.86rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    -webkit-line-clamp: 1;
}

.movie-line {
    min-height: 44px;
    -webkit-line-clamp: 2;
}

.tag-row,
.detail-tags,
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tag-row span,
.detail-tags span,
.chip-link {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    color: var(--amber-100);
    background: rgba(120, 53, 15, 0.42);
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
}

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

.category-tile {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 22px;
    background: var(--stone-800);
    isolation: isolate;
}

.category-tile img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
    transition: transform 0.45s ease;
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(12, 10, 9, 0.88), rgba(12, 10, 9, 0.18));
}

.category-tile:hover img {
    transform: scale(1.08);
}

.category-tile span {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 900;
}

.category-tile p {
    margin: 8px 0 0;
    color: var(--stone-300);
    line-height: 1.6;
}

.tab-strip {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
    overflow-x: auto;
}

.tab-button {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 18px;
    color: var(--stone-300);
    background: var(--stone-800);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-weight: 800;
}

.tab-button.is-active {
    color: var(--white);
    background: var(--amber-600);
}

.tab-panel {
    display: none;
}

.tab-panel.is-active {
    display: block;
}

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

.year-block,
.rank-side-card,
.info-card,
.detail-article,
.player-card,
.toolbar-card,
.category-showcase {
    background: rgba(28, 25, 23, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.year-block,
.rank-side-card,
.info-card,
.detail-article {
    padding: 22px;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 34px 52px 1fr;
    gap: 12px;
    align-items: center;
    color: var(--stone-200);
}

.ranking-item img {
    width: 52px;
    height: 68px;
    object-fit: cover;
    border-radius: 10px;
    background: var(--stone-800);
}

.ranking-num {
    color: var(--amber-400);
    font-weight: 900;
}

.ranking-title {
    color: var(--white);
    font-weight: 800;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ranking-meta {
    grid-column: 3;
    color: var(--stone-400);
    font-size: 0.82rem;
    margin-top: -10px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 46px;
    background:
        radial-gradient(circle at 15% 20%, rgba(217, 119, 6, 0.24), transparent 24rem),
        linear-gradient(135deg, rgba(41, 37, 36, 0.96), rgba(12, 10, 9, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
}

.compact-hero h1,
.category-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.category-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.category-showcase {
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-showcase:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.28);
}

.category-covers {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2px;
    height: 180px;
    overflow: hidden;
}

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

.category-showcase div:last-child {
    padding: 22px;
}

.category-showcase span {
    margin-top: 14px;
    color: var(--white);
    background: var(--amber-600);
}

.chip-row {
    margin-top: 24px;
}

.chip-link.is-current,
.chip-link:hover {
    color: var(--white);
    background: var(--amber-600);
}

.toolbar-card {
    margin: 24px 0;
}

.ranking-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    margin-top: 28px;
}

.rank-sidebar {
    display: grid;
    gap: 18px;
    align-self: start;
    position: sticky;
    top: 96px;
}

.detail-page {
    background: var(--stone-950);
}

.detail-hero {
    position: relative;
    min-height: 660px;
    overflow: hidden;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    filter: blur(1px) saturate(1.08);
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 110px;
    padding-bottom: 58px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 28px;
    color: var(--stone-400);
}

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

.detail-head-grid {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 36px;
    align-items: end;
}

.detail-poster {
    overflow: hidden;
    background: var(--stone-800);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.42);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.detail-info h1 {
    font-size: clamp(2.4rem, 6vw, 5.2rem);
}

.detail-one-line {
    max-width: 820px;
    margin: 20px 0 0;
    color: var(--stone-200);
    font-size: 1.16rem;
    line-height: 1.8;
}

.detail-content {
    margin-top: -72px;
    position: relative;
    z-index: 4;
    padding-bottom: 72px;
}

.player-card {
    overflow: hidden;
}

.video-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--black);
}

.video-shell video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--black);
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--white);
    background: radial-gradient(circle at 50% 45%, rgba(217, 119, 6, 0.24), rgba(0, 0, 0, 0.64));
    border: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-circle {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--amber-600);
    border-radius: 50%;
    box-shadow: 0 25px 50px rgba(217, 119, 6, 0.35);
    font-size: 28px;
}

.source-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding: 16px;
    color: var(--stone-400);
    background: rgba(12, 10, 9, 0.86);
}

.source-pill {
    min-height: 38px;
    padding: 0 16px;
    color: var(--white);
    background: var(--stone-800);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-weight: 800;
}

.source-pill.is-active {
    background: var(--amber-600);
}

.detail-main-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    margin-top: 24px;
}

.detail-article p {
    margin: 18px 0 0;
    color: var(--stone-300);
    font-size: 1.02rem;
    line-height: 2;
}

.info-card dl {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 14px 18px;
    margin: 18px 0 0;
}

.info-card dt {
    color: var(--stone-400);
}

.info-card dd {
    margin: 0;
    color: var(--stone-200);
}

.related-section {
    margin-top: 36px;
}

.site-footer {
    padding: 42px 0;
    background: rgba(12, 10, 9, 0.88);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 28px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

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

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

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

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

    .rank-sidebar {
        position: static;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

    .nav-bar {
        min-height: 64px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .hero-carousel {
        height: 72vh;
        min-height: 560px;
    }

    .hero-content {
        bottom: 70px;
    }

    .hero-arrow {
        display: none;
    }

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

    .detail-head-grid {
        grid-template-columns: 170px 1fr;
        gap: 22px;
    }

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

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

    .with-top {
        padding-top: 86px;
    }

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

    .category-grid,
    .year-grid,
    .category-showcase-grid,
    .rank-sidebar {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 28px;
        border-radius: 22px;
    }

    .search-panel,
    .toolbar-card {
        align-items: stretch;
        flex-direction: column;
        border-radius: 18px;
    }

    .search-panel button {
        width: 100%;
        min-height: 44px;
    }

    .hero-content h1,
    .detail-info h1,
    .page-hero h1 {
        letter-spacing: -0.03em;
    }

    .hero-meta span {
        min-height: 28px;
        font-size: 0.82rem;
    }

    .detail-head-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

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

    .detail-hero-content {
        padding-top: 92px;
    }

    .detail-content {
        margin-top: -42px;
    }

    .info-card dl {
        grid-template-columns: 1fr;
        gap: 6px;
    }

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

    .movie-line {
        display: none;
    }
}
