:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.76);
    --panel-strong: rgba(30, 41, 59, 0.88);
    --line: rgba(255, 255, 255, 0.1);
    --muted: #94a3b8;
    --text: #f8fafc;
    --gold: #f59e0b;
    --gold-soft: #fde68a;
    --blue: #38bdf8;
    --green: #22c55e;
    --rose: #fb7185;
    --purple: #a78bfa;
    --radius-lg: 28px;
    --radius-md: 20px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, 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.18), transparent 28rem),
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.22), transparent 30rem),
        linear-gradient(135deg, #020617 0%, #0f172a 48%, #020617 100%);
    color: var(--text);
}

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

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;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(18px);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    color: #111827;
    background: linear-gradient(135deg, #fde68a, #f59e0b 60%, #ef4444);
    box-shadow: 0 14px 35px rgba(245, 158, 11, 0.35);
}

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

.nav-link {
    padding: 10px 14px;
    color: #cbd5e1;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(245, 158, 11, 0.16);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--line);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.hero {
    padding: 22px 16px 42px;
}

.hero-stage {
    position: relative;
    width: min(1180px, 100%);
    min-height: 650px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: #0f172a;
    box-shadow: var(--shadow);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.01);
    transition: opacity 0.7s ease, transform 1.1s ease;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.08);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 650px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: center;
    gap: 56px;
    padding: 72px;
}

.hero-copy {
    max-width: 680px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold-soft);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1,
.sub-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-desc {
    margin: 24px 0 0;
    max-width: 620px;
    color: #dbeafe;
    font-size: 19px;
    line-height: 1.8;
}

.hero-tags,
.card-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.hero-tags span,
.card-tags span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 999px;
    color: #fde68a;
    background: rgba(245, 158, 11, 0.12);
    font-size: 13px;
}

.hero-actions,
.detail-copy .primary-btn {
    margin-top: 30px;
}

.primary-btn,
.ghost-btn,
.quick-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn,
.quick-search button {
    color: #111827;
    background: linear-gradient(135deg, #fde68a, #f59e0b 65%, #fb7185);
    box-shadow: 0 16px 45px rgba(245, 158, 11, 0.3);
}

.ghost-btn {
    margin-left: 12px;
    color: #fff;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.08);
}

.primary-btn:hover,
.ghost-btn:hover,
.quick-search button:hover {
    transform: translateY(-2px);
}

.hero-poster {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-poster:hover img {
    transform: scale(1.06);
}

.hero-poster span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(8px);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #fff;
    background: rgba(2, 6, 23, 0.62);
    transform: translateY(-50%);
    cursor: pointer;
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

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

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

.quick-search-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
    align-items: center;
    gap: 28px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 58, 138, 0.42));
    box-shadow: var(--shadow);
}

.quick-search-card h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.quick-search-card p,
.section-heading p,
.sub-hero p,
.category-card p,
.card-summary,
.detail-copy p,
.detail-article p,
.site-footer p {
    color: var(--muted);
    line-height: 1.75;
}

.quick-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.quick-search input,
.search-box input,
.filter-select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: #fff;
    background: rgba(2, 6, 23, 0.58);
    outline: none;
}

.quick-search input,
.search-box input {
    padding: 0 16px;
}

.search-box {
    position: relative;
    min-width: min(100%, 420px);
    flex: 1;
}

.search-box span {
    position: absolute;
    left: 15px;
    top: 50%;
    color: var(--muted);
    transform: translateY(-50%);
}

.search-box input {
    padding-left: 42px;
}

.filter-select {
    max-width: 180px;
    padding: 0 12px;
}

.page-section {
    padding: 72px 0;
}

.no-top {
    padding-top: 0;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 8px 0 0;
}

.section-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-soft);
    font-weight: 800;
}

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

.category-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--panel);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.42);
}

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

.category-card:hover img {
    opacity: 0.34;
    transform: scale(1.06);
}

.category-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.94));
}

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

.category-card strong {
    display: block;
    margin-top: 84px;
    font-size: 24px;
}

.category-card p {
    margin: 8px 0 0;
    font-size: 14px;
}

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

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

.movie-card {
    min-width: 0;
}

.movie-card[hidden],
.rank-row[hidden] {
    display: none;
}

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.movie-card-link:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.42);
    background: rgba(30, 41, 59, 0.9);
}

.poster-frame {
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

.poster-frame img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.55s ease;
}

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

.poster-score,
.poster-type {
    position: absolute;
    top: 12px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.poster-score {
    left: 12px;
    color: #111827;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
}

.poster-type {
    right: 12px;
    background: rgba(2, 6, 23, 0.72);
}

.card-body {
    padding: 16px;
}

.card-body h2 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
}

.card-meta {
    margin: 7px 0 0;
    color: #cbd5e1;
    font-size: 13px;
}

.card-summary {
    margin: 10px 0 0;
    font-size: 14px;
}

.movie-card-compact .card-body h2 {
    font-size: 16px;
}

.movie-card-compact .card-summary {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.wide-band {
    padding: 72px 16px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3), rgba(30, 58, 138, 0.28));
}

.wide-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

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

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

.rank-row {
    display: grid;
    grid-template-columns: 48px 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.72);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-row:hover {
    transform: translateX(4px);
    border-color: rgba(245, 158, 11, 0.42);
}

.rank-number {
    font-size: 20px;
    font-weight: 900;
    color: #64748b;
}

.rank-number.top {
    color: var(--gold-soft);
}

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

