:root {
  --fog-50: #f8f9fa;
  --fog-100: #f1f3f5;
  --fog-200: #e9ecef;
  --fog-300: #dee2e6;
  --fog-400: #ced4da;
  --fog-500: #adb5bd;
  --fog-600: #868e96;
  --fog-700: #495057;
  --fog-800: #343a40;
  --fog-900: #212529;
  --steel-50: #eef4fa;
  --steel-100: #d9e2ec;
  --steel-200: #bcccdc;
  --steel-300: #9fb3c8;
  --steel-400: #829ab1;
  --steel-500: #627d98;
  --steel-600: #486581;
  --steel-700: #334e68;
  --steel-800: #243b53;
  --accent: #fb923c;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.18);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--fog-50);
  color: var(--fog-900);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, 1408px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--fog-200);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--steel-600), var(--steel-800));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.brand-text {
  font-size: 1.28rem;
  color: var(--fog-900);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--fog-700);
  font-weight: 520;
}

.desktop-nav a,
.nav-dropdown button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.nav-dropdown:hover button {
  color: var(--steel-600);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 190px;
  padding: 8px;
  border: 1px solid var(--fog-200);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

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

.nav-dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav-dropdown-panel a:hover {
  background: var(--fog-50);
}

.header-search,
.mobile-search,
.quick-search-form,
.search-page-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.quick-search-form input,
.search-page-form input,
.filter-panel input,
.filter-panel select {
  min-width: 0;
  border: 1px solid var(--fog-300);
  border-radius: 12px;
  background: var(--white);
  color: var(--fog-900);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 240px;
  padding: 10px 12px;
}

.header-search button,
.mobile-search button,
.quick-search-form button,
.search-page-form button {
  border: 0;
  border-radius: 12px;
  background: var(--steel-600);
  color: var(--white);
  padding: 10px 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.quick-search-form button:hover,
.search-page-form button:hover,
.btn-primary:hover {
  background: var(--steel-700);
}

.header-search input:focus,
.mobile-search input:focus,
.quick-search-form input:focus,
.search-page-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(98, 125, 152, 0.24);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  background: var(--fog-100);
  padding: 0 11px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  background: var(--fog-700);
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid var(--fog-200);
}

.mobile-panel.is-open {
  display: grid;
  gap: 8px;
  animation: slideDown 0.22s ease;
}

.mobile-panel a {
  border-radius: 12px;
  padding: 11px 14px;
  color: var(--fog-700);
}

.mobile-panel a:hover {
  background: var(--fog-100);
}

@keyframes slideDown {
  from {
    transform: translateY(-8px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero {
  position: relative;
  height: 72vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--fog-900);
}

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

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transform: scale(1.02);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 28%, rgba(251, 146, 60, 0.20), transparent 28%),
    linear-gradient(to top, rgba(33, 37, 41, 1) 3%, rgba(33, 37, 41, 0.70) 45%, rgba(33, 37, 41, 0.18));
}

.hero-content {
  position: absolute;
  inset: auto 0 0 0;
  padding-bottom: clamp(54px, 9vh, 108px);
  color: var(--white);
}

.hero-content > * {
  max-width: 780px;
}

.hero-kicker,
.detail-kicker,
.page-hero p {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 650;
}

.hero-content h1,
.hero-content h2 {
  margin: 0 0 20px;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero-content p {
  margin: 0 0 30px;
  color: var(--fog-200);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.hero-actions,
.detail-tags,
.detail-meta,
.card-meta,
.tag-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 620;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--steel-600);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover,
.btn-line:hover {
  background: rgba(255, 255, 255, 0.24);
}

.btn-line {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

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

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

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

.quick-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 560px);
  gap: 28px;
  align-items: center;
  margin-top: -42px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.quick-search h2 {
  margin: 0 0 8px;
  font-size: clamp(1.3rem, 2vw, 2rem);
  letter-spacing: -0.04em;
}

.quick-search p {
  margin: 0;
  color: var(--fog-600);
}

.quick-search-form input,
.search-page-form input {
  flex: 1;
  padding: 14px 16px;
}

.quick-search-form button,
.search-page-form button {
  padding: 14px 20px;
}

.page-section {
  padding-block: clamp(54px, 8vw, 92px);
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  letter-spacing: -0.05em;
}

.section-more,
.text-link {
  color: var(--steel-600);
  font-weight: 650;
}

.section-more:hover,
.text-link:hover {
  color: var(--steel-700);
}

.center-head {
  text-align: center;
  align-items: center;
  flex-direction: column;
}

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

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

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

.large-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.poster-wrap,
.movie-cover-link,
.large-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--fog-200);
}

