:root {
    --pink: #ec4899;
    --pink-dark: #db2777;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --purple: #8b5cf6;
    --green: #10b981;
    --yellow: #f59e0b;
    --rose: #f43f5e;
    --text: #1f2937;
    --muted: #6b7280;
    --soft: #fff7fb;
    --line: rgba(236, 72, 153, 0.14);
    --shadow: 0 24px 60px rgba(236, 72, 153, 0.16);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(135deg, #fff1f8 0%, #ffffff 46%, #fff7ed 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, rgba(253, 242, 248, 0.94), rgba(255, 247, 237, 0.94));
    box-shadow: 0 10px 34px rgba(236, 72, 153, 0.14);
    backdrop-filter: blur(18px);
}

.nav-shell {
    max-width: 1280px;
    height: 72px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: transparent;
    background: linear-gradient(90deg, var(--pink), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
}

.brand {
    font-size: 26px;
    white-space: nowrap;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: 0 12px 24px rgba(236, 72, 153, 0.28);
    font-size: 15px;
}

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

.nav-link,
.mobile-link {
    font-weight: 700;
    color: #4b5563;
    transition: color 0.2s ease, transform 0.2s ease;
}

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

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(236, 72, 153, 0.18);
    border-radius: 999px;
}

.nav-search input,
.mobile-search input,
.large-search input {
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
}

.nav-search input {
    width: 190px;
    padding: 8px 10px 8px 14px;
}

.nav-search button,
.mobile-search button,
.large-search button {
    border: 0;
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--orange));
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-search button {
    padding: 8px 15px;
}

.nav-search button:hover,
.mobile-search button:hover,
.large-search button:hover,
.primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(236, 72, 153, 0.24);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 28px;
    margin-left: auto;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    padding: 0 24px 20px;
    border-top: 1px solid rgba(236, 72, 153, 0.12);
}

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

.mobile-search {
    display: flex;
    gap: 8px;
    padding: 8px;
    margin: 14px 0;
    background: #ffffff;
    border-radius: 18px;
}

.mobile-search input {
    flex: 1;
    padding: 10px 12px;
}

.mobile-search button {
    padding: 10px 16px;
}

.mobile-link {
    display: block;
    padding: 13px 0;
}

.content-shell {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

.hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 20%, rgba(236, 72, 153, 0.18), transparent 28%),
        radial-gradient(circle at 88% 78%, rgba(249, 115, 22, 0.18), transparent 30%),
        linear-gradient(135deg, #fff1f8, #ffffff 48%, #fff7ed);
}

.hero-inner {
    width: min(1280px, calc(100% - 40px));
    min-height: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(44px, 7vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.08em;
    color: transparent;
    background: linear-gradient(90deg, var(--pink-dark), var(--orange-dark));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-copy p,
.page-hero p {
    margin: 24px 0 0;
    max-width: 680px;
    color: #4b5563;
    font-size: clamp(18px, 2.2vw, 25px);
    line-height: 1.7;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 22px;
    border: 1px solid rgba(236, 72, 153, 0.22);
    border-radius: 999px;
    color: var(--pink-dark);
    background: rgba(255, 255, 255, 0.72);
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(236, 72, 153, 0.12);
}

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

.primary-action,
.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.primary-action {
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--orange));
}

.secondary-action {
    color: var(--pink-dark);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(236, 72, 153, 0.18);
}

.secondary-action:hover {
    transform: translateY(-2px);
    border-color: rgba(236, 72, 153, 0.38);
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hero-chips a {
    padding: 10px 14px;
    color: #374151;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, color 0.2s ease;
}

.hero-chips a:hover {
    color: var(--pink);
    transform: translateY(-2px);
}

.hero-stage {
    position: relative;
    min-height: 500px;
}

.hero-slider {
    position: relative;
    height: 500px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(236, 72, 153, 0.24);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(249, 115, 22, 0.12));
}

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

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

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

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.78));
}

.hero-slide-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 34px;
    color: #ffffff;
}

.hero-slide-copy span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 12px;
    background: rgba(236, 72, 153, 0.86);
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
}

.hero-slide-copy strong {
    display: block;
    font-size: 30px;
    line-height: 1.18;
    margin-bottom: 10px;
}

.hero-slide-copy p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
}

.hero-slide-copy a {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--pink-dark);
    font-weight: 900;
}

.hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    display: flex;
    justify-content: center;
    gap: 9px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.24);
    cursor: pointer;
}