.rank-title {
    min-width: 0;
    font-weight: 800;
}

.rank-title small {
    display: block;
    margin-top: 4px;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.subpage {
    width: 100%;
}

.sub-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 22px auto 48px;
    padding: 62px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 34px;
    background:
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.24), transparent 26rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 58, 138, 0.48));
    box-shadow: var(--shadow);
}

.sub-hero h1 {
    font-size: clamp(38px, 5vw, 60px);
}

.sub-hero p:last-child {
    max-width: 680px;
    margin: 16px 0 0;
    font-size: 18px;
}

.filter-panel {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.68);
}

.category-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 26px;
    align-items: start;
}

.side-panel,
.info-panel,
.detail-article,
.category-preview-block {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
}

.side-panel {
    position: sticky;
    top: 92px;
    padding: 20px;
}

.side-panel h2,
.info-panel h2,
.detail-article h2 {
    margin: 0 0 18px;
    font-size: 22px;
}

.side-rank-list .rank-row {
    grid-template-columns: 36px 48px minmax(0, 1fr);
}

.side-rank-list .rank-meta {
    display: none;
}

.full-rank-list .rank-row {
    grid-template-columns: 64px 70px minmax(0, 1fr) auto;
}

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

.category-preview-block {
    padding: 24px;
}

.category-preview-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.category-preview-head h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.category-preview-head p {
    margin: 0;
    color: var(--muted);
}

.detail-hero {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    background-image: var(--detail-cover);
    background-size: cover;
    background-position: center;
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.86)),
        linear-gradient(0deg, #020617, transparent 60%);
    backdrop-filter: blur(3px);
}

.detail-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 64px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 32px;
    color: #cbd5e1;
    font-size: 14px;
}

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

.detail-hero-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-poster {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

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

.detail-poster span {
    position: absolute;
    left: 16px;
    top: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #111827;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    font-weight: 900;
}

.detail-copy p {
    max-width: 760px;
    font-size: 18px;
}

.detail-main {
    padding-top: 52px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: #000;
    box-shadow: var(--shadow);
}

.movie-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 16px;
    width: 100%;
    min-height: 100%;
    color: #fff;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.player-cover strong {
    max-width: min(760px, calc(100% - 40px));
    font-size: clamp(24px, 4vw, 46px);
    letter-spacing: -0.04em;
    text-align: center;
}

.play-circle {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    padding-left: 5px;
    border-radius: 50%;
    color: #111827;
    background: linear-gradient(135deg, #fde68a, #f59e0b, #fb7185);
    box-shadow: 0 18px 55px rgba(245, 158, 11, 0.36);
    font-size: 32px;
}

.player-shell.is-playing .player-cover {
    display: none;
}

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

.detail-article,
.info-panel {
    padding: 24px;
}

.detail-article h2:not(:first-child) {
    margin-top: 28px;
}

.detail-article p {
    margin: 0;
    font-size: 16px;
}

.info-panel dl {
    display: grid;
    gap: 14px;
    margin: 0;
}

.info-panel div {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.info-panel dt {
    color: var(--muted);
}

.info-panel dd {
    margin: 0;
    color: #fff;
}

.info-panel a {
    color: var(--gold-soft);
}

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

.site-footer {
    margin-top: 64px;
    padding: 48px 16px 28px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.76);
}

.footer-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 34px;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 18px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    padding: 8px 12px;
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
    width: min(1180px, 100%);
    margin: 34px auto 0;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: #64748b;
    font-size: 14px;
}

.tone-amber { --tone: #f59e0b; }
.tone-blue { --tone: #38bdf8; }
.tone-purple { --tone: #a78bfa; }
.tone-rose { --tone: #fb7185; }
.tone-green { --tone: #22c55e; }
.tone-cyan { --tone: #22d3ee; }
.tone-orange { --tone: #fb923c; }
.tone-pink { --tone: #f472b6; }

.tone-amber,
.tone-blue,
.tone-purple,
.tone-rose,
.tone-green,
.tone-cyan,
.tone-orange,
.tone-pink {
    border-color: color-mix(in srgb, var(--tone), transparent 68%);
}

@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding: 56px;
    }

    .hero-poster {
        display: none;
    }

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

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

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

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

    .side-panel {
        position: static;
    }
}

@media (max-width: 760px) {
    .nav-wrap {
        height: 64px;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 72px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(2, 6, 23, 0.96);
    }

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

    .nav-link {
        border-radius: 14px;
    }

    .hero-stage,
    .hero-content {
        min-height: 560px;
    }

    .hero-content {
        padding: 38px 24px 72px;
    }

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

    .hero-desc,
    .detail-copy p {
        font-size: 16px;
    }

    .quick-search-card,
    .quick-search,
    .footer-grid,
    .detail-hero-grid {
        grid-template-columns: 1fr;
    }

    .quick-search-card,
    .sub-hero {
        padding: 28px;
    }

    .page-section {
        padding: 48px 0;
    }

    .section-heading,
    .category-preview-head {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .card-body {
        padding: 13px;
    }

    .card-body h2 {
        font-size: 15px;
    }

    .card-summary,
    .card-tags {
        display: none;
    }

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

    .rank-meta {
        display: none;
    }

    .detail-poster {
        max-width: 230px;
    }

    .filter-select {
        max-width: none;
        flex: 1 1 150px;
    }
}

@media (max-width: 430px) {
    .movie-grid,
    .compact-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        display: grid;
        gap: 10px;
    }

    .ghost-btn {
        margin-left: 0;
    }
}
