* {
    box-sizing: border-box;
}

:root {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --cyan: #0891b2;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --white: #ffffff;
    --amber: #f59e0b;
    --red: #ef4444;
    --radius-xl: 1.25rem;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-strong: 0 25px 70px rgba(15, 23, 42, 0.32);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--slate-800);
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 48%, #f8fafc 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--white);
    background: linear-gradient(90deg, var(--blue), var(--blue-dark), var(--cyan));
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
    padding: 14px 0;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-copy strong {
    font-size: 1.35rem;
}

.brand-copy small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
    font-weight: 500;
}

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

.site-nav a {
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--blue-dark);
    background: var(--white);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 9px;
    background: rgba(255, 255, 255, 0.14);
    border: 0;
    border-radius: 12px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    border-radius: 99px;
}

.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(180deg, var(--slate-950), var(--slate-900) 55%, var(--slate-800));
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background:
        radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.55), transparent 32%),
        radial-gradient(circle at 82% 10%, rgba(8, 145, 178, 0.48), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%);
    background-size: auto, auto, 26px 26px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 70px 0 58px;
}

.hero-stage {
    position: relative;
    min-height: 460px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1.08fr);
    gap: 44px;
    align-items: center;
    opacity: 0;
    transform: translateX(28px);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-media {
    position: relative;
    height: 430px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow-strong);
}

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

.hero-media span {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.08) 58%, transparent);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hero-labels,
.detail-tags,
.movie-chip-row,
.hero-facts,
.tag-cloud {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-labels span,
.detail-tags span,
.tag-cloud span {
    display: inline-flex;
    padding: 8px 14px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.hero-labels span:first-child {
    background: var(--blue);
    border-color: var(--blue);
}

.hero h1,
.hero h2 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4.85rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.hero p {
    max-width: 680px;
    margin: 0;
    color: #cbd5e1;
    font-size: 1.12rem;
}

.hero-facts span {
    color: #cbd5e1;
}

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

.primary-btn,
.ghost-btn,
.ghost-dark-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    font-weight: 750;
    border-radius: 14px;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.primary-btn {
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.3);
}

.primary-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.ghost-btn {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.ghost-dark-btn {
    color: var(--blue-dark);
    background: #eff6ff;
}

.ghost-dark-btn:hover {
    background: #dbeafe;
    transform: translateY(-2px);
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}

.hero-dots button {
    width: 34px;
    height: 5px;
    padding: 0;
    background: rgba(255, 255, 255, 0.32);
    border: 0;
    border-radius: 999px;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.active {
    width: 54px;
    background: var(--blue);
}

.hero-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    max-width: 760px;
    margin-top: 28px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    backdrop-filter: blur(10px);
}

.hero-search input,
.filter-toolbar input,
.filter-toolbar select {
    width: 100%;
    color: var(--slate-800);
    background: var(--white);
    border: 1px solid #dbe3ef;
    outline: none;
    border-radius: 13px;
}

.hero-search input {
    padding: 14px 16px;
    border: 0;
}

.hero-search button {
    padding: 0 24px;
    color: var(--white);
    background: var(--blue);
    border: 0;
    border-radius: 13px;
    font-weight: 800;
}

.section {
    padding: 76px 0;
}

.soft-section {
    background: linear-gradient(135deg, #eff6ff, #f8fafc 54%, #ecfeff);
}

.rank-section {
    color: var(--white);
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading span,
.page-hero span,
.player-heading span {
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.rank-section .section-heading span,
.rank-section .section-heading h2,
.rank-section .section-heading p {
    color: var(--white);
}

.section-heading h2,
.page-hero h1,
.player-heading h2 {
    margin: 0;
    color: var(--slate-800);
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p {
    margin: 0;
    color: var(--slate-600);
}

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

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

.movie-card {
    display: block;
    overflow: hidden;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.poster-frame {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--slate-200);
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.05) 56%, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.movie-card:hover .poster-shade {
    opacity: 1;
}

.play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.score-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 9px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.72);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

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

.movie-chip-row span {
    padding: 4px 8px;
    color: var(--slate-600);
    background: var(--slate-100);
    border-radius: 8px;
    font-size: 0.76rem;
}

.movie-card strong {
    color: var(--slate-800);
    line-height: 1.32;
    transition: color 0.25s ease;
}

.movie-card:hover strong {
    color: var(--blue);
}

.movie-desc,
.movie-meta {
    display: -webkit-box;
    overflow: hidden;
    color: var(--slate-600);
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    color: var(--slate-500);
    font-size: 0.82rem;
    -webkit-line-clamp: 1;
}

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

.category-card,
.overview-card {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 190px;
    color: var(--white);
    background: var(--slate-900);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.52;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.category-card:hover img {
    opacity: 0.7;
    transform: scale(1.08);
}

.category-card span {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 8px;
    min-height: 190px;
    padding: 24px;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.08));
}

.category-card strong {
    font-size: 1.35rem;
}

.category-card em,
.rank-card em {
    display: -webkit-box;
    overflow: hidden;
    font-style: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

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

.rank-card {
    position: relative;
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 16px;
    align-items: center;
    min-height: 128px;
    overflow: hidden;
    color: var(--slate-800);
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-section .rank-card {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rank-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.rank-card img {
    width: 86px;
    height: 128px;
    object-fit: cover;
}

.rank-card span:not(.rank-number) {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    padding-right: 14px;
}

.rank-card strong {
    font-size: 1.02rem;
    line-height: 1.35;
}

.rank-card small {
    color: var(--slate-500);
}

.rank-section .rank-card small,
.rank-section .rank-card em {
    color: #cbd5e1;
}

.rank-number {
    position: absolute;
    top: 9px;
    left: 9px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    color: var(--white);
    background: var(--red);
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 850;
}

.page-hero {
    color: var(--white);
    background: linear-gradient(135deg, var(--slate-950), var(--slate-900) 46%, var(--blue-dark));
}

.page-hero .container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 82px 0;
}

.page-hero h1,
.page-hero p {
    color: var(--white);
}

.page-hero p {
    max-width: 760px;
    color: #cbd5e1;
    font-size: 1.1rem;
}

.overview-card {
    display: flex;
    min-height: 0;
    color: var(--slate-800);
    background: var(--white);
}

.overview-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 45%;
    min-height: 230px;
}

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

.overview-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    padding: 24px;
}

.overview-body span {
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.overview-body h2,
.overview-body p {
    margin: 0;
}

.overview-body p {
    color: var(--slate-600);
}

.filter-toolbar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(150px, 190px) minmax(150px, 190px);
    gap: 12px;
    margin-bottom: 26px;
    padding: 14px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.search-toolbar {
    grid-template-columns: minmax(220px, 1fr) minmax(150px, 200px) minmax(150px, 200px);
}

.filter-toolbar input,
.filter-toolbar select {
    padding: 13px 14px;
}

.empty-state {
    margin: 32px 0 0;
    padding: 32px;
    color: var(--slate-600);
    text-align: center;
    background: var(--white);
    border-radius: 20px;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--slate-950);
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    filter: blur(16px);
    transform: scale(1.08);
}

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

.detail-hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.72));
}

.detail-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 42px;
    align-items: center;
    padding: 72px 0;
}

