:root {
    --rose-500: #f43f5e;
    --pink-500: #ec4899;
    --orange-500: #f97316;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --soft-border: rgba(244, 63, 94, 0.16);
    --card-shadow: 0 20px 45px rgba(244, 63, 94, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
}

img {
    display: block;
    max-width: 100%;
    background: linear-gradient(135deg, #ffe4e6, #fff7ed);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.logo-mark {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500), var(--orange-500));
    box-shadow: 0 12px 28px rgba(244, 63, 94, 0.28);
    font-size: 0.9rem;
    transform: translateZ(0);
}

.logo-mark.small {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.7rem;
}

.nav-link,
.mobile-nav-link {
    color: #374151;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: var(--rose-500);
}

.nav-search-form {
    display: flex;
    align-items: center;
}

.nav-search-input {
    width: 12rem;
    padding: 0.55rem 2.6rem 0.55rem 1rem;
    border: 1px solid #fecdd3;
    border-radius: 999px;
    outline: none;
    background: rgba(255, 255, 255, 0.82);
    transition: width 0.25s ease, box-shadow 0.25s ease;
}

.nav-search-input:focus {
    width: 14rem;
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.18);
}

.nav-search-button {
    position: absolute;
    right: 0.35rem;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
}

.mobile-menu-button {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
}

.menu-icon-line {
    width: 1.25rem;
    height: 2px;
    background: #374151;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-panel {
    display: none;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid #ffe4e6;
}

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

.mobile-search-form {
    display: flex;
    gap: 0.5rem;
}

.mobile-search-input,
.search-page-input,
.quick-filter-input,
.filter-select {
    width: 100%;
    border: 1px solid #fecdd3;
    border-radius: 1rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    outline: none;
}

.mobile-search-input:focus,
.search-page-input:focus,
.quick-filter-input:focus,
.filter-select:focus {
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.18);
}

.mobile-search-button,
.search-page-button {
    border-radius: 1rem;
    padding: 0.85rem 1.2rem;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
    white-space: nowrap;
}

.hero-carousel {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: linear-gradient(120deg, #ffe4e6, #fce7f3, #ffedd5);
}

.hero-slides,
.hero-slide {
    min-height: 620px;
}

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

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

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 241, 242, 0.98) 0%, rgba(255, 241, 242, 0.82) 43%, rgba(255, 241, 242, 0.28) 100%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.1));
}

.hero-slide-inner {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 3rem;
}

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

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    color: var(--rose-500);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
    font-weight: 900;
    line-height: 1.05;
    color: var(--text-main);
}

.hero-copy h1 {
    font-size: clamp(2.7rem, 6vw, 5.7rem);
    max-width: 780px;
    background: linear-gradient(135deg, #e11d48, #db2777, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    margin-top: 1.25rem;
    font-size: 1.16rem;
    line-height: 1.8;
    color: #4b5563;
}

.hero-tags,
.detail-tags,
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.hero-tags span,
.tag-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #be123c;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid #fecdd3;
    padding: 0.3rem 0.72rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.tag-pill.large {
    padding: 0.45rem 0.9rem;
    font-size: 0.9rem;
}

.hero-actions,
.detail-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}

.hero-primary,
.hero-secondary,
.section-more,
.category-enter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500), var(--orange-500));
    padding: 0.9rem 1.45rem;
    box-shadow: 0 18px 36px rgba(244, 63, 94, 0.28);
}

.hero-secondary {
    color: #be123c;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.9rem 1.45rem;
    border: 1px solid #fecdd3;
}

.hero-primary:hover,
.hero-secondary:hover,
.section-more:hover,
.category-enter:hover {
    transform: translateY(-2px);
}

.hero-poster-card {
    position: relative;
    display: block;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(136, 19, 55, 0.22);
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.hero-poster-card:hover {
    transform: rotate(0deg) scale(1.03);
}

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

.hero-poster-card span {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(244, 63, 94, 0.92);
    padding: 0.5rem 0.85rem;
    font-size: 0.86rem;
    font-weight: 800;
}

.hero-control {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    color: #be123c;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 30px rgba(244, 63, 94, 0.18);
    transform: translateY(-50%);
}

.hero-prev {
    left: 1rem;
}

.hero-next {
    right: 1rem;
}

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

.hero-dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: rgba(190, 18, 60, 0.22);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 2rem;
    background: var(--rose-500);
}

.hero-glow {
    position: absolute;
    z-index: 1;
    width: 28rem;
    height: 28rem;
    border-radius: 999px;
    filter: blur(64px);
    opacity: 0.25;
    animation: floatGlow 6s ease-in-out infinite alternate;
}

.hero-glow-left {
    top: -8rem;
    left: -7rem;
    background: #fb7185;
}

.hero-glow-right {
    right: -8rem;
    bottom: -8rem;
    background: #fdba74;
}

@keyframes floatGlow {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(1.5rem, -1rem, 0) scale(1.08);
    }
}

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

.section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--text-main);
}

.section-more {
    color: var(--rose-500);
    background: #ffffff;
    border: 1px solid #fecdd3;
    padding: 0.65rem 1rem;
    box-shadow: 0 10px 25px rgba(244, 63, 94, 0.1);
}

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

.movie-card {
    border-radius: 1.1rem;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 16px 35px rgba(17, 24, 39, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-0.35rem);
    box-shadow: var(--card-shadow);
}

.movie-card-link {
    display: block;
    height: 100%;
}

.movie-cover {
    background: #fff1f2;
}

.cover-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.02) 60%);
}

.cover-category {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(244, 63, 94, 0.9);
    padding: 0.3rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 800;
}

