:root {
    color-scheme: dark;
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --black-soft: #0c0a09;
    --page-bg: #14110f;
    --card-bg: rgba(41, 37, 36, 0.82);
    --glass: rgba(255, 255, 255, 0.1);
    --border: rgba(255, 255, 255, 0.13);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--stone-100);
    background:
        radial-gradient(circle at top left, rgba(217, 119, 6, 0.28), transparent 30rem),
        linear-gradient(180deg, var(--stone-900), var(--black-soft) 42rem, var(--page-bg));
    min-height: 100vh;
}

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(28, 25, 23, 0.82);
    backdrop-filter: blur(18px);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
}

.site-logo-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-600), var(--amber-400));
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.28);
}

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

.site-nav a {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.76);
    transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: #fff;
    background: rgba(245, 158, 11, 0.18);
}

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

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: #fff;
}

.hero-carousel {
    padding: 24px 0 0;
}

.hero-stage {
    position: relative;
    width: min(100% - 32px, var(--container));
    min-height: 620px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--stone-900);
    box-shadow: var(--shadow);
}

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

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

.hero-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 48%, rgba(245, 158, 11, 0.22), transparent 28rem),
        linear-gradient(90deg, rgba(12, 10, 9, 0.96), rgba(12, 10, 9, 0.72) 42%, rgba(12, 10, 9, 0.18)),
        linear-gradient(0deg, rgba(12, 10, 9, 0.9), transparent 52%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 64px;
}

.hero-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: 999px;
    color: var(--amber-100);
    background: rgba(245, 158, 11, 0.14);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 0 0 12px;
    font-size: clamp(2.7rem, 7vw, 5.8rem);
    line-height: 0.95;
    color: #fff;
    letter-spacing: -0.08em;
}

.hero-content h2 {
    margin: 0 0 14px;
    font-size: clamp(1.7rem, 3vw, 3.2rem);
    line-height: 1.08;
    color: var(--amber-300);
}

.hero-content p {
    max-width: 640px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.1rem;
    line-height: 1.75;
}

.hero-tags,
.tag-list,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.tag-list span,
.detail-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--amber-100);
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
}

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

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

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

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--amber-700), var(--amber-500));
    box-shadow: 0 14px 32px rgba(245, 158, 11, 0.25);
}

.btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-outline {
    color: var(--amber-100);
    border: 1px solid rgba(251, 191, 36, 0.38);
    background: rgba(12, 10, 9, 0.26);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: var(--stone-900);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
    transform: translateY(-50%);
    font-size: 2rem;
    line-height: 1;
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

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

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

.section {
    padding: 72px 0;
}

.section-dark {
    background: linear-gradient(180deg, rgba(28, 25, 23, 0.72), rgba(12, 10, 9, 0.92));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.section-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.12;
}

.section-heading a {
    color: var(--amber-300);
    font-weight: 800;
}

.section-kicker {
    margin-bottom: 10px;
}

.search-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(68, 64, 60, 0.86), rgba(28, 25, 23, 0.92));
    box-shadow: var(--shadow);
}

.search-panel h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(41, 37, 36, 0.78);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(245, 158, 11, 0.42);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.3);
}

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

.movie-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.movie-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(12, 10, 9, 0.82));
}

.movie-play {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: rgba(217, 119, 6, 0.88);
    transform: translate(-50%, -50%) scale(0.82);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.movie-type {
    position: absolute;
    z-index: 3;
    left: 12px;
    top: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(12, 10, 9, 0.62);
    font-size: 0.78rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

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

.movie-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: var(--amber-300);
    font-size: 0.78rem;
    font-weight: 700;
}

.movie-card h3 {
    margin: 8px 0;
    min-height: 44px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.35;
}

.movie-card p {
    display: -webkit-box;
    min-height: 42px;
    margin: 0 0 12px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.category-card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.category-card-main {
    display: block;
    margin-bottom: 18px;
}

.category-card-main span {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 1.45rem;
    font-weight: 900;
}

.category-card-main p,
.category-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
}

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

.compact-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 3 / 4;
    background: var(--stone-800);
}

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

.compact-card span {
    position: absolute;
    inset: auto 0 0;
    padding: 20px 8px 8px;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
    font-size: 0.72rem;
    font-weight: 700;
}

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

.rank-grid-wide {
    margin-top: 28px;
}

