:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-strong: rgba(30, 41, 59, 0.86);
    --border: rgba(255, 255, 255, 0.10);
    --text: #ffffff;
    --muted: #cbd5e1;
    --subtle: #94a3b8;
    --amber: #f59e0b;
    --amber-light: #fcd34d;
    --orange: #f97316;
    --blue: #60a5fa;
    --green: #4ade80;
    --purple: #c084fc;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 0%, rgba(245, 158, 11, 0.16), transparent 32rem),
        radial-gradient(circle at 82% 10%, rgba(37, 99, 235, 0.20), transparent 36rem),
        linear-gradient(180deg, #020617 0%, #0f172a 45%, #020617 100%);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 70%);
    z-index: 0;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.92), rgba(15, 23, 42, 0.96));
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

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

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    color: #111827;
    background: linear-gradient(135deg, var(--amber-light), var(--orange));
    box-shadow: 0 0 28px rgba(245, 158, 11, 0.48);
}

.brand-text,
.footer-brand {
    font-size: 1.18rem;
    background: linear-gradient(90deg, #fde68a, var(--amber), #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 10px 15px;
    border-radius: 12px;
    color: #d1d5db;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.11);
}

.nav-link.active {
    background: var(--amber);
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.30);
}

.nav-toggle {
    display: none;
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px 12px;
    cursor: pointer;
}

.shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: center;
    gap: 48px;
    padding: 80px max(28px, calc((100vw - 1180px) / 2)) 86px;
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) saturate(1.15);
    transform: scale(1.08);
    opacity: 0.45;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 48%, rgba(245, 158, 11, 0.25), transparent 26rem),
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(15, 23, 42, 0.72) 52%, rgba(2, 6, 23, 0.94) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.20), #020617 96%);
}

.hero-content {
    max-width: 780px;
}

.eyebrow {
    color: var(--amber-light);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.65rem, 7vw, 5.2rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
    background: linear-gradient(90deg, #fef3c7, #fbbf24, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero h2 {
    margin: 0 0 14px;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    color: #fff;
}

.hero p {
    max-width: 700px;
    margin: 0 0 22px;
    color: #d1d5db;
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.8;
}

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

.hero-tags span,
.tag-row span,
.detail-meta-list span,
.detail-meta-list a {
    color: #fde68a;
    border: 1px solid rgba(245, 158, 11, 0.32);
    background: rgba(245, 158, 11, 0.12);
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 0.82rem;
}

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

.primary-button,
.ghost-button,
.text-button,
.filter-panel button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
    color: #fff;
    padding: 14px 26px;
    background: linear-gradient(90deg, var(--amber), var(--orange));
    box-shadow: 0 16px 38px rgba(245, 158, 11, 0.36);
}

.ghost-button {
    color: #fff;
    padding: 13px 22px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.hero-poster {
    width: min(370px, 100%);
    justify-self: end;
    aspect-ratio: 2 / 3;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow), 0 0 60px rgba(245, 158, 11, 0.24);
    transform: perspective(900px) rotateY(-7deg);
}

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

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

.hero-dot {
    width: 34px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
}

.hero-dot.active {
    background: var(--amber);
    box-shadow: 0 0 22px rgba(245, 158, 11, 0.62);
}

.section {
    padding: 72px 0;
}

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

.section-title h2,
.page-hero h1,
.detail-content h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.section-title p,
.page-hero p,
.intro-block p {
    margin: 10px 0 0;
    color: var(--subtle);
    line-height: 1.8;
}

.section-link,
.text-button,
.ranking-head a {
    color: var(--amber-light);
    font-weight: 700;
}

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

.category-card {
    min-height: 190px;
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.20);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card:hover,
.movie-card:hover,
.overview-card:hover,
.top-rank-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.46);
}

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

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

.category-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.20), rgba(2, 6, 23, 0.96));
}

.category-card strong,
.category-card p {
    position: relative;
    z-index: 1;
}

