:root {
    --color-primary: 14 165 233;
    --color-primary-dark: 3 105 161;
    --color-secondary: 6 182 212;
    --color-accent: 34 211 238;
    --color-surface: 255 255 255;
    --color-text: 17 24 39;
    --color-muted: 75 85 99;
    --color-soft: 240 249 255;
    --shadow-card: 0 20px 45px rgba(15, 23, 42, 0.10);
    --shadow-soft: 0 12px 28px rgba(14, 165, 233, 0.18);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: rgb(var(--color-text));
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.13), transparent 32rem),
        linear-gradient(180deg, #f8fbff 0%, #eef8ff 42%, #ffffff 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container-custom {
    width: min(100%, 1280px);
    margin-inline: auto;
    padding-inline: 1rem;
}

.gradient-bg {
    background-image: linear-gradient(135deg, #38bdf8, #06b6d4 45%, #2563eb);
}

.gradient-text {
    background-image: linear-gradient(90deg, #0284c7, #0891b2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card {
    border: 1px solid rgba(14, 165, 233, 0.10);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.card-hover {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.34);
    box-shadow: 0 24px 56px rgba(14, 165, 233, 0.18);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 44px;
    border-radius: 999px;
    padding: 0.7rem 1.2rem;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #38bdf8, #06b6d4 45%, #2563eb);
    box-shadow: var(--shadow-soft);
}

.btn-ghost {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.btn-soft {
    color: #0369a1;
    background: #e0f2fe;
    border-color: rgba(14, 165, 233, 0.25);
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.badge-primary {
    color: #0369a1;
    background: #e0f2fe;
}

.badge-secondary {
    color: #0e7490;
    background: #cffafe;
}

.badge-light {
    color: #475569;
    background: #f1f5f9;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(14, 165, 233, 0.12);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #38bdf8, #06b6d4 45%, #2563eb);
    box-shadow: var(--shadow-soft);
}

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

.brand-copy strong {
    font-size: clamp(1.2rem, 1.7vw, 1.55rem);
    letter-spacing: -0.03em;
}

.brand-copy small {
    margin-top: 0.2rem;
    color: #64748b;
    font-size: 0.78rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link,
.mobile-link {
    border-radius: 12px;
    padding: 0.62rem 0.95rem;
    color: #334155;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.mobile-link:hover {
    color: #0284c7;
    background: #f0f9ff;
}

.nav-link.active,
.mobile-link.active {
    color: #ffffff;
    background: #0ea5e9;
    box-shadow: 0 10px 24px rgba(14, 165, 233, 0.28);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #f0f9ff;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: #0369a1;
}

.mobile-nav {
    display: none;
    padding: 0 1rem 1rem;
}

.mobile-nav.open {
    display: grid;
    gap: 0.45rem;
}

.hero-carousel {
    position: relative;
    min-height: clamp(560px, 70vw, 720px);
    color: #ffffff;
    overflow: hidden;
    background: #020617;
}

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

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

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

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

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.56) 46%, rgba(2, 6, 23, 0.74)),
        radial-gradient(circle at 74% 20%, rgba(14, 165, 233, 0.34), transparent 24rem);
}

.hero-content {
    position: relative;
    min-height: clamp(560px, 70vw, 720px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    padding-block: 5rem;
}

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

.hero-kicker,
.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    color: #e0f2fe;
    background: rgba(14, 165, 233, 0.22);
    border: 1px solid rgba(125, 211, 252, 0.26);
    font-weight: 800;
}

.hero-copy h1,
.page-hero h1 {
    margin: 1.1rem 0 1rem;
    font-size: clamp(2.25rem, 5vw, 5.2rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
    text-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
}

.hero-copy p,
.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 1.6vw, 1.24rem);
}

.hero-tags,
.tag-row,
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-tags {
    margin-top: 1.35rem;
}

.hero-tags span,
.tag-row span,
.chip-row a {
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    color: #0369a1;
    background: #e0f2fe;
    font-size: 0.86rem;
    font-weight: 700;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.65rem;
}

.hero-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

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

.hero-poster span {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(14, 165, 233, 0.88);
    box-shadow: 0 16px 36px rgba(14, 165, 233, 0.35);
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
}

.hero-dots {
    display: flex;
    gap: 0.5rem;
}

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

.hero-dot.active {
    width: 72px;
    background: #38bdf8;
}

.quick-search-section {
    margin-top: -3.2rem;
    position: relative;
    z-index: 2;
}

.quick-search {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
    gap: 1.4rem;
    align-items: center;
    padding: clamp(1.2rem, 3vw, 2rem);
}

.quick-search h2 {
    margin: 0 0 0.25rem;
    font-size: clamp(1.35rem, 2vw, 2rem);
}

.quick-search p {
    margin: 0;
    color: #64748b;
}

.home-search,
.search-page-form {
    display: flex;
    gap: 0.75rem;
}

.home-search input,
.search-page-form input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid rgba(14, 165, 233, 0.20);
    border-radius: 999px;
    padding: 0.85rem 1rem;
    color: #0f172a;
    background: #ffffff;
    outline: none;
}

