:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --card: rgba(15, 23, 42, 0.72);
    --card-strong: rgba(15, 23, 42, 0.94);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --dim: #64748b;
    --amber: #f59e0b;
    --orange: #f97316;
    --red: #ef4444;
    --green: #22c55e;
    --shadow: 0 28px 80px rgba(2, 6, 23, 0.45);
}

* {
    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", "PingFang SC", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 34rem),
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.13), transparent 30rem),
        linear-gradient(180deg, #020617 0%, #0f172a 44%, #020617 100%);
    color: var(--text);
}

body.inner-page {
    padding-top: 5rem;
}

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

img {
    max-width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
body.inner-page .site-header {
    background: rgba(2, 6, 23, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.42);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    width: min(1180px, calc(100% - 2rem));
    height: 5rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    letter-spacing: -0.03em;
}

.logo-mark {
    width: 2.65rem;
    height: 2.65rem;
    display: grid;
    place-items: center;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    color: white;
    box-shadow: 0 18px 45px rgba(245, 158, 11, 0.28);
}

.logo-text {
    background: linear-gradient(90deg, #fbbf24, #fb923c, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0 0.9rem;
    color: #cbd5e1;
    border-radius: 0.85rem;
    font-weight: 650;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fef3c7;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.18), rgba(249, 115, 22, 0.15));
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--line);
    border-radius: 0.85rem;
    background: rgba(15, 23, 42, 0.72);
    color: white;
    font-size: 1.45rem;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto 1rem;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    background: rgba(2, 6, 23, 0.96);
    backdrop-filter: blur(18px);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.42), rgba(2, 6, 23, 0.9) 78%, #020617 100%);
}

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

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

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

.hero-glow {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 72% 30%, rgba(245, 158, 11, 0.26), transparent 26rem),
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.78) 42%, rgba(2, 6, 23, 0.36) 100%);
}

.hero-content {
    width: min(1180px, calc(100% - 2rem));
    min-height: 100vh;
    margin: 0 auto;
    padding: 8rem 0 4rem;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.78fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
}

.hero-copy {
    max-width: 46rem;
}

.eyebrow-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.eyebrow,
.meta-pill,
.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
}

.eyebrow {
    color: white;
    background: linear-gradient(90deg, var(--amber), var(--orange));
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.22);
}

.meta-pill,
.tag-pill {
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.18);
    backdrop-filter: blur(14px);
}

.hero-title {
    margin: 0 0 1.25rem;
    font-size: clamp(2.4rem, 7vw, 5.8rem);
    line-height: 0.95;
    letter-spacing: -0.08em;
    font-weight: 900;
    text-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.hero-title span {
    color: #fcd34d;
}

.hero-desc {
    margin: 0;
    color: #cbd5e1;
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    line-height: 1.9;
    max-width: 42rem;
}

.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 3rem;
    padding: 0 1.2rem;
    border-radius: 0.9rem;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button.primary {
    color: white;
    background: linear-gradient(90deg, var(--amber), var(--orange));
    box-shadow: 0 18px 46px rgba(245, 158, 11, 0.26);
}

.button.secondary {
    color: #f8fafc;
    background: rgba(15, 23, 42, 0.68);
    border-color: rgba(148, 163, 184, 0.24);
    backdrop-filter: blur(12px);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 56px rgba(245, 158, 11, 0.2);
}

.hero-poster-panel {
    position: relative;
    border-radius: 1.7rem;
    padding: 0.75rem;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-poster-panel::before {
    content: "";
    position: absolute;
    inset: -1.2rem;
    z-index: -1;
    border-radius: 2.2rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.26), rgba(249, 115, 22, 0.06));
    filter: blur(22px);
}

.hero-poster-panel img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 1.25rem;
}