.category-card strong {
    display: block;
    margin-top: 56px;
    font-size: 1.3rem;
}

.category-card p {
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: 0;
}

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

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

.page-grid {
    padding-bottom: 68px;
}

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.20);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
    background: var(--panel-strong);
}

.poster-link,
.poster-frame {
    display: block;
}

.poster-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
}

.compact .poster-frame {
    aspect-ratio: 16 / 10;
}

.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-glow {
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.88), transparent);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    min-width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #111827;
    font-weight: 900;
    border-radius: 999px;
    background: linear-gradient(135deg, #fde68a, var(--amber));
    box-shadow: 0 10px 26px rgba(245, 158, 11, 0.36);
}

.card-body {
    padding: 16px;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--subtle);
    font-size: 0.84rem;
    margin-bottom: 9px;
}

.card-meta a {
    color: var(--amber-light);
}

.movie-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    line-height: 1.45;
}

.movie-card h3 a:hover {
    color: var(--amber-light);
}

.movie-card p {
    color: var(--subtle);
    margin: 0 0 13px;
    line-height: 1.65;
    font-size: 0.93rem;
}

.tag-row span {
    color: #bfdbfe;
    background: rgba(96, 165, 250, 0.10);
    border-color: rgba(96, 165, 250, 0.26);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: start;
}

.ranking-panel,
.side-card,
.filter-panel,
.overview-card,
.detail-content,
.player-shell,
.detail-poster,
.top-rank-card {
    border: 1px solid var(--border);
    background: var(--panel);
    border-radius: 24px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.ranking-panel {
    padding: 22px;
    position: sticky;
    top: 88px;
}

.ranking-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.ranking-head h2 {
    margin: 0;
    font-size: 1.7rem;
}

.ranking-list {
    display: grid;
    gap: 10px;
}

.ranking-row {
    display: grid;
    grid-template-columns: 34px 58px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.25s ease;
}

.ranking-row:hover {
    background: rgba(245, 158, 11, 0.12);
}

.ranking-num {
    color: var(--amber-light);
    font-weight: 900;
    text-align: center;
}

.ranking-row img {
    width: 58px;
    height: 76px;
    object-fit: cover;
    border-radius: 12px;
}

.ranking-info {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.ranking-info strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ranking-info em {
    color: var(--subtle);
    font-style: normal;
    font-size: 0.85rem;
}

.latest-band {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.65), rgba(30, 64, 175, 0.34));
    border-block: 1px solid rgba(255, 255, 255, 0.07);
}

.intro-block {
    text-align: center;
    max-width: 900px;
}

.intro-block h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.intro-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 26px;
}

.intro-metrics span {
    color: var(--amber-light);
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.10);
    border: 1px solid rgba(245, 158, 11, 0.24);
}

.page-main,
.detail-main {
    padding-top: 34px;
}

.crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--subtle);
    margin: 0 0 22px;
}

.crumb a {
    color: #e2e8f0;
}

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

.page-hero {
    padding: 54px;
    margin-bottom: 30px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background:
        radial-gradient(circle at 82% 16%, rgba(245, 158, 11, 0.24), transparent 22rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.84), rgba(30, 64, 175, 0.34));
    box-shadow: var(--shadow);
}

.small-hero {
    margin-bottom: 36px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1.6fr) repeat(3, minmax(150px, 1fr)) auto;
    gap: 14px;
    align-items: end;
    padding: 18px;
    margin-bottom: 28px;
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: var(--subtle);
    font-size: 0.88rem;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    color: #fff;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(2, 6, 23, 0.55);
    border-radius: 14px;
    padding: 12px 13px;
    outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(245, 158, 11, 0.78);
}

.filter-panel button {
    min-height: 46px;
    color: #fff;
    background: linear-gradient(90deg, var(--amber), var(--orange));
    padding-inline: 18px;
}

.empty-message {
    display: none;
    text-align: center;
    color: var(--subtle);
    padding: 38px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--panel);
    margin-bottom: 30px;
}