.home-search input:focus,
.search-page-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.13);
}

.chip-row {
    grid-column: 1 / -1;
}

.chip-row a:hover {
    color: #ffffff;
    background: #0ea5e9;
}

.section-block {
    padding-block: clamp(3rem, 7vw, 6rem);
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.section-title {
    margin: 0 0 0.35rem;
    color: #0f172a;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading-row p,
.ranking-copy p,
.side-panel p,
.prose-card p {
    margin: 0;
    color: #64748b;
}

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

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

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

.catalog-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 1.4rem;
}

.movie-card {
    display: flex;
    flex-direction: column;
}

.movie-cover {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #e0f2fe;
}

.movie-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.cover-type,
.cover-year {
    position: absolute;
    top: 0.75rem;
    border-radius: 999px;
    padding: 0.25rem 0.58rem;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.58);
    backdrop-filter: blur(10px);
    font-size: 0.78rem;
    font-weight: 800;
}

.cover-type {
    left: 0.75rem;
}

.cover-year {
    right: 0.75rem;
}

.cover-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(14, 165, 233, 0.88);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-card-body {
    display: grid;
    gap: 0.55rem;
    padding: 0.95rem;
}

.movie-meta-line {
    color: #0284c7;
    font-size: 0.82rem;
    font-weight: 800;
}

.movie-title {
    margin: 0;
    color: #0f172a;
    font-size: 1.02rem;
    line-height: 1.35;
}

.movie-title a:hover {
    color: #0284c7;
}

.movie-card-body p {
    display: -webkit-box;
    min-height: 2.9em;
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-row span {
    font-size: 0.76rem;
    padding: 0.22rem 0.55rem;
}

.category-section {
    background: linear-gradient(180deg, rgba(224, 242, 254, 0.66), rgba(255, 255, 255, 0));
}

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

.category-card,
.category-overview-card a {
    position: relative;
    display: grid;
    min-height: 150px;
    gap: 0.6rem;
    align-content: end;
    padding: 1.2rem;
}

.category-glow {
    position: absolute;
    inset: auto -20% 40% auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.18);
    filter: blur(10px);
}

.category-card strong,
.category-overview-card span {
    position: relative;
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 900;
}

.category-card small,
.category-overview-card strong {
    position: relative;
    color: #64748b;
    font-weight: 600;
}

.ranking-section {
    background: #0f172a;
    color: #ffffff;
}

.ranking-layout,
.ranking-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.ranking-copy {
    position: sticky;
    top: 110px;
}

.ranking-copy .section-title,
.ranking-section .section-title {
    color: #ffffff;
}

.ranking-copy p {
    color: #cbd5e1;
    margin-bottom: 1.4rem;
}

.rank-list {
    display: grid;
    background: rgba(255, 255, 255, 0.96);
}

.rank-item {
    display: grid;
    grid-template-columns: 48px 64px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.rank-item:last-child {
    border-bottom: 0;
}

.rank-item:hover {
    background: #f0f9ff;
}

.rank-number {
    color: #0284c7;
    font-size: 1.25rem;
    font-weight: 900;
    text-align: center;
}

.rank-item img {
    width: 64px;
    height: 82px;
    border-radius: 12px;
    object-fit: cover;
    background: #e0f2fe;
}

.rank-copy {
    min-width: 0;
    display: grid;
    gap: 0.15rem;
}

.rank-copy strong {
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-copy small {
    color: #64748b;
}

.page-hero {
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(2, 6, 23, 0.96), rgba(3, 105, 161, 0.86)),
        radial-gradient(circle at 80% 10%, rgba(34, 211, 238, 0.42), transparent 22rem);
}

.compact-hero {
    padding-block: clamp(4rem, 8vw, 7rem);
}

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

.filter-panel,
.search-page-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(160px, 0.38fr));
    gap: 1rem;
    padding: 1rem;
}

.filter-panel label {
    display: grid;
    gap: 0.35rem;
    color: #475569;
    font-weight: 800;
}

