:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: #0f172a;
    --panel-soft: #111827;
    --line: #334155;
    --muted: #94a3b8;
    --text: #f8fafc;
    --amber: #f59e0b;
    --amber-soft: #fde68a;
    --green: #22c55e;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --radius: 22px;
}

* {
    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;
    background: radial-gradient(circle at top left, rgba(245, 158, 11, 0.13), transparent 30rem), var(--bg);
    color: var(--text);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(51, 65, 85, 0.94), rgba(15, 23, 42, 0.96));
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    max-width: 1280px;
    margin: 0 auto;
    height: 72px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    color: #0f172a;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(245, 158, 11, 0.28);
}

.brand-text {
    display: grid;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 20px;
    letter-spacing: 0.04em;
}

.brand-text em {
    margin-top: 3px;
    color: #cbd5e1;
    font-size: 12px;
    font-style: normal;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    color: #e2e8f0;
}

.main-nav > a {
    padding: 24px 0;
    transition: color 0.2s ease;
}

.main-nav > a:hover,
.main-nav .is-active {
    color: var(--amber-soft);
}

.nav-cats {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(760px, calc(100vw - 32px));
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.22s ease;
}

.main-nav:hover .nav-cats {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-cats a {
    padding: 12px 14px;
    border-radius: 12px;
    color: #cbd5e1;
    background: rgba(30, 41, 59, 0.8);
}

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

.nav-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.66);
    border-radius: 999px;
    overflow: hidden;
}

.nav-search input {
    width: 210px;
    padding: 11px 12px 11px 18px;
    color: #fff;
    border: 0;
    outline: 0;
    background: transparent;
}

.nav-search button,
.wide-search button {
    border: 0;
    color: #0f172a;
    font-weight: 800;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    padding: 12px 18px;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.62);
}

.mobile-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
}

.mobile-menu {
    display: none;
    padding: 0 24px 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: #e2e8f0;
}

.mobile-menu.is-open {
    display: block;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 560px;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) brightness(0.62);
    transform: scale(1.03);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.25)), linear-gradient(0deg, rgba(2, 6, 23, 0.96), transparent 42%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 70px 24px 92px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: center;
    gap: 52px;
}

.eyebrow,
.section-title p,
.inner-hero p,
.category-overview p,
.spotlight-box p {
    margin: 0 0 12px;
    color: var(--amber-soft);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 13px;
}

.hero-copy h1 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero-line {
    max-width: 760px;
    margin: 24px 0 0;
    color: #e2e8f0;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.78;
}

.hero-tags,
.detail-tags,
.mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.hero-tags {
    margin-top: 24px;
}

.hero-tags span,
.detail-tags a,
.mini-tags span {
    border: 1px solid rgba(251, 191, 36, 0.32);
    background: rgba(245, 158, 11, 0.12);
    color: #fde68a;
    border-radius: 999px;
}

.hero-tags span,
.detail-tags a {
    padding: 8px 13px;
}

.mini-tags span {
    padding: 5px 9px;
    font-size: 12px;
}

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

.btn-primary,
.btn-ghost,
.rank-action,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    color: #0f172a;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    box-shadow: 0 18px 36px rgba(245, 158, 11, 0.25);
}

.btn-primary:hover,
.btn-ghost:hover,
.rank-action:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.btn-ghost {
    color: #fff;
    border: 1px solid rgba(226, 232, 240, 0.24);
    background: rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(10px);
}

.hero-poster {
    display: block;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(226, 232, 240, 0.22);
    transform: rotate(2deg);
}

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

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 32px;
    z-index: 5;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-nav,
.hero-dot {
    border: 0;
    color: #fff;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.hero-nav {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
}

.hero-dot.is-active {
    width: 30px;
    border-radius: 999px;
    background: var(--amber);
}

.search-band {
    max-width: 1280px;
    margin: -34px auto 0;
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
    gap: 24px;
    align-items: center;
    padding: 26px;
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: var(--shadow);
}

.search-band h2,
.spotlight-box h2,
.inner-hero h1,
.section-title h2,
.detail-copy h1,
.detail-article h2,
.player-section h2 {
    margin: 0;
    letter-spacing: -0.04em;
}