.hero-card-caption {
    position: absolute;
    left: 1.4rem;
    right: 1.4rem;
    bottom: 1.4rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(2, 6, 23, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.hero-card-caption strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.hero-card-caption span {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    transform: translateX(-50%);
}

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

.hero-dot.active {
    width: 3.6rem;
    background: linear-gradient(90deg, var(--amber), var(--orange));
}

.section {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.section.compact {
    padding-top: 2.5rem;
}

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

.section-kicker {
    margin-bottom: 0.6rem;
    color: #fbbf24;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.section-title,
.page-title {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 3.3rem);
    letter-spacing: -0.055em;
    line-height: 1.05;
    font-weight: 900;
}

.section-desc,
.page-desc {
    margin: 0.9rem 0 0;
    color: var(--muted);
    line-height: 1.9;
    max-width: 52rem;
}

.grid {
    display: grid;
    gap: 1.35rem;
}

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

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

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

.movie-card,
.category-card,
.info-card,
.search-panel,
.detail-panel,
.rank-row {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 1.35rem;
    box-shadow: 0 24px 70px rgba(2, 6, 23, 0.26);
    backdrop-filter: blur(18px);
}

.movie-card {
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.42);
    box-shadow: 0 28px 70px rgba(245, 158, 11, 0.12);
}

.poster-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(15, 23, 42, 0.88));
    aspect-ratio: 2 / 3;
}

.poster-wrap.wide {
    aspect-ratio: 16 / 9;
}

.poster-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.movie-card:hover .poster-wrap img,
.rank-row:hover .poster-wrap img {
    transform: scale(1.08);
    filter: saturate(1.1);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0) 32%, rgba(2, 6, 23, 0.88) 100%);
}

.poster-badge {
    position: absolute;
    left: 0.8rem;
    top: 0.8rem;
    z-index: 2;
    padding: 0.32rem 0.58rem;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.92);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
}

.poster-score {
    position: absolute;
    right: 0.8rem;
    top: 0.8rem;
    z-index: 2;
    padding: 0.32rem 0.58rem;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.72);
    color: #fde68a;
    font-size: 0.75rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.play-float {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 3.65rem;
    height: 3.65rem;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%) scale(0.85);
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.92);
    color: white;
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.card-body {
    padding: 1rem;
}

.card-title {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.45;
    font-weight: 850;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.65rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.card-desc {
    margin: 0.75rem 0 0;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-card {
    display: grid;
    min-height: 14rem;
    padding: 1.3rem;
    overflow: hidden;
    position: relative;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: auto -2rem -3rem auto;
    width: 10rem;
    height: 10rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.28), transparent 70%);
}

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

.category-card h3 {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 900;
}

.category-card p {
    margin: 0.8rem 0 1rem;
    color: #cbd5e1;
    line-height: 1.75;
}

.category-card .mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-self: end;
}

.category-card .mini-links span {
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.74);
    color: #fde68a;
    font-size: 0.78rem;
}

.search-panel {
    padding: 1rem;
    margin-bottom: 1.6rem;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(130px, 0.35fr));
    gap: 0.75rem;
}

.input,
.select {
    width: 100%;
    min-height: 3rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 0.9rem;
    padding: 0 0.9rem;
    outline: none;
    color: #f8fafc;
    background: rgba(2, 6, 23, 0.72);
}

.input:focus,
.select:focus {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.filter-chip {
    min-height: 2.35rem;
    padding: 0 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.64);
    color: #cbd5e1;
    font-weight: 700;
}

.filter-chip.active,
.filter-chip:hover {
    color: #fff7ed;
    border-color: rgba(245, 158, 11, 0.45);
    background: rgba(245, 158, 11, 0.2);
}

.rank-list {
    display: grid;
    gap: 0.9rem;
}