.filter-panel select {
    appearance: none;
    border-radius: 16px;
}

.empty-state {
    margin-top: 1.5rem;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    color: #64748b;
    background: #ffffff;
    text-align: center;
}

.search-page-panel {
    grid-template-columns: 1fr;
    padding: 1.2rem;
}

.search-page-form input {
    border-radius: 18px;
}

.detail-page-head {
    padding-block: 1.2rem 0;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: #64748b;
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.breadcrumbs a {
    color: #0284c7;
    font-weight: 800;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
    gap: clamp(1.25rem, 4vw, 3rem);
    padding: clamp(1rem, 3vw, 2rem);
    align-items: center;
}

.detail-cover {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #e0f2fe;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18);
}

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

.detail-copy {
    display: grid;
    gap: 1rem;
}

.detail-badges,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.detail-copy h1 {
    margin: 0;
    font-size: clamp(2rem, 4.2vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-lead {
    margin: 0;
    color: #475569;
    font-size: 1.12rem;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.detail-meta-grid span {
    display: grid;
    gap: 0.2rem;
    border-radius: 16px;
    padding: 0.8rem;
    background: #f8fafc;
    color: #475569;
}

.detail-meta-grid strong {
    color: #0f172a;
    font-size: 0.8rem;
}

.movie-player {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.movie-video,
.player-cover,
.player-cover img,
.player-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.movie-video {
    object-fit: contain;
    background: #020617;
}

.player-cover {
    display: grid;
    place-items: center;
    border: 0;
    padding: 0;
    color: #ffffff;
    background: #020617;
    transition: opacity 0.28s ease;
}

.player-cover img {
    object-fit: cover;
    filter: brightness(0.72);
}

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

.player-shade {
    background:
        radial-gradient(circle, rgba(14, 165, 233, 0.32), transparent 18rem),
        linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.64));
}

.player-play-button {
    position: relative;
    width: clamp(72px, 9vw, 104px);
    height: clamp(72px, 9vw, 104px);
    display: grid;
    place-items: center;
    border-radius: 50%;
    padding-left: 0.25rem;
    background: rgba(14, 165, 233, 0.92);
    box-shadow: 0 18px 50px rgba(14, 165, 233, 0.38);
    font-size: 2rem;
}

.player-status {
    position: absolute;
    left: 50%;
    bottom: clamp(1rem, 4vw, 2rem);
    transform: translateX(-50%);
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    background: rgba(2, 6, 23, 0.55);
    font-weight: 800;
}

.detail-text-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.prose-card {
    padding: clamp(1.2rem, 3vw, 2rem);
}

.prose-card h2,
.side-panel h2,
.site-footer h2 {
    margin: 0 0 0.8rem;
    color: #0f172a;
    font-size: 1.25rem;
}

.side-panel {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
}

.ranking-page-list {
    max-height: none;
}

.site-footer {
    color: #cbd5e1;
    background: #0f172a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 2rem;
    padding-block: 3rem;
}

.footer-brand {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 900;
}

.site-footer p {
    max-width: 560px;
    margin: 0;
    color: #94a3b8;
}

.site-footer h2 {
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

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

.footer-links a:hover {
    color: #ffffff;
    background: rgba(14, 165, 233, 0.36);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    padding-block: 1.2rem;
    color: #94a3b8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease both;
}

@media (max-width: 1180px) {
    .featured-grid,
    .latest-grid,
    .catalog-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content,
    .quick-search,
    .ranking-layout,
    .ranking-page-layout,
    .detail-hero,
    .detail-text-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        max-width: 330px;
    }

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

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

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

@media (max-width: 680px) {
    .container-custom {
        padding-inline: 0.85rem;
    }

    .brand-icon {
        width: 42px;
        height: 42px;
    }

    .brand-copy small {
        display: none;
    }

    .hero-carousel,
    .hero-content {
        min-height: 650px;
    }

    .hero-content {
        align-content: center;
        padding-block: 4rem 5rem;
    }

    .hero-poster {
        display: none;
    }

    .home-search,
    .search-page-form,
    .section-heading-row,
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .movie-grid,
    .featured-grid,
    .latest-grid,
    .catalog-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

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

    .rank-item {
        grid-template-columns: 38px 54px minmax(0, 1fr);
    }

    .rank-item img {
        width: 54px;
        height: 72px;
    }

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

    .movie-card-body {
        padding: 0.75rem;
    }

    .movie-title {
        font-size: 0.95rem;
    }
}
