:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.76);
    --panel-strong: rgba(15, 23, 42, 0.92);
    --line: rgba(168, 85, 247, 0.22);
    --line-strong: rgba(168, 85, 247, 0.42);
    --text: #f8fafc;
    --muted: #cbd5e1;
    --subtle: #94a3b8;
    --purple: #a855f7;
    --purple-soft: rgba(168, 85, 247, 0.2);
    --pink: #ec4899;
    --blue: #60a5fa;
    --yellow: #facc15;
    --radius: 24px;
    --shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

* {
    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;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 8%, rgba(168, 85, 247, 0.22), transparent 28rem),
        radial-gradient(circle at 80% 0%, rgba(236, 72, 153, 0.16), transparent 24rem),
        linear-gradient(135deg, #020617 0%, #0f172a 48%, #000000 100%);
}

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: 100;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(88, 28, 135, 0.94), rgba(15, 23, 42, 0.96));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
}

.header-inner {
    width: min(1280px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.logo-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    box-shadow: 0 12px 34px rgba(168, 85, 247, 0.34);
}

.logo-text,
.footer-logo span:last-child {
    font-size: 22px;
    background: linear-gradient(90deg, #c084fc, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.mobile-nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.header-search,
.mobile-search,
.hero-search,
.search-panel,
.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-search input,
.mobile-search input,
.hero-search input,
.search-panel input,
.filter-bar input,
.search-panel select,
.filter-bar select {
    color: var(--text);
    border: 1px solid var(--line);
    outline: none;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input,
.mobile-search input {
    width: 230px;
    padding: 10px 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.search-panel input:focus,
.filter-bar input:focus,
.search-panel select:focus,
.filter-bar select:focus {
    border-color: rgba(216, 180, 254, 0.82);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.12);
    background: rgba(15, 23, 42, 0.95);
}

.header-search button,
.mobile-search button,
.hero-search button {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    box-shadow: 0 12px 28px rgba(168, 85, 247, 0.28);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.72);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 10px;
    background: var(--text);
}

.mobile-nav {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

.hero-carousel {
    position: relative;
    height: 650px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.9s ease;
}

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    filter: saturate(1.08) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.64) 42%, rgba(2, 6, 23, 0.2) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.96) 0%, transparent 44%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 900px;
    margin-left: max(16px, calc((100% - 1280px) / 2));
    padding-bottom: 76px;
}

.eyebrow {
    margin: 0 0 12px;
    color: #d8b4fe;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-content h1,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero-summary {
    max-width: 720px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

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

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border: 1px solid rgba(168, 85, 247, 0.28);
    border-radius: 999px;
    color: #d8b4fe;
    background: rgba(168, 85, 247, 0.14);
    font-size: 12px;
    font-weight: 700;
}

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

.primary-button,
.ghost-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-button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    box-shadow: 0 16px 36px rgba(168, 85, 247, 0.34);
}

.ghost-button {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    background: rgba(15, 23, 42, 0.54);
}

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

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.52);
    backdrop-filter: blur(8px);
    font-size: 36px;
    line-height: 1;
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 30px;
    background: #ffffff;
}

.hero-search {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 6;
    width: min(760px, calc(100% - 32px));
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
}

.hero-search button {
    padding: 14px 24px;
}

.content-section,
.page-main {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.content-section {
    padding: 56px 0;
}

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

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

.section-more {
    color: #d8b4fe;
    font-weight: 800;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.14);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.82));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.46);
    box-shadow: 0 26px 60px rgba(168, 85, 247, 0.16);
}

.poster-frame {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(88, 28, 135, 0.35), rgba(15, 23, 42, 0.95));
}

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

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

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

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

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--subtle);
    font-size: 12px;
}

.movie-card h3 {
    margin: 10px 0 8px;
    font-size: 18px;
    line-height: 1.32;
}

.movie-card h3 a:hover {
    color: #d8b4fe;
}

.movie-card p {
    min-height: 52px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.movie-card.compact p {
    min-height: 46px;
}

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

.ranking-panel {
    position: sticky;
    top: 92px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    font-weight: 900;
}

.panel-title a {
    color: #d8b4fe;
    font-size: 13px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 42px 58px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.62);
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
    background: rgba(51, 65, 85, 0.72);
    transform: translateX(4px);
}

.rank-number {
    color: #f0abfc;
    font-size: 18px;
    font-weight: 900;
}

.rank-item img {
    width: 58px;
    height: 78px;
    object-fit: cover;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.8);
}

.rank-info {
    min-width: 0;
}

.rank-info strong,
.rank-info em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info strong {
    font-size: 14px;
}

.rank-info em {
    margin-top: 4px;
    color: var(--subtle);
    font-size: 12px;
    font-style: normal;
}

.category-grid,
.category-overview-grid {
    display: grid;
    gap: 22px;
}

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

.category-card,
.category-overview-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.8));
    transition: transform 0.25s ease, border 0.25s ease;
}

.category-card:hover,
.category-overview-card:hover {
    transform: translateY(-5px);
    border-color: var(--line-strong);
}

.category-covers,
.overview-covers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 8px;
}

.category-covers img,
.overview-covers img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.7);
}

.category-card div:last-child,
.overview-body {
    padding: 18px;
}

.category-card h3,
.category-overview-card h2 {
    margin: 0 0 8px;
}

.category-card p,
.category-overview-card p,
.page-hero p {
    color: var(--muted);
    line-height: 1.75;
}

.category-card span {
    display: inline-flex;
    margin-top: 12px;
    color: #d8b4fe;
    font-weight: 800;
}

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

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

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