.empty-message.show {
    display: block;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding-bottom: 70px;
}

.overview-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
    padding: 16px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.overview-cover {
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 4 / 3;
    background: var(--bg-soft);
}

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

.overview-card h2 {
    margin: 4px 0 8px;
    font-size: 1.45rem;
}

.overview-card p {
    color: var(--subtle);
    line-height: 1.75;
}

.top-rank-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 30px;
}

.top-rank-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.top-rank-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.top-rank-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.14));
}

.top-rank-card span {
    width: max-content;
    color: #111827;
    font-weight: 900;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--amber-light);
    margin-bottom: 12px;
}

.top-rank-card strong {
    font-size: 1.45rem;
    margin-bottom: 6px;
}

.top-rank-card em {
    color: var(--muted);
    font-style: normal;
}

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

.player-column {
    min-width: 0;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
    margin-bottom: 22px;
}

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    cursor: pointer;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #fff;
    border: 0;
    cursor: pointer;
    background:
        radial-gradient(circle at center, rgba(245, 158, 11, 0.20), transparent 18rem),
        linear-gradient(180deg, rgba(2, 6, 23, 0.38), rgba(2, 6, 23, 0.82));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-button {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    color: #111827;
    font-size: 2.1rem;
    background: linear-gradient(135deg, #fde68a, var(--amber), var(--orange));
    box-shadow: 0 0 48px rgba(245, 158, 11, 0.55);
    padding-left: 5px;
}

.player-overlay strong {
    font-size: clamp(1.15rem, 3vw, 2rem);
    text-align: center;
    padding: 0 24px;
}

.detail-content {
    padding: 30px;
}

.detail-content h1 {
    margin-bottom: 14px;
}

.detail-lead {
    color: #d1d5db;
    line-height: 1.85;
    font-size: 1.08rem;
}

.detail-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 20px 0;
}

.detail-content h2 {
    margin: 30px 0 12px;
    color: var(--amber-light);
    font-size: 1.45rem;
}

.detail-content p {
    color: #cbd5e1;
    line-height: 1.9;
}

.detail-tags {
    margin: 18px 0;
}

.detail-side {
    position: sticky;
    top: 88px;
    display: grid;
    gap: 20px;
}

.detail-poster {
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: var(--bg-soft);
}

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

.side-card {
    padding: 22px;
}

.side-card h2 {
    margin: 0 0 16px;
}

.side-card dl {
    margin: 0;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 11px 14px;
}

.side-card dt {
    color: var(--subtle);
}

.side-card dd {
    margin: 0;
    color: #fff;
}

.related-section {
    padding-top: 50px;
}

.site-footer {
    position: relative;
    z-index: 1;
    margin-top: 50px;
    padding: 52px 0 26px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.40), rgba(0, 0, 0, 0.92));
    border-top: 1px solid var(--border);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
}

.footer-inner p {
    color: var(--subtle);
    line-height: 1.8;
    max-width: 540px;
}

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

.footer-links a {
    color: #e2e8f0;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 1080px) {
    .hero-slide,
    .detail-layout,
    .split-section {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        justify-self: start;
        width: min(300px, 72vw);
        transform: none;
    }

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

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

    .ranking-panel,
    .detail-side {
        position: static;
    }

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

@media (max-width: 760px) {
    .nav-wrap {
        height: auto;
        min-height: 64px;
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 8px;
    }

    .main-nav.open {
        display: flex;
    }

    .hero {
        min-height: 780px;
    }

    .hero-slide {
        padding: 52px 18px 86px;
        gap: 28px;
    }

    .hero h1 {
        font-size: 2.65rem;
    }

    .section,
    .page-main,
    .detail-main {
        padding-top: 34px;
    }

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

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

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

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

    .overview-cover {
        aspect-ratio: 16 / 9;
    }

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

    .detail-content {
        padding: 22px;
    }

    .play-button {
        width: 72px;
        height: 72px;
    }
}
