:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-strong: rgba(15, 23, 42, 0.92);
    --line: rgba(14, 165, 233, 0.24);
    --line-strong: rgba(56, 189, 248, 0.58);
    --text: #e2e8f0;
    --muted: #94a3b8;
    --soft: #64748b;
    --sky: #38bdf8;
    --cyan: #22d3ee;
    --amber: #fbbf24;
    --radius: 18px;
    --shadow: 0 24px 70px rgba(2, 132, 199, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(14, 165, 233, 0.18), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.12), transparent 28%),
        var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.9));
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(2, 132, 199, 0.14);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    width: min(1180px, calc(100% - 32px));
    height: 66px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 800;
    white-space: nowrap;
    background: linear-gradient(90deg, var(--sky), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 14px;
    background: linear-gradient(135deg, #0ea5e9, #22d3ee);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.36);
}

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

.main-nav > a,
.nav-dropdown > a {
    color: var(--text);
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--sky);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 190px;
    padding: 8px;
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-panel a {
    display: block;
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--muted);
}

.dropdown-panel a:hover {
    background: rgba(14, 165, 233, 0.14);
    color: var(--sky);
}

.top-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-search input,
.search-page-form input {
    min-width: 230px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    color: var(--text);
    outline: none;
    padding: 0 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.top-search input:focus,
.search-page-form input:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.14);
}

.top-search button,
.search-page-form button {
    height: 40px;
    border: 0;
    border-radius: 999px;
    color: white;
    background: linear-gradient(90deg, #0ea5e9, #22d3ee);
    padding: 0 18px;
    cursor: pointer;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    color: var(--text);
    background: transparent;
    font-size: 25px;
    cursor: pointer;
}

.page-main {
    min-height: 100vh;
    padding-top: 66px;
}

.hero-carousel {
    position: relative;
    height: clamp(540px, 72vh, 760px);
    overflow: hidden;
    background: #020617;
}

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

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

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

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(15, 23, 42, 0.84) 42%, rgba(15, 23, 42, 0.2) 74%, rgba(2, 6, 23, 0.5) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.95), transparent 35%);
}

.hero-content {
    position: absolute;
    left: max(32px, calc((100vw - 1180px) / 2));
    top: 50%;
    width: min(650px, calc(100% - 64px));
    transform: translateY(-50%);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.eyebrow span,
.eyebrow strong,
.poster-year,
.tag-row span,
.hero-tags span,
.pill-link {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
}

.eyebrow span {
    padding: 6px 12px;
    color: white;
    background: rgba(14, 165, 233, 0.82);
    backdrop-filter: blur(10px);
}

.eyebrow strong {
    padding: 6px 10px;
    color: #111827;
    background: var(--amber);
}

.hero-content h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-content p {
    max-width: 620px;
    margin: 0 0 22px;
    color: #cbd5e1;
    font-size: 18px;
}

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

.hero-tags span,
.tag-row span {
    padding: 5px 11px;
    border: 1px solid var(--line);
    color: #bae6fd;
    background: rgba(15, 23, 42, 0.62);
}

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

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.primary-btn {
    color: white;
    background: linear-gradient(90deg, #0ea5e9, #22d3ee);
    box-shadow: 0 18px 38px rgba(14, 165, 233, 0.32);
}

.ghost-btn {
    color: #e0f2fe;
    border: 1px solid var(--line-strong);
    background: rgba(15, 23, 42, 0.52);
}

.primary-btn:hover,
.ghost-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 46px rgba(14, 165, 233, 0.34);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    background: rgba(2, 6, 23, 0.54);
    backdrop-filter: blur(10px);
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(14, 165, 233, 0.72);
    transform: translateY(-50%) scale(1.08);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 32px;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 18px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: #475569;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 38px;
    background: var(--sky);
}

.home-search-panel {
    width: min(1180px, calc(100% - 32px));
    margin: -46px auto 0;
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.68));
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.home-search-panel h2,
.content-section h2,
.rank-copy h2,
.page-hero h1,
.detail-copy h1,
.text-panel h2,
.movie-aside h2,
.footer-grid h2,
.rank-sidebar h2 {
    margin: 0;
}