.page-hero {
    position: relative;
    overflow: hidden;
    margin: 0 auto 14px;
    padding: 58px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background:
        radial-gradient(circle at 15% 25%, rgba(168, 85, 247, 0.28), transparent 22rem),
        linear-gradient(135deg, rgba(30, 41, 59, 0.88), rgba(15, 23, 42, 0.92));
    box-shadow: var(--shadow);
}

.page-hero h1 {
    max-width: 900px;
}

.page-hero p:not(.eyebrow) {
    max-width: 780px;
    margin: 18px 0 0;
    font-size: 17px;
}

.filter-bar,
.search-panel {
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--panel);
}

.filter-bar input,
.search-panel input {
    min-width: 260px;
    flex: 1;
    padding: 13px 16px;
}

.filter-bar select,
.search-panel select {
    min-width: 160px;
    padding: 13px 14px;
}

.empty-state,
.search-count {
    color: var(--subtle);
    margin: 18px 0;
}

.empty-state {
    display: none;
    padding: 24px;
    border: 1px dashed var(--line);
    border-radius: 20px;
    text-align: center;
}

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

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

.rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    min-width: 38px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #ef4444, #f97316);
    font-weight: 900;
    box-shadow: 0 10px 26px rgba(239, 68, 68, 0.32);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    color: var(--subtle);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #d8b4fe;
}

.detail-hero {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 34px;
    align-items: stretch;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background:
        radial-gradient(circle at 0% 0%, rgba(168, 85, 247, 0.22), transparent 26rem),
        linear-gradient(145deg, rgba(30, 41, 59, 0.72), rgba(15, 23, 42, 0.86));
    box-shadow: var(--shadow);
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.82);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.4);
}

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

.detail-info {
    padding: 16px 0;
    align-self: center;
}

.detail-one-line {
    max-width: 820px;
    margin: 22px 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

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

.detail-meta li {
    padding: 14px;
    border: 1px solid rgba(168, 85, 247, 0.14);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.58);
}

.detail-meta span,
.detail-meta strong {
    display: block;
}

.detail-meta span {
    color: var(--subtle);
    font-size: 12px;
}

.detail-meta strong {
    margin-top: 5px;
    font-size: 15px;
}

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

.player-section {
    margin-top: 34px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(168, 85, 247, 0.28);
    border-radius: 28px;
    background: #000000;
    box-shadow: var(--shadow);
}

.movie-video {
    width: 100%;
    height: 100%;
    background: #000000;
}

.player-poster {
    position: absolute;
    inset: 0;
    z-index: 4;
    overflow: hidden;
    border: 0;
    padding: 0;
    background: #000000;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    filter: blur(1px) saturate(1.08);
}

.player-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(168, 85, 247, 0.16), transparent 24rem),
        linear-gradient(0deg, rgba(2, 6, 23, 0.74), rgba(2, 6, 23, 0.18));
}

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

.play-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.92), rgba(236, 72, 153, 0.92));
    box-shadow: 0 20px 52px rgba(168, 85, 247, 0.34);
    transform: translate(-50%, -50%);
}

.play-triangle {
    width: 0;
    height: 0;
    margin-left: 6px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 23px solid #ffffff;
}

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

.detail-text-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--panel);
}

.detail-text-card h2 {
    margin: 0 0 14px;
}

.detail-text-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
    text-align: justify;
}

.site-footer {
    margin-top: 56px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.78);
}

.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 34px;
}

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

.site-footer h3 {
    margin: 0 0 14px;
}

.site-footer a:not(.footer-logo) {
    display: block;
    margin: 8px 0;
    color: var(--muted);
}

.site-footer a:hover {
    color: #d8b4fe;
}

.image-missing {
    opacity: 0;
}

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

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

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

    .ranking-panel {
        position: static;
    }

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

@media (max-width: 860px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

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

    .mobile-nav.open {
        display: grid;
        gap: 10px;
    }

    .mobile-search {
        align-items: stretch;
    }

    .mobile-search input {
        width: auto;
        flex: 1;
    }

    .hero-carousel {
        height: 620px;
    }

    .hero-content {
        justify-content: flex-end;
        padding-bottom: 150px;
        margin-left: auto;
    }

    .hero-search {
        align-items: stretch;
        border-radius: 24px;
        flex-direction: column;
    }

    .hero-search input,
    .hero-search button {
        width: 100%;
    }

    .hero-control {
        display: none;
    }

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

    .detail-hero,
    .detail-copy,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .detail-poster img {
        min-height: 0;
        max-height: 560px;
    }

    .page-hero {
        padding: 34px 24px;
    }
}

@media (max-width: 560px) {
    .header-inner {
        height: 64px;
    }

    .logo-text {
        font-size: 18px;
    }

    .hero-carousel {
        height: 590px;
    }

    .hero-content h1,
    .page-hero h1,
    .detail-info h1 {
        font-size: 38px;
    }

    .hero-summary,
    .detail-one-line {
        font-size: 15px;
    }

    .movie-grid,
    .medium-grid,
    .ranking-grid,
    .category-grid,
    .category-overview-grid {
        gap: 14px;
    }

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

    .movie-card h3 {
        font-size: 16px;
    }

    .movie-card p {
        font-size: 13px;
    }

    .detail-hero {
        padding: 18px;
    }

    .detail-meta,
    .filter-bar,
    .search-panel {
        grid-template-columns: 1fr;
    }

    .filter-bar,
    .search-panel {
        display: grid;
    }

    .filter-bar input,
    .filter-bar select,
    .search-panel input,
    .search-panel select {
        min-width: 0;
        width: 100%;
    }
}