.rank-item {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 16px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(41, 37, 36, 0.72);
}

.rank-cover {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 3 / 4;
    background: var(--stone-800);
}

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

.rank-cover span {
    position: absolute;
    left: 8px;
    top: 8px;
    min-width: 34px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: var(--amber-600);
    font-size: 0.82rem;
    font-weight: 900;
}

.rank-item h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1rem;
}

.rank-item p {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    line-height: 1.55;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.22), transparent 28rem),
        linear-gradient(135deg, rgba(41, 37, 36, 0.92), rgba(12, 10, 9, 0.96));
}

.page-hero-compact {
    padding: 70px 0 52px;
}

.page-hero h1,
.detail-info h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1.05;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.08rem;
    line-height: 1.75;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

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

.category-list {
    display: grid;
    gap: 48px;
}

.category-overview-block {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
}

.filter-area {
    display: grid;
    grid-template-columns: minmax(240px, 1.4fr) 2fr;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(41, 37, 36, 0.72);
}

.filter-search input,
.filter-selects select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    color: #fff;
    background: rgba(12, 10, 9, 0.55);
    outline: none;
}

.filter-search input {
    padding: 0 16px;
}

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

.filter-selects select {
    padding: 0 12px;
}

.empty-state {
    display: none;
    margin: 40px 0 0;
    padding: 30px;
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
}

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

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

.detail-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    filter: blur(8px);
    transform: scale(1.04);
}

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

.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 10, 9, 0.98), rgba(12, 10, 9, 0.76));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 64px 0;
}

.detail-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    aspect-ratio: 3 / 4;
    background: var(--stone-800);
}

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

.detail-info {
    max-width: 760px;
}

.detail-one-line {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.16rem;
    line-height: 1.85;
}

.detail-tags {
    margin-bottom: 28px;
}

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

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.detail-main {
    display: grid;
    gap: 24px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: var(--radius-lg);
    background: #000;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.movie-video {
    width: 100%;
    height: 100%;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    place-items: center;
    border: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.player-poster {
    position: absolute;
    inset: 0;
}

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

.player-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.82));
}

.player-start {
    position: relative;
    z-index: 2;
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-700), var(--amber-400));
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.38);
    font-size: 2.2rem;
    padding-left: 6px;
}

.player-error {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 7;
    margin: 0;
    color: var(--amber-100);
    text-align: center;
}

.prose-card,
.side-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(41, 37, 36, 0.78);
}

.prose-card h2,
.side-card h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1.45rem;
}

.prose-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.95;
}

.detail-side {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
}

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

.side-card dl div {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
}

.side-card dt {
    color: var(--amber-300);
    font-weight: 800;
}

.side-card dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.side-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    margin-top: 10px;
    padding: 0 14px;
    border-radius: 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.side-link:hover {
    background: rgba(245, 158, 11, 0.18);
}

.related-section {
    padding-top: 0;
}

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

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 38px 0;
}

.footer-grid p {
    max-width: 520px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.75;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
    padding: 18px;
    color: rgba(255, 255, 255, 0.44);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

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

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

    .detail-side {
        position: static;
    }
}

@media (max-width: 860px) {
    .site-nav {
        position: absolute;
        top: 72px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border: 1px solid var(--border);
        border-radius: 20px;
        background: rgba(28, 25, 23, 0.96);
        box-shadow: var(--shadow);
    }

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

    .nav-toggle {
        display: block;
    }

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

    .hero-content {
        padding: 48px 24px 86px;
    }

    .hero-control {
        display: none;
    }

    .hero-dots {
        left: 24px;
        bottom: 28px;
    }

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

    .filter-area,
    .filter-selects,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        width: min(68vw, 260px);
    }
}

@media (max-width: 640px) {
    .container,
    .site-header-inner,
    .hero-stage {
        width: min(100% - 22px, var(--container));
    }

    .section {
        padding: 48px 0;
    }

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

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

    .movie-card h3 {
        min-height: 40px;
        font-size: 0.94rem;
    }

    .rank-item {
        grid-template-columns: 74px 1fr;
    }

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

    .page-hero-compact,
    .detail-hero-inner {
        padding: 46px 0;
    }

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

    .player-start {
        width: 68px;
        height: 68px;
        font-size: 1.8rem;
    }

    .side-card dl div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