.search-band p {
    color: var(--muted);
    margin: 8px 0 0;
    line-height: 1.75;
}

.wide-search {
    display: flex;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(2, 6, 23, 0.7);
}

.wide-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #fff;
    padding: 15px 20px;
    background: transparent;
}

.section-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 52px 24px 0;
}

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

.section-title h2 {
    font-size: clamp(28px, 4vw, 42px);
}

.section-title > a,
.text-link {
    color: var(--amber-soft);
    font-weight: 800;
}

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

.category-card,
.category-overview,
.spotlight-box,
.filter-panel,
.detail-article,
.player-section {
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.88), rgba(15, 23, 42, 0.88));
    border-radius: var(--radius);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.category-card {
    min-height: 148px;
    padding: 22px;
    overflow: hidden;
    position: relative;
}

.category-card:after {
    content: "";
    position: absolute;
    inset: auto -40px -60px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.18);
}

.category-card span {
    display: block;
    font-size: 22px;
    font-weight: 900;
}

.category-card p {
    position: relative;
    z-index: 1;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

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

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

.movie-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(251, 191, 36, 0.38);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.32);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.7), rgba(15, 23, 42, 0.8));
}

.poster-link img {
    width: 100%;
    aspect-ratio: 2 / 2.86;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

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

.poster-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.65), transparent 55%);
}

.rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #0f172a;
    background: #fbbf24;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

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

.movie-card-title {
    display: block;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
    color: #fff;
}

.movie-card-title:hover,
.rank-title:hover {
    color: var(--amber-soft);
}

.movie-meta,
.movie-desc {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.movie-desc {
    min-height: 42px;
}

.mini-tags {
    margin-top: 12px;
}

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

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

.rank-list.large {
    gap: 14px;
}

.rank-row {
    display: grid;
    grid-template-columns: 62px 54px minmax(0, 1fr) auto;
    gap: 15px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.76);
}

.rank-cover {
    border-radius: 12px;
    overflow: hidden;
}

.rank-cover img {
    width: 62px;
    height: 82px;
    object-fit: cover;
}

.rank-index {
    color: var(--amber-soft);
    font-size: 28px;
    font-weight: 900;
    text-align: center;
}

.rank-title {
    display: inline-block;
    font-weight: 900;
    color: #fff;
}

.rank-content p,
.rank-content span {
    display: block;
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.rank-action {
    color: #0f172a;
    background: #fbbf24;
}

.spotlight-box {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.26), transparent 16rem), linear-gradient(180deg, rgba(30, 41, 59, 0.88), rgba(15, 23, 42, 0.98));
}

.spotlight-box span {
    display: block;
    margin: 18px 0 26px;
    color: #cbd5e1;
    line-height: 1.8;
}

.inner-hero {
    position: relative;
    overflow: hidden;
    max-width: 1280px;
    margin: 28px auto 0;
    padding: 60px 24px;
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.24), transparent 22rem), linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(2, 6, 23, 0.96));
    box-shadow: var(--shadow);
}

.inner-hero h1 {
    font-size: clamp(38px, 6vw, 64px);
}

.inner-hero span {
    display: block;
    max-width: 850px;
    margin-top: 18px;
    color: #cbd5e1;
    line-height: 1.85;
    font-size: 18px;
}

.crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: #cbd5e1;
    font-size: 14px;
}

.crumb a {
    color: var(--amber-soft);
}

.crumb em {
    color: #64748b;
    font-style: normal;
}

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

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

.category-cover-set {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.category-cover-set img {
    width: 100%;
    aspect-ratio: 2 / 2.8;
    object-fit: cover;
    border-radius: 10px;
}

.category-overview h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

.category-overview span {
    display: block;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.filter-panel {
    display: flex;
    gap: 14px;
    padding: 18px;
}

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

.filter-panel select {
    max-width: 200px;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 610px;
    background: #000;
}

.detail-bg,
.detail-mask {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.detail-bg {
    object-fit: cover;
    filter: blur(4px) brightness(0.45) saturate(1.1);
    transform: scale(1.06);
}

.detail-mask {
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.45)), linear-gradient(0deg, rgba(2, 6, 23, 1), transparent 40%);
}

.detail-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 24px;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(226, 232, 240, 0.25);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.55);
}

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