.home-search-panel p,
.page-hero p,
.rank-copy p,
.footer-grid p {
    margin: 8px 0 0;
    color: var(--muted);
}

.home-search-panel form,
.search-page-form {
    display: flex;
    gap: 10px;
}

.home-search-panel input {
    flex: 1;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    background: rgba(2, 6, 23, 0.45);
    padding: 0 18px;
    outline: none;
}

.home-search-panel button {
    border: 0;
    border-radius: 999px;
    color: white;
    background: linear-gradient(90deg, #0ea5e9, #22d3ee);
    padding: 0 22px;
    cursor: pointer;
}

.section-stack {
    padding: 66px 0;
}

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

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

.section-kicker {
    margin: 0 0 6px;
    color: var(--sky);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.section-head h2 {
    font-size: clamp(25px, 3vw, 34px);
}

.section-head a {
    color: var(--sky);
    white-space: nowrap;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(14, 165, 233, 0.18);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 16px 44px rgba(2, 6, 23, 0.24);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: var(--line-strong);
    box-shadow: 0 24px 58px rgba(14, 165, 233, 0.2);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #0f172a;
}

.poster-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.1) 55%, transparent);
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

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

.movie-card:hover .poster-link img {
    transform: scale(1.09);
}

.poster-year {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
    padding: 3px 9px;
    color: #cbd5e1;
    font-size: 12px;
    background: rgba(2, 6, 23, 0.75);
}

.poster-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: rgba(14, 165, 233, 0.84);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: all 0.22s ease;
}

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

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

.movie-card h3 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.45;
}

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

.movie-card p {
    min-height: 42px;
    margin: 0 0 12px;
    color: var(--soft);
    font-size: 13px;
    line-height: 1.55;
}

.tag-row span {
    padding: 3px 8px;
    color: #7dd3fc;
    font-size: 12px;
    background: rgba(14, 165, 233, 0.13);
}

.rank-band {
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: 28px;
    padding: 30px;
    margin-bottom: 64px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.84), rgba(30, 41, 59, 0.48));
    box-shadow: var(--shadow);
}

.rank-copy {
    align-self: center;
}

.rank-copy .primary-btn {
    margin-top: 20px;
}

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

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

.rank-item {
    display: grid;
    grid-template-columns: 42px 44px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(14, 165, 233, 0.16);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.62);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.rank-item:hover {
    border-color: var(--line-strong);
    background: rgba(14, 165, 233, 0.12);
}

.rank-num {
    color: var(--amber);
    font-weight: 800;
    font-size: 18px;
}

.rank-item img {
    width: 44px;
    height: 62px;
    border-radius: 8px;
    object-fit: cover;
}

.rank-title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
}

.rank-meta {
    color: var(--soft);
    font-size: 13px;
}

.inner-page {
    padding-bottom: 70px;
}

.page-hero {
    padding: 72px 0 46px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.18), transparent 32%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.95));
}

.small-hero h1 {
    max-width: 880px;
    font-size: clamp(34px, 5vw, 56px);
    letter-spacing: -0.03em;
}

.small-hero p {
    max-width: 760px;
    font-size: 17px;
}

.breadcrumb {
    color: var(--muted);
    font-size: 14px;
}

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

.category-overview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding-top: 44px;
}

.category-box {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--panel);
    box-shadow: 0 18px 52px rgba(2, 6, 23, 0.2);
}

.category-title {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 26px;
    font-weight: 800;
}

.category-title:hover {
    color: var(--sky);
}

.category-box p {
    margin: 0 0 18px;
    color: var(--muted);
}

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

.compact-card {
    display: block;
    min-width: 0;
}

.compact-card img {
    aspect-ratio: 2 / 3;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.compact-card span {
    display: block;
    overflow: hidden;
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    padding-top: 44px;
}

.rank-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--panel);
}

.rank-sidebar h2 {
    margin-bottom: 16px;
}

