:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: #0f172a;
    --panel-soft: #111c31;
    --panel-light: #1e293b;
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --emerald: #10b981;
    --emerald-dark: #059669;
    --cyan: #22d3ee;
    --rose: #fb7185;
    --amber: #f59e0b;
    --line: rgba(148, 163, 184, 0.18);
    --shadow: 0 24px 60px rgba(2, 6, 23, 0.55);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(16, 185, 129, 0.14), transparent 34rem), linear-gradient(180deg, #020617 0%, #0f172a 52%, #020617 100%);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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

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

img.image-missing {
    opacity: 0;
}

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.96));
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    color: white;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.38);
    font-size: 15px;
}

.brand-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, #6ee7b7, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand.compact .brand-mark {
    width: 32px;
    height: 32px;
}

.brand.compact .brand-text {
    font-size: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 700;
    color: var(--muted-strong);
}

.nav-links > a,
.nav-menu > a {
    padding: 8px 0;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.nav-menu:hover > a {
    color: #6ee7b7;
}

.nav-menu {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 210px;
    padding: 10px;
    display: grid;
    gap: 4px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.nav-menu:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--muted-strong);
}

.nav-dropdown a:hover {
    background: rgba(30, 41, 59, 0.92);
    color: white;
}

.nav-search {
    margin-left: auto;
    width: min(320px, 28vw);
}

.nav-search input,
.search-input,
.filter-input,
.filter-select {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.22);
    outline: none;
    color: white;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 999px;
    padding: 11px 18px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-search input:focus,
.search-input:focus,
.filter-input:focus,
.filter-select:focus {
    border-color: rgba(16, 185, 129, 0.9);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.16);
    background: rgba(15, 23, 42, 0.95);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: white;
    background: rgba(30, 41, 59, 0.8);
}

.hero-slider {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 1.1s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.82) 46%, rgba(2, 6, 23, 0.22) 100%);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(0deg, #020617 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 90px 0 120px;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6ee7b7;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title {
    max-width: 760px;
    margin: 18px 0 18px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero-movie-title {
    max-width: 760px;
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 56px);
    line-height: 1.1;
}

.hero-desc {
    max-width: 680px;
    margin: 0 0 28px;
    color: #cbd5e1;
    font-size: clamp(17px, 2.2vw, 22px);
}

.hero-actions,
.inline-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-primary,
.btn-secondary,
.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    color: white;
    box-shadow: 0 16px 36px rgba(16, 185, 129, 0.32);
}

.btn-primary:hover,
.btn-light:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 42px rgba(16, 185, 129, 0.36);
}

.btn-secondary {
    color: white;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
}

.btn-light {
    background: white;
    color: #047857;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 30px;
}

.hero-meta span,
.tag-pill,
.meta-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: #d1fae5;
    font-size: 13px;
    font-weight: 800;
}

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

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

.hero-dot.is-active {
    width: 64px;
    background: var(--emerald);
}

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

.section-wrap {
    padding: 72px 0;
}

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

.section-heading h2,
.page-title h1,
.detail-title h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-heading p,
.page-title p {
    margin: 8px 0 0;
    color: var(--muted);
}

.section-more {
    color: #6ee7b7;
    font-weight: 900;
}

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

.poster-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.movie-card {
    background: rgba(15, 23, 42, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 34px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.45);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 28px 56px rgba(2, 6, 23, 0.42);
}

.card-cover {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #064e3b);
}

.compact-card .card-cover,
.poster-grid .card-cover {
    aspect-ratio: 2 / 3;
}

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

.movie-card:hover img,
.movie-list-item:hover img {
    transform: scale(1.08);
}

.card-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 58%);
    opacity: 0.7;
}

.card-type,
.card-year,
.rank-badge {
    position: absolute;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.card-type {
    top: 12px;
    left: 12px;
    background: rgba(16, 185, 129, 0.95);
    color: white;
}

.card-year {
    top: 12px;
    right: 12px;
    background: rgba(2, 6, 23, 0.72);
    color: #e2e8f0;
}

.rank-badge {
    bottom: 12px;
    left: 12px;
    min-width: 34px;
    text-align: center;
    background: linear-gradient(135deg, var(--amber), #fb7185);
    color: white;
}

.play-hover {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.play-hover span {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--emerald);
    color: white;
    box-shadow: 0 14px 35px rgba(16, 185, 129, 0.45);
}

.movie-card:hover .play-hover {
    opacity: 1;
}

.card-body {
    padding: 18px;
}

.card-body h3 {
    min-height: 3.1em;
    margin: 0 0 10px;
    color: white;
    font-size: 18px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.poster-grid .card-body h3 {
    min-height: 2.8em;
    font-size: 15px;
}

.card-body p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta,
.list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #cbd5e1;
    font-size: 13px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
    color: #64748b;
    font-size: 12px;
}

.category-band {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.82), rgba(30, 41, 59, 0.82));
    border-block: 1px solid var(--line);
}

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

.category-card {
    position: relative;
    min-height: 166px;
    padding: 24px;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(34, 211, 238, 0.72));
    box-shadow: 0 22px 45px rgba(2, 6, 23, 0.32);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:nth-child(2n) {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.88), rgba(168, 85, 247, 0.76));
}

.category-card:nth-child(3n) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.88), rgba(20, 184, 166, 0.76));
}

.category-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 60px rgba(2, 6, 23, 0.45);
}

.category-card::after {
    content: "";
    position: absolute;
    right: -36px;
    bottom: -36px;
    width: 128px;
    height: 128px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.category-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-size: 24px;
}