.cover-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-500);
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.quick-filter-panel,
.filter-toolbar {
    margin-bottom: 1.75rem;
    padding: 1rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--soft-border);
    box-shadow: 0 12px 28px rgba(244, 63, 94, 0.08);
}

.filter-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 12rem 12rem;
    gap: 0.8rem;
}

.quick-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.8rem;
}

.quick-filter-tags button {
    border-radius: 999px;
    color: #be123c;
    background: #ffffff;
    border: 1px solid #fecdd3;
    padding: 0.45rem 0.75rem;
    font-size: 0.84rem;
    font-weight: 700;
}

.quick-filter-tags button.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
}

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

.category-tile,
.category-overview-card,
.content-panel {
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--soft-border);
    box-shadow: 0 14px 32px rgba(244, 63, 94, 0.09);
}

.category-tile {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-0.35rem);
    box-shadow: var(--card-shadow);
}

.category-icon {
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--rose-500), var(--orange-500));
}

.category-icon.large {
    width: 5rem;
    height: 5rem;
    font-size: 1.8rem;
}

.category-tile h3 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-main);
}

.category-tile p,
.category-tile span {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.page-hero {
    padding: 4.5rem 0;
    background: linear-gradient(120deg, #ffe4e6, #fce7f3, #ffedd5);
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
}

.page-hero p {
    color: #4b5563;
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

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

.category-overview-card {
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-overview-link {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    min-height: 230px;
}

.category-image-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #fff1f2, #ffedd5);
}

.category-image-stack img {
    width: 100%;
    height: 95px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.category-overview-body {
    padding: 1.5rem;
}

.category-overview-body h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    margin: 0.5rem 0;
}

.category-overview-body p {
    color: var(--text-muted);
    line-height: 1.7;
}

.category-count {
    display: inline-flex;
    border-radius: 999px;
    color: #be123c;
    background: #ffe4e6;
    padding: 0.3rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 800;
}

.category-count.inline {
    margin-top: 0.75rem;
}

.category-samples {
    margin-top: 0.75rem;
    font-size: 0.88rem;
}

.category-enter {
    margin-top: 1rem;
    color: var(--rose-500);
}

.breadcrumb-link,
.detail-breadcrumb a {
    color: #be123c;
    font-weight: 700;
}

.category-title-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.2rem;
}

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

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

.rank-card {
    display: grid;
    grid-template-columns: 4rem 7rem minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 0.9rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--soft-border);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--card-shadow);
}

.rank-number {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--rose-500), var(--orange-500));
}

.rank-poster {
    width: 7rem;
    height: 4.4rem;
    object-fit: cover;
    border-radius: 0.9rem;
}

.rank-title {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--text-main);
    transition: color 0.2s ease;
}

.rank-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.3rem;
}

.rank-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    color: #9ca3af;
    font-size: 0.8rem;
    margin-top: 0.45rem;
}

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

.detail-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(24px) saturate(1.15);
    transform: scale(1.08);
    opacity: 0.45;
}

.detail-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.58), rgba(255, 241, 242, 0.35));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.detail-breadcrumb {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    color: #fecdd3;
    margin-bottom: 2rem;
}

.detail-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 1.6rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

.detail-info h1 {
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.detail-one-line {
    max-width: 760px;
    margin-top: 1rem;
    color: #f3f4f6;
    font-size: 1.15rem;
    line-height: 1.8;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.detail-meta span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 0.42rem 0.8rem;
    font-weight: 700;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    background: #111827;
    box-shadow: 0 30px 70px rgba(17, 24, 39, 0.2);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    color: #ffffff;
    font-weight: 900;
    font-size: 1.05rem;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.12), rgba(17, 24, 39, 0.48));
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.player-play-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-500);
    background: rgba(255, 255, 255, 0.92);
    font-size: 2rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.content-panel {
    padding: 2rem;
}

.content-panel h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-panel h2:first-child {
    margin-top: 0;
}

.content-panel p {
    color: #4b5563;
    line-height: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.stats-grid div {
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #fff1f2, #ffedd5);
}

.stats-grid strong {
    display: block;
    font-size: 2rem;
    color: var(--rose-500);
}

.stats-grid span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.search-page-form {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--soft-border);
    box-shadow: 0 12px 28px rgba(244, 63, 94, 0.08);
}

.search-summary {
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-weight: 700;
}

.footer-title {
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.footer-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--rose-500);
}

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

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

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

    .hero-slide-inner {
        grid-template-columns: minmax(0, 1fr) 280px;
    }

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

@media (max-width: 768px) {
    .mobile-menu-button {
        display: flex;
    }

    .hero-carousel,
    .hero-slides,
    .hero-slide,
    .hero-slide-inner {
        min-height: 760px;
    }

    .hero-slide-inner,
    .detail-layout,
    .category-overview-link {
        grid-template-columns: 1fr;
    }

    .hero-poster-card {
        max-width: 230px;
        margin: 0 auto 2.5rem;
        order: -1;
    }

    .hero-copy h1 {
        font-size: 2.8rem;
    }

    .hero-control {
        display: none;
    }

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

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

    .category-overview-grid,
    .category-tile-grid {
        grid-template-columns: 1fr;
    }

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

    .rank-card {
        grid-template-columns: 3rem 5rem minmax(0, 1fr);
        gap: 0.75rem;
    }

    .rank-poster {
        width: 5rem;
        height: 3.5rem;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .search-page-form {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .movie-grid {
        grid-template-columns: 1fr;
    }

    .hero-carousel,
    .hero-slides,
    .hero-slide,
    .hero-slide-inner {
        min-height: 820px;
    }

    .content-panel {
        padding: 1.25rem;
    }
}