.poster-wrap {
  height: 260px;
}

.poster-wrap img,
.movie-cover-link img,
.large-cover img,
.overview-cover img,
.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover img,
.overview-card:hover img,
.category-tile:hover img {
  transform: scale(1.055);
}

.poster-overlay,
.large-shade,
.category-tile span,
.detail-backdrop span {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent 62%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-overlay {
  opacity: 1;
}

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

.card-meta {
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--fog-500);
  font-size: 0.78rem;
}

.card-meta a {
  border-radius: 999px;
  background: var(--steel-50);
  color: var(--steel-600);
  padding: 4px 9px;
  font-weight: 650;
}

.movie-card h3 {
  margin: 0 0 9px;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--fog-900);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.movie-card h3 a:hover {
  color: var(--steel-600);
}

.movie-card p {
  margin: 0;
  color: var(--fog-600);
  font-size: 0.92rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.tag-line {
  margin-top: 14px;
}

.tag-line span {
  border-radius: 999px;
  background: var(--fog-100);
  color: var(--fog-600);
  padding: 4px 8px;
  font-size: 0.76rem;
}

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  min-height: 170px;
}

.movie-cover-link {
  min-height: 170px;
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(33, 37, 41, 0.84);
  color: var(--white);
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.movie-card-large {
  min-height: 430px;
}

.large-cover {
  height: 430px;
  color: var(--white);
}

.large-shade {
  opacity: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.22), transparent);
}

.large-content {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 10px;
  padding: 24px;
}

.large-content strong {
  font-size: 1.45rem;
  line-height: 1.2;
}

.large-content em {
  color: var(--fog-200);
  font-style: normal;
  line-height: 1.6;
}

.pill-light {
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  padding: 6px 12px;
  font-size: 0.78rem;
  backdrop-filter: blur(8px);
}

.split-bg {
  background: var(--white);
}

.dark-section {
  background: var(--fog-900);
  color: var(--white);
}

.dark-section .section-more {
  color: var(--steel-300);
}

.dark-section .movie-card {
  background: var(--white);
  color: var(--fog-900);
}

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

.horizontal-list,
.ranking-list {
  display: grid;
  gap: 18px;
}

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

.category-tile {
  position: relative;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.category-tile span {
  opacity: 1;
  background: linear-gradient(135deg, rgba(72, 101, 129, 0.78), rgba(33, 37, 41, 0.54));
}

.category-tile strong,
.category-tile em {
  position: absolute;
  left: 18px;
  right: 18px;
}

.category-tile strong {
  bottom: 52px;
  font-size: 1.18rem;
}

.category-tile em {
  bottom: 20px;
  color: var(--fog-200);
  font-size: 0.86rem;
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-footer {
  margin-top: 70px;
  background: var(--fog-900);
  color: var(--fog-300);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 42px;
  padding-block: 56px;
}

.footer-brand {
  margin-bottom: 16px;
  color: var(--fog-100);
  font-size: 1.35rem;
}

.footer-main p {
  max-width: 520px;
  color: var(--fog-400);
  line-height: 1.75;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--fog-100);
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--steel-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  color: var(--fog-500);
  text-align: center;
  font-size: 0.9rem;
}

.inner-page {
  min-height: 60vh;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(251, 146, 60, 0.18), transparent 28%),
    linear-gradient(135deg, var(--fog-900), var(--steel-800));
  color: var(--white);
  padding: clamp(58px, 9vw, 108px) 0;
}