.hero-dot.active {
    width: 34px;
    background: linear-gradient(90deg, var(--pink), var(--orange));
}

.hero-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(14px);
    opacity: 0.46;
}

.hero-glow-a {
    left: -90px;
    top: 80px;
    background: rgba(236, 72, 153, 0.16);
}

.hero-glow-b {
    right: -90px;
    bottom: 70px;
    background: rgba(249, 115, 22, 0.18);
}

.home-sections {
    padding: 56px 0;
    display: grid;
    gap: 64px;
}

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

.section-heading div {
    min-width: 0;
}

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

.section-heading p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(236, 72, 153, 0.14);
    font-size: 24px;
}

.section-more {
    white-space: nowrap;
    padding: 10px 16px;
    color: var(--pink-dark);
    background: #ffffff;
    border: 1px solid rgba(236, 72, 153, 0.16);
    border-radius: 999px;
    font-weight: 900;
}

.soft-panel {
    padding: clamp(24px, 4vw, 40px);
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.blue-panel {
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.purple-panel {
    background: linear-gradient(135deg, #faf5ff, #fdf2f8);
}

.green-panel {
    background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
}

.featured-grid,
.movie-grid {
    display: grid;
    gap: 24px;
}

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

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

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

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

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(31, 41, 55, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card-link:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 28px 64px rgba(236, 72, 153, 0.22);
}

.poster-wrap {
    position: relative;
    display: block;
    height: 270px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(249, 115, 22, 0.12));
}

.movie-card-featured .poster-wrap {
    height: 420px;
}

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

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

.poster-shade {
    position: absolute;
    inset: auto 0 0;
    height: 58%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
}

.poster-play {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-dark);
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.movie-card-body {
    display: block;
    padding: 18px;
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 13px;
}

.movie-meta b {
    color: var(--pink-dark);
}

.movie-meta i,
.movie-card-body em,
.compact-body em,
.compact-body small {
    font-style: normal;
}

.movie-card-body strong {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 48px;
    overflow: hidden;
    font-size: 18px;
    line-height: 1.35;
}

.movie-card-featured .movie-card-body strong {
    font-size: 24px;
    min-height: 64px;
}

.movie-card-body em {
    display: block;
    margin-top: 9px;
    color: var(--orange-dark);
    font-weight: 800;
    font-size: 13px;
}

.movie-one-line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.rank-badge {
    position: absolute;
    z-index: 3;
    top: -10px;
    left: -10px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    font-weight: 900;
    box-shadow: 0 14px 24px rgba(249, 115, 22, 0.22);
}

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

.category-grid.large {
    padding: 50px 0 18px;
}

.category-tile {
    min-height: 210px;
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 44px rgba(31, 41, 55, 0.10);
    border: 1px solid rgba(236, 72, 153, 0.10);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 58px rgba(236, 72, 153, 0.18);
}

.category-icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 18px;
    font-size: 30px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.16), rgba(249, 115, 22, 0.16));
}

.category-tile strong,
.category-tile em,
.category-tile small {
    display: block;
}

.category-tile strong {
    font-size: 21px;
    margin-bottom: 8px;
}

.category-tile em {
    color: var(--muted);
    font-style: normal;
    line-height: 1.65;
}

.category-tile small {
    margin-top: 16px;
    color: var(--pink-dark);
    font-weight: 900;
}

.rank-list,
.related-list {
    display: grid;
    gap: 16px;
}

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

.compact-link {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    transition: transform 0.2s ease, background 0.2s ease;
}

.compact-link:hover {
    transform: translateX(4px);
    background: #ffffff;
}

.compact-poster {
    height: 74px;
    border-radius: 13px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(249, 115, 22, 0.12));
}

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

.compact-body {
    min-width: 0;
}