.detail-copy h1 {
    margin-top: 12px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.02;
}

.detail-line {
    max-width: 850px;
    margin: 20px 0 0;
    color: #e2e8f0;
    font-size: 20px;
    line-height: 1.75;
}

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

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 26px 0;
}

.detail-meta-grid span {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.72);
    color: #e2e8f0;
}

.detail-meta-grid b {
    display: block;
    color: var(--amber-soft);
    font-size: 12px;
    margin-bottom: 4px;
}

.player-section {
    padding: 24px;
}

.player-section h2 {
    margin-bottom: 18px;
    font-size: clamp(26px, 4vw, 38px);
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #000;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.movie-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.22), rgba(0, 0, 0, 0.58));
}

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

.play-circle {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    padding-left: 5px;
    border-radius: 50%;
    color: #0f172a;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    font-size: 34px;
    box-shadow: 0 24px 70px rgba(245, 158, 11, 0.34);
}

.player-status {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 4;
    margin: 0;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(226, 232, 240, 0.16);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    pointer-events: none;
}

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

.detail-article {
    padding: 32px;
}

.detail-article h2 {
    font-size: 30px;
    margin-top: 20px;
}

.detail-article h2:first-child {
    margin-top: 0;
}

.detail-article p {
    color: #cbd5e1;
    line-height: 2;
    font-size: 17px;
    margin: 14px 0 0;
}

.search-page-form {
    max-width: 780px;
    margin-top: 28px;
}

.no-result {
    padding: 36px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.88);
    color: #cbd5e1;
    grid-column: 1 / -1;
}

.site-footer {
    margin-top: 64px;
    padding: 44px 24px 30px;
    background: #020617;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
}

.footer-inner strong {
    display: block;
    font-size: 24px;
}

.footer-inner p,
.copyright {
    color: var(--muted);
    line-height: 1.8;
}

.footer-inner nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 14px;
    max-width: 520px;
}

.footer-inner nav a {
    color: #cbd5e1;
}

.footer-inner nav a:hover {
    color: var(--amber-soft);
}

.copyright {
    max-width: 1280px;
    margin: 24px auto 0;
    font-size: 14px;
}

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

    .hero-content {
        grid-template-columns: minmax(0, 1fr) 260px;
    }

    .split-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 880px) {
    .nav-wrap {
        height: auto;
        min-height: 68px;
    }

    .main-nav,
    .nav-search {
        display: none;
    }

    .mobile-toggle {
        display: block;
        margin-left: auto;
    }

    .hero {
        min-height: 760px;
    }

    .hero-content,
    .detail-content,
    .search-band,
    .category-overview,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 42px;
        gap: 26px;
    }

    .hero-poster,
    .detail-poster {
        max-width: 260px;
    }

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

    .detail-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner nav {
        justify-content: start;
    }
}

@media (max-width: 640px) {
    .nav-wrap {
        padding: 0 16px;
    }

    .brand-text em {
        display: none;
    }

    .brand-text strong {
        font-size: 18px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-copy h1,
    .detail-copy h1 {
        font-size: 38px;
    }

    .hero-line,
    .detail-line {
        font-size: 16px;
    }

    .section-wrap {
        padding: 38px 16px 0;
    }

    .search-band,
    .inner-hero {
        margin-left: 16px;
        margin-right: 16px;
    }

    .wide-search,
    .filter-panel {
        flex-direction: column;
        border-radius: 18px;
    }

    .filter-panel select {
        max-width: none;
    }

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

    .rank-row {
        grid-template-columns: 52px 40px minmax(0, 1fr);
    }

    .rank-action {
        grid-column: 1 / -1;
    }

    .rank-cover img {
        width: 52px;
        height: 70px;
    }

    .detail-content {
        padding: 44px 16px;
    }

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

    .player-section,
    .detail-article {
        padding: 18px;
    }

    .player-status {
        display: none;
    }
}