.page-hero h1 {
  max-width: 880px;
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.page-hero span {
  display: block;
  max-width: 760px;
  color: var(--fog-200);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.overview-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.overview-cover {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  color: var(--white);
}

.overview-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.overview-cover span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: 650;
}

.overview-body {
  padding: 24px;
}

.overview-body h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.overview-body p {
  margin: 0 0 16px;
  color: var(--fog-600);
  line-height: 1.7;
}

.overview-body ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.overview-body li a {
  color: var(--fog-700);
}

.overview-body li a:hover {
  color: var(--steel-600);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 190px 160px;
  gap: 12px;
  margin-bottom: 26px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.filter-panel input,
.filter-panel select {
  padding: 12px 14px;
}

.search-page-form {
  max-width: 860px;
  margin: 0 auto 30px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  background: var(--fog-900);
  color: var(--white);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: blur(2px);
}

.detail-backdrop span {
  opacity: 1;
  background: linear-gradient(to top, var(--fog-900), rgba(33, 37, 41, 0.72), rgba(33, 37, 41, 0.48));
}

.detail-hero-inner {
  position: relative;
  padding-block: 42px 58px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--fog-300);
  font-size: 0.92rem;
}

.breadcrumb a:hover {
  color: var(--white);
}

.detail-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

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

.detail-info h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.detail-one-line {
  max-width: 900px;
  margin: 0 0 20px;
  color: var(--fog-200);
  font-size: 1.12rem;
  line-height: 1.75;
}

.detail-meta span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  padding: 7px 12px;
  color: var(--fog-100);
  font-size: 0.9rem;
  backdrop-filter: blur(6px);
}

.detail-tags {
  margin-top: 18px;
}

.detail-tags a {
  border-radius: 999px;
  background: rgba(251, 146, 60, 0.16);
  color: #fed7aa;
  padding: 7px 12px;
  font-size: 0.88rem;
}

.player-section {
  margin-top: -32px;
  position: relative;
  z-index: 2;
}

.player-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #05070a;
}

.player-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #05070a;
}

.player-cover {
  position: absolute;
  inset: 0;
  border: 0;
  background: #05070a;
  padding: 0;
  color: var(--white);
  display: grid;
  place-items: center;
  z-index: 3;
}

.player-cover.is-hidden {
  display: none;
}

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.play-circle {
  position: relative;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 999px;
  background: rgba(72, 101, 129, 0.88);
  box-shadow: var(--shadow-lg);
  font-size: 2.1rem;
  line-height: 1;
  padding-left: 5px;
}

.player-caption {
  padding: 24px;
}

.player-caption h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.player-caption p {
  margin: 0;
  color: var(--fog-600);
  line-height: 1.7;
}

.detail-content article {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: clamp(24px, 4vw, 42px);
}

.detail-content h2 {
  margin: 0 0 14px;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.detail-content h2:not(:first-child) {
  margin-top: 32px;
}

.detail-content p {
  margin: 0;
  color: var(--fog-700);
  font-size: 1.04rem;
  line-height: 1.9;
}

.is-filtered-out {
  display: none !important;
}

.empty-state {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  background: var(--white);
  padding: 42px;
  color: var(--fog-600);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

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

  .mobile-toggle {
    display: flex;
  }

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

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

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1408px);
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .hero {
    min-height: 620px;
    height: 78vh;
  }

  .hero-content {
    padding-bottom: 72px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 310px;
  }

  .quick-search {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .quick-search-form,
  .search-page-form {
    flex-direction: column;
    align-items: stretch;
  }

  .three-col,
  .four-col,
  .large-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal {
    grid-template-columns: 1fr;
  }

  .movie-cover-link {
    height: 220px;
  }

  .overview-card {
    grid-template-columns: 1fr;
  }

  .overview-cover {
    min-height: 220px;
  }

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

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

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

  .detail-info h1 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

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