.compact-body strong {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.compact-body em,
.compact-body small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.page-main {
    min-height: 70vh;
}

.page-hero {
    position: relative;
    padding: 72px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 30%, rgba(236, 72, 153, 0.16), transparent 30%),
        radial-gradient(circle at 86% 64%, rgba(249, 115, 22, 0.14), transparent 32%),
        linear-gradient(135deg, #fff1f8, #ffffff 48%, #fff7ed);
}

.small-hero h1 {
    font-size: clamp(42px, 7vw, 68px);
}

.category-hero .content-shell,
.ranking-hero .content-shell,
.search-hero .content-shell {
    position: relative;
    z-index: 2;
}

.compact-actions {
    margin-top: 24px;
}

.category-list,
.search-results {
    padding-bottom: 50px;
}

.filter-panel {
    position: sticky;
    top: 86px;
    z-index: 40;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px;
    margin: 28px 0;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(31, 41, 55, 0.08);
    backdrop-filter: blur(18px);
}

.filter-chip,
.filter-panel select {
    border: 1px solid rgba(236, 72, 153, 0.15);
    border-radius: 999px;
    background: #ffffff;
    color: #4b5563;
    padding: 10px 14px;
    font-weight: 800;
    cursor: pointer;
}

.filter-chip.active {
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--orange));
}

.large-search {
    max-width: 680px;
    display: flex;
    gap: 10px;
    padding: 9px;
    margin-top: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(236, 72, 153, 0.16);
    border-radius: 999px;
    box-shadow: 0 18px 44px rgba(236, 72, 153, 0.12);
}

.large-search input {
    flex: 1;
    padding: 14px 18px;
}

.large-search button {
    padding: 0 28px;
}

.detail-main {
    padding: 34px 0 60px;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
}

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

.breadcrumb a {
    color: var(--pink-dark);
    font-weight: 800;
}

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

.detail-primary,
.detail-side {
    display: grid;
    gap: 24px;
}

.player-card,
.detail-card,
.related-card,
.side-poster {
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 20px 52px rgba(31, 41, 55, 0.10);
    overflow: hidden;
}

.player-shell {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
    cursor: pointer;
}

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

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 5;
    padding: 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #111827;
    cursor: pointer;
}

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

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.62;
}

.big-play {
    position: absolute;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-dark);
    background: #ffffff;
    font-size: 30px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.detail-card {
    padding: clamp(24px, 4vw, 36px);
}

.detail-card h1 {
    margin: 0 0 18px;
    font-size: clamp(30px, 5vw, 46px);
    letter-spacing: -0.05em;
}

.detail-card h2,
.related-card h2 {
    margin: 28px 0 12px;
    font-size: 22px;
}

.detail-card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.88;
    font-size: 17px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.detail-meta span,
.tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fdf2f8;
    color: var(--pink-dark);
    font-weight: 800;
    font-size: 14px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 4px;
}

.side-poster {
    position: relative;
}

.side-poster img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(249, 115, 22, 0.12));
}

.side-poster div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    color: #ffffff;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.side-poster strong,
.side-poster span {
    display: block;
}

.side-poster strong {
    font-size: 24px;
    line-height: 1.25;
}

.side-poster span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
}

.related-card {
    padding: 22px;
}

.related-card h2 {
    margin-top: 0;
}

.site-footer {
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-shell {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    padding: 48px 0;
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 32px;
}

.footer-brand {
    font-size: 24px;
    margin-bottom: 16px;
}

.site-footer p {
    margin: 12px 0 0;
    max-width: 420px;
    line-height: 1.8;
    color: #9ca3af;
}

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

.site-footer a:not(.footer-brand) {
    display: block;
    margin: 10px 0;
    color: #d1d5db;
    transition: color 0.2s ease;
}

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

.copyright {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    padding: 20px 0 34px;
    color: #9ca3af;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

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

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

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

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

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

    .detail-side {
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    }
}

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

    .menu-toggle {
        display: block;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 64px 0 90px;
    }

    .hero-stage {
        min-height: 420px;
    }

    .hero-slider {
        height: 420px;
    }

    .footer-shell {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .nav-shell {
        height: 66px;
        padding: 0 18px;
    }

    .brand {
        font-size: 21px;
    }

    .content-shell,
    .hero-inner,
    .footer-shell,
    .copyright {
        width: min(100% - 28px, 1280px);
    }

    .hero {
        min-height: auto;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 42px;
    }

    .hero-copy p,
    .page-hero p {
        font-size: 17px;
    }

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

    .primary-action,
    .secondary-action,
    .large-search button {
        width: 100%;
    }

    .movie-grid.four,
    .movie-grid.six,
    .category-grid,
    .featured-grid,
    .detail-side,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .poster-wrap {
        height: 360px;
    }

    .movie-card-featured .poster-wrap {
        height: 400px;
    }

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

    .filter-panel {
        top: 76px;
        max-height: 56vh;
        overflow: auto;
    }

    .side-poster img {
        height: 420px;
    }
}