.rank-row {
    display: grid;
    grid-template-columns: 4.5rem 9rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.2rem;
    padding: 0.9rem;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

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

.rank-num {
    font-size: 1.8rem;
    font-weight: 950;
    color: #fbbf24;
    text-align: center;
}

.rank-row .poster-wrap {
    border-radius: 0.95rem;
    aspect-ratio: 16 / 10;
}

.rank-title {
    margin: 0;
    font-size: 1.18rem;
    font-weight: 900;
}

.rank-desc {
    margin: 0.45rem 0 0;
    color: #cbd5e1;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rank-meta {
    color: #fde68a;
    font-weight: 850;
    white-space: nowrap;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}

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

.detail-hero {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2.5rem 0 2rem;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.62fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: start;
}

.player-card {
    overflow: hidden;
    border-radius: 1.45rem;
    background: rgba(2, 6, 23, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: var(--shadow);
}

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

.player-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.78));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-trigger {
    width: 5rem;
    height: 5rem;
    border: 0;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 22px 60px rgba(245, 158, 11, 0.35);
    transition: transform 0.2s ease;
}

.play-trigger:hover {
    transform: scale(1.06);
}

.player-titlebar {
    padding: 1rem 1.15rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.detail-panel {
    padding: 1.35rem;
}

.detail-title {
    margin: 0 0 0.8rem;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
    font-weight: 950;
}

.detail-summary {
    color: #cbd5e1;
    line-height: 1.9;
}

.detail-cover {
    overflow: hidden;
    border-radius: 1.35rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(15, 23, 42, 0.9));
    box-shadow: var(--shadow);
}

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

.meta-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1rem;
}

.meta-item {
    padding: 0.85rem;
    border-radius: 0.9rem;
    background: rgba(2, 6, 23, 0.54);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.meta-label {
    color: var(--dim);
    font-size: 0.78rem;
    margin-bottom: 0.25rem;
}

.meta-value {
    color: #f8fafc;
    font-weight: 800;
}

.prose-box {
    color: #cbd5e1;
    line-height: 2;
    font-size: 1rem;
}

.prose-box h2 {
    margin: 0 0 1rem;
    color: white;
    font-size: 1.55rem;
    font-weight: 900;
}

.prose-box p {
    margin: 0 0 1.15rem;
}

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

.footer-inner {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2.4rem 0;
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 0.8fr;
    gap: 2rem;
}

.footer-inner p,
.footer-inner a {
    color: #94a3b8;
    line-height: 1.8;
}

.footer-title {
    color: white;
    font-weight: 900;
    margin-bottom: 0.8rem;
}

.footer-links {
    display: grid;
    gap: 0.45rem;
}

.footer-links a:hover {
    color: #fbbf24;
}

.copyright {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1.2rem 0 2rem;
    color: #64748b;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    font-size: 0.92rem;
}

.hidden-by-filter {
    display: none !important;
}

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

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

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

@media (max-width: 860px) {
    body.inner-page {
        padding-top: 4rem;
    }

    .header-inner {
        height: 4rem;
    }

    .desktop-nav {
        display: none;
    }

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

    .logo-mark {
        width: 2.25rem;
        height: 2.25rem;
        border-radius: 0.75rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 7rem 0 6rem;
        align-items: end;
    }

    .hero-poster-panel {
        max-width: 24rem;
    }

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

    .wide-grid,
    .detail-layout,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .rank-row {
        grid-template-columns: 3.4rem 7rem minmax(0, 1fr);
    }

    .rank-meta {
        grid-column: 3 / 4;
        justify-self: start;
    }
}

@media (max-width: 640px) {
    .movie-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .section-head {
        display: block;
    }

    .rank-row {
        grid-template-columns: 2.8rem 5.8rem minmax(0, 1fr);
        gap: 0.75rem;
    }

    .rank-num {
        font-size: 1.25rem;
    }

    .rank-title {
        font-size: 1rem;
    }

    .rank-desc {
        -webkit-line-clamp: 1;
    }

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

@media (max-width: 430px) {
    .movie-grid {
        gap: 0.85rem;
    }

    .card-body {
        padding: 0.75rem;
    }

    .card-desc {
        display: none;
    }
}