.detail-cover {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--shadow-strong);
}

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

.detail-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.breadcrumb a::after {
    margin-left: 8px;
    content: "/";
    color: #64748b;
}

.detail-copy h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4.3rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.detail-copy p {
    max-width: 820px;
    margin: 0;
    color: #dbeafe;
    font-size: 1.08rem;
}

.player-section {
    background: #07111f;
}

.player-heading {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.player-heading h2 {
    color: var(--white);
}

.player-shell {
    position: relative;
    overflow: hidden;
    background: #000000;
    border-radius: 22px;
    box-shadow: var(--shadow-strong);
}

.player-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--blue);
    background: rgba(0, 0, 0, 0.32);
    border: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    padding-left: 6px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    font-size: 2rem;
}

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

.player-message {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 420px;
    padding: 18px 20px;
    color: var(--white);
    text-align: center;
    background: rgba(15, 23, 42, 0.88);
    border-radius: 16px;
    transform: translate(-50%, -50%);
}

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

.detail-article,
.detail-side {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
}

.detail-article {
    padding: 34px;
}

.detail-article h2,
.detail-side h2 {
    margin: 0 0 14px;
    color: var(--slate-800);
    font-size: 1.45rem;
}

.detail-article p {
    margin: 0 0 28px;
    color: var(--slate-600);
    font-size: 1.03rem;
}

.detail-article p:last-child {
    margin-bottom: 0;
}

.detail-side {
    align-self: start;
    padding: 28px;
}

.detail-side dl {
    display: grid;
    gap: 14px;
    margin: 0;
}

.detail-side div {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--slate-200);
}

.detail-side div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.detail-side dt {
    color: var(--slate-500);
    font-size: 0.82rem;
}

.detail-side dd {
    margin: 4px 0 0;
    color: var(--slate-800);
    font-weight: 750;
}

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

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(180deg, var(--slate-950), #000000);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 34px;
    padding: 54px 0 34px;
}

.footer-brand {
    color: var(--white);
    margin-bottom: 14px;
}

.site-footer p {
    margin: 0;
    color: #94a3b8;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #60a5fa;
    font-size: 1rem;
}

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

.footer-links a {
    color: #94a3b8;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 0 32px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

[hidden] {
    display: none !important;
}

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

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

@media (max-width: 860px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 82px;
        left: 16px;
        right: 16px;
        display: none;
        padding: 14px;
        background: rgba(15, 23, 42, 0.96);
        border-radius: 18px;
        box-shadow: var(--shadow-strong);
    }

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

    .site-nav a:hover,
    .site-nav a.active {
        color: var(--white);
        background: rgba(255, 255, 255, 0.14);
    }

    .hero-slide,
    .detail-hero-inner,
    .detail-content-grid,
    .footer-grid,
    .filter-toolbar,
    .search-toolbar {
        grid-template-columns: 1fr;
    }

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

    .hero-slide {
        align-content: start;
    }

    .hero-media {
        height: 390px;
    }

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

    .detail-cover {
        max-width: 330px;
    }

    .rank-list {
        grid-template-columns: 1fr;
    }
}

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

    .header-inner {
        min-height: 72px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .brand-copy strong {
        font-size: 1rem;
    }

    .brand-copy small {
        font-size: 0.72rem;
    }

    .site-nav {
        top: 72px;
    }

    .hero-inner {
        padding: 44px 0;
    }

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

    .hero-media {
        height: 330px;
        border-radius: 22px;
    }

    .hero h1,
    .hero h2,
    .detail-copy h1 {
        font-size: 2.25rem;
    }

    .section {
        padding: 54px 0;
    }

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

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

    .overview-card {
        flex-direction: column;
    }

    .overview-thumbs {
        width: 100%;
        min-height: 180px;
    }

    .rank-card {
        grid-template-columns: 76px 1fr;
    }

    .rank-card img {
        width: 76px;
        height: 112px;
    }

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

    .player-overlay span {
        width: 68px;
        height: 68px;
        font-size: 1.5rem;
    }

    .detail-article,
    .detail-side {
        padding: 22px;
        border-radius: 20px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