.category-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
}

.list-stack {
    display: grid;
    gap: 18px;
}

.movie-list-item {
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.movie-list-item:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 185, 129, 0.45);
    background: rgba(30, 41, 59, 0.78);
}

.movie-list-item a {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
}

.list-cover {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f172a, #064e3b);
}

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

.list-rank {
    position: absolute;
    top: 10px;
    left: 10px;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), #ef4444);
    color: white;
    font-weight: 900;
}

.list-info h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.list-info p {
    margin: 0 0 12px;
    color: var(--muted);
}

.list-action {
    min-width: 94px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.13);
    color: #6ee7b7;
    text-align: center;
    font-weight: 900;
}

.cta-panel,
.page-hero,
.filter-panel,
.content-panel {
    border: 1px solid rgba(148, 163, 184, 0.12);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 41, 59, 0.78));
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.cta-panel {
    padding: clamp(34px, 6vw, 64px);
    text-align: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.92), rgba(34, 211, 238, 0.72));
}

.cta-panel h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 5vw, 50px);
    letter-spacing: -0.05em;
}

.cta-panel p {
    margin: 0 auto 26px;
    max-width: 740px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

.page-hero {
    margin: 42px auto 28px;
    padding: clamp(28px, 5vw, 54px);
}

.page-title h1 {
    margin-bottom: 12px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumbs a {
    color: #6ee7b7;
}

.filter-panel {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    gap: 14px;
    margin: 0 0 28px;
    padding: 18px;
}

.filter-select {
    border-radius: 14px;
}

.empty-state {
    display: none;
    padding: 42px;
    text-align: center;
    color: var(--muted);
    background: rgba(15, 23, 42, 0.7);
    border-radius: 20px;
}

.empty-state.is-visible {
    display: block;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.8fr);
    gap: 28px;
    padding-top: 36px;
}

.player-shell {
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    box-shadow: var(--shadow);
}

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

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.18), transparent 28%), linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.18));
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.25s ease;
}

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

.big-play {
    width: 86px;
    height: 86px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald);
    color: white;
    font-size: 34px;
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.45);
    transition: transform 0.2s ease, background 0.2s ease;
}

.big-play:hover {
    transform: scale(1.08);
    background: var(--emerald-dark);
}

.detail-card,
.side-card {
    padding: 24px;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 16px 36px rgba(2, 6, 23, 0.32);
}

.detail-card {
    margin-top: 22px;
}

.detail-title h1 {
    margin: 12px 0 12px;
}

.detail-intro {
    color: var(--muted-strong);
    font-size: 18px;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.content-panel {
    margin-top: 22px;
    padding: 26px;
}

.content-panel h2,
.side-card h2 {
    margin: 0 0 16px;
    font-size: 24px;
}

.content-panel p {
    margin: 0;
    color: var(--muted-strong);
    white-space: pre-line;
}

.side-column {
    display: grid;
    align-content: start;
    gap: 22px;
}

.side-card.sticky {
    position: sticky;
    top: 96px;
}

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

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
    color: var(--muted-strong);
}

.info-row span:first-child {
    color: var(--muted);
}

.related-list {
    display: grid;
    gap: 14px;
}

.related-item {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    align-items: center;
}

.related-item .thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f172a, #064e3b);
}

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

.related-item h3 {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.35;
}

.related-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.search-hero {
    padding: 46px 0 24px;
}

.search-box-large {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-top: 24px;
}

.search-box-large .search-input {
    min-height: 54px;
    border-radius: 18px;
}

.search-box-large button {
    border: 0;
}

.site-footer {
    margin-top: 80px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.62), #020617);
    border-top: 1px solid var(--line);
}

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

.footer-brand p {
    max-width: 560px;
    margin: 14px 0 0;
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted-strong);
    font-weight: 800;
}

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

.back-top {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 16px;
    color: white;
    background: rgba(30, 41, 59, 0.82);
}

.footer-bottom {
    padding: 18px 16px 28px;
    text-align: center;
    color: #64748b;
}

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

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

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

    .side-card.sticky {
        position: static;
    }
}

@media (max-width: 820px) {
    .header-inner {
        height: auto;
        min-height: 68px;
        flex-wrap: wrap;
        padding: 12px 0;
        gap: 12px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .nav-search {
        order: 3;
        width: 100%;
        margin-left: 0;
    }

    .nav-links {
        display: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 8px 0 4px;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a,
    .nav-menu > a {
        display: block;
        padding: 10px 12px;
        border-radius: 12px;
        background: rgba(30, 41, 59, 0.52);
    }

    .nav-menu .nav-dropdown {
        position: static;
        width: 100%;
        margin-top: 4px;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(15, 23, 42, 0.62);
        box-shadow: none;
    }

    .hero-slider {
        min-height: 590px;
    }

    .hero-slide::before {
        background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.78));
    }

    .section-heading,
    .footer-inner {
        grid-template-columns: 1fr;
        display: grid;
        align-items: start;
    }

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

    .movie-list-item a {
        grid-template-columns: 132px 1fr;
    }

    .list-action {
        display: none;
    }

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

@media (max-width: 560px) {
    .brand-text {
        font-size: 20px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-movie-title {
        font-size: 32px;
    }

    .movie-grid,
    .poster-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

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

    .card-body h3 {
        min-height: auto;
    }

    .movie-list-item a {
        grid-template-columns: 1fr;
    }

    .search-box-large {
        grid-template-columns: 1fr;
    }

    .related-item {
        grid-template-columns: 96px 1fr;
    }
}