.search-page-form {
    margin-top: 24px;
    max-width: 680px;
}

.search-page-form input {
    flex: 1;
}

.search-status {
    min-height: 26px;
}

.movie-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    padding-top: 36px;
}

.movie-primary,
.movie-aside {
    min-width: 0;
}

.player-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #000;
    box-shadow: var(--shadow);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: white;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.74), rgba(2, 6, 23, 0.28));
    cursor: pointer;
}

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

.big-play {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #22d3ee);
    box-shadow: 0 20px 52px rgba(14, 165, 233, 0.36);
    font-size: 30px;
}

.player-overlay strong {
    max-width: 70%;
    text-align: center;
    font-size: 20px;
}

.detail-copy {
    padding-top: 26px;
}

.detail-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
}

.detail-title-row h1 {
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.12;
}

.pill-link {
    flex: none;
    padding: 8px 13px;
    color: white;
    background: rgba(14, 165, 233, 0.8);
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 18px;
    color: var(--muted);
}

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

.highlight-line {
    padding: 16px 18px;
    margin-bottom: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: #bae6fd;
    background: rgba(14, 165, 233, 0.1);
    font-weight: 700;
}

.text-panel {
    padding: 22px;
    margin-bottom: 20px;
    border: 1px solid rgba(14, 165, 233, 0.17);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.62);
}

.text-panel h2 {
    margin-bottom: 12px;
    font-size: 22px;
}

.text-panel p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.9;
}

.accent-panel {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.72), rgba(30, 41, 59, 0.56));
}

.movie-aside {
    position: sticky;
    top: 90px;
    align-self: start;
}

.detail-cover {
    width: 100%;
    aspect-ratio: 2 / 3;
    border: 1px solid var(--line);
    border-radius: 22px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.aside-panel {
    padding: 20px;
    margin-top: 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--panel);
}

.related-line {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.related-line:last-child {
    border-bottom: 0;
}

.related-line img {
    width: 58px;
    height: 82px;
    border-radius: 9px;
    object-fit: cover;
}

.related-line strong,
.related-line em {
    display: block;
}

.related-line strong {
    margin-bottom: 5px;
    color: var(--text);
    font-style: normal;
}

.related-line em {
    color: var(--soft);
    font-size: 12px;
    font-style: normal;
}

.more-section {
    margin-top: 38px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), #020617);
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: 28px;
    padding: 38px 0;
}

.footer-brand {
    margin-bottom: 12px;
}

.footer-grid h2 {
    margin-bottom: 12px;
    font-size: 17px;
}

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

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

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 30px;
    border-top: 1px solid rgba(14, 165, 233, 0.15);
    color: var(--soft);
    font-size: 14px;
}

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

    .top-search {
        display: none;
    }

    .rank-layout,
    .movie-detail-layout {
        grid-template-columns: 1fr;
    }

    .movie-aside,
    .rank-sidebar {
        position: static;
    }

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

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

    .nav-toggle {
        display: block;
    }

    .main-nav {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        margin-left: 0;
        padding: 12px 0 4px;
    }

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

    .nav-dropdown:hover .dropdown-panel {
        opacity: 1;
        visibility: visible;
    }

    .dropdown-panel {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        margin-top: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
    }

    .page-main {
        padding-top: 66px;
    }

    .hero-carousel {
        height: 610px;
    }

    .hero-content {
        left: 22px;
        width: calc(100% - 44px);
    }

    .hero-arrow {
        display: none;
    }

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

    .home-search-panel form,
    .search-page-form {
        flex-direction: column;
    }

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

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

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

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

@media (max-width: 560px) {
    .brand {
        font-size: 18px;
    }

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

    .hero-carousel {
        height: 570px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-actions,
    .detail-title-row,
    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-search-panel,
    .rank-band,
    .category-box,
    .text-panel,
    .aside-panel {
        padding: 18px;
        border-radius: 20px;
    }

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

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

    .detail-meta {
        gap: 8px;
    }

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

    .rank-meta {
        display: none;
    }
}
