:root {
  --color-teal: #0d9488;
  --color-cyan: #0891b2;
  --color-blue: #2563eb;
  --color-orange: #ea580c;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-500: #6b7280;
  --color-gray-700: #374151;
  --color-gray-900: #111827;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 10px 24px rgba(15, 23, 42, 0.08);
  --radius-xl: 1.25rem;
  --radius-lg: 0.9rem;
  font-family: 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(--color-gray-900);
  background: linear-gradient(180deg, var(--color-gray-50), #ffffff);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 12px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  max-width: 1180px;
  height: 4rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-gray-900);
  white-space: nowrap;
}

.site-logo__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-teal), var(--color-cyan));
  box-shadow: 0 8px 18px rgba(13, 148, 136, 0.3);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
}

.site-nav a {
  color: var(--color-gray-700);
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.mobile-nav a:hover {
  color: var(--color-teal);
}

.site-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-search input,
.mobile-search input,
.search-page__form input,
.filter-panel input,
.filter-panel select {
  border: 1px solid var(--color-gray-200);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-gray-900);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search input {
  width: 17rem;
  padding: 0.58rem 1rem;
}

.site-search input:focus,
.mobile-search input:focus,
.search-page__form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.16);
}

.site-search button,
.mobile-search button,
.search-page__form button {
  border: 0;
  border-radius: 999px;
  padding: 0.58rem 1rem;
  color: #ffffff;
  background: var(--color-teal);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-search button:hover,
.mobile-search button:hover,
.search-page__form button:hover {
  background: #0f766e;
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  color: var(--color-gray-700);
}

.mobile-nav {
  display: none;
  padding: 1rem;
  border-top: 1px solid var(--color-gray-200);
  background: #ffffff;
}

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

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

.mobile-search input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 1rem;
}

.hero-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(120deg, #0f766e 0%, #0891b2 48%, #2563eb 100%);
}

.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 25%, rgba(255, 255, 255, 0.24), transparent 30%), rgba(0, 0, 0, 0.18);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.55) 1px, transparent 1px);
  background-size: 34px 34px;
}

.hero-carousel__inner {
  position: relative;
  max-width: 1180px;
  min-height: 620px;
  margin: 0 auto;
  padding: 4rem 1rem 5rem;
}

.hero-slide {
  position: absolute;
  inset: 0 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 3rem;
  align-items: center;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-slide h1 {
  margin: 0 0 1.2rem;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero-summary {
  max-width: 45rem;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.75;
}

.hero-tags,
.tag-links,
.detail-chips,
.movie-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags a,
.tag-links a,
.detail-chips span,
.movie-card__tags span {
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.88rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--light {
  color: var(--color-teal);
  background: #ffffff;
}

.button--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
}

.hero-slide__poster {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: rotate(1.5deg);
  min-height: 420px;
}

.hero-slide__poster img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-slide__poster:hover img {
  transform: scale(1.06);
}

.hero-slide__poster span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
  font-weight: 700;
}

.hero-dots {
  position: absolute;
  left: 1rem;
  bottom: 2rem;
  display: flex;
  gap: 0.65rem;
}

.hero-dot {
  width: 2rem;
  height: 0.35rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #ffffff;
}

.content-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.content-section--soft,
.category-preview:nth-of-type(even) {
  max-width: none;
  background: linear-gradient(135deg, var(--color-gray-100), var(--color-gray-50));
}

.content-section--soft > *,
.category-preview > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  color: var(--color-gray-900);
}

.section-heading p {
  margin: 0.55rem 0 0;
  color: var(--color-gray-500);
  line-height: 1.7;
}

.section-link {
  color: var(--color-teal);
  font-weight: 800;
}

.movie-grid {
  display: grid;
  gap: 1.5rem;
}

.movie-grid--three {
  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__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10;
  background: #111827;
  box-shadow: var(--shadow-card);
}

.movie-card--large .movie-card__media {
  border-radius: var(--radius-xl);
  aspect-ratio: 16 / 9;
}

.movie-card--minimal .movie-card__media {
  aspect-ratio: 4 / 3;
}

.movie-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.movie-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.65));
}

.movie-card:hover .movie-card__media img {
  transform: scale(1.07);
  filter: saturate(1.08);
}

.movie-card__year,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}

.movie-card__year {
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.28rem 0.62rem;
  background: rgba(0, 0, 0, 0.68);
}

.rank-badge {
  top: 0.75rem;
  left: 0.75rem;
  min-width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-orange), #f59e0b);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.28);
}

.movie-card__body {
  padding: 0.9rem 0.1rem 0;
}

.movie-card__meta {
  margin-bottom: 0.4rem;
  color: var(--color-gray-500);
  font-size: 0.82rem;
}

.movie-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.movie-card h3 a {
  transition: color 0.2s ease;
}

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

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

.movie-card__tags {
  margin-top: 0.72rem;
}

.movie-card__tags span {
  color: var(--color-teal);
  background: #ccfbf1;
  border: 0;
  font-size: 0.78rem;
}

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

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

.compact-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  padding: 0.7rem;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.compact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 148, 136, 0.35);
}

.compact-card__image {
  width: 7rem;
  height: 4.4rem;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 0.72rem;
  background: #111827;
}

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

.compact-card__text {
  min-width: 0;
  display: grid;
  gap: 0.35rem;
}

.compact-card__text strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-card__text em {
  color: var(--color-gray-500);
  font-size: 0.82rem;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-rank {
  margin-left: auto;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--color-teal);
  font-weight: 800;
}

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

.category-tile,
.category-overview-card {
  display: grid;
  gap: 0.65rem;
  padding: 1.3rem;
  border-radius: var(--radius-xl);
  color: var(--color-gray-900);
  background: #ffffff;
  border: 1px solid var(--color-gray-200);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-teal);
}

.category-tile strong,
.category-overview-card strong {
  color: var(--color-teal);
  font-size: 1.1rem;
}

.category-tile span,
.category-overview-card em {
  color: var(--color-gray-500);
  line-height: 1.6;
  font-style: normal;
}

.category-overview-card__posters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  height: 6rem;
  overflow: hidden;
  border-radius: 0.9rem;
}

.category-overview-card__posters img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero,
.detail-hero {
  position: relative;
  color: #ffffff;
  background: linear-gradient(120deg, #0f766e, #0891b2 50%, #2563eb);
  overflow: hidden;
}

.page-hero--dark {
  background: linear-gradient(135deg, #111827, #0f766e);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 28%);
}

.page-hero__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3.2rem 1rem;
}

.page-hero h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.05;
}

.page-hero p {
  max-width: 52rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--color-gray-500);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: inherit;
}

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

.breadcrumb--light,
.page-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.78);
}

.filter-panel {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.filter-panel label {
  display: grid;
  gap: 0.45rem;
  color: var(--color-gray-500);
  font-weight: 700;
  font-size: 0.9rem;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  padding: 0.76rem 1rem;
  border-radius: 0.85rem;
}

.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
  align-items: start;
}

.ranking-aside,
.side-card,
.detail-card,
.player-card {
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.ranking-aside,
.side-card,
.detail-card {
  padding: 1.5rem;
}

.ranking-aside {
  position: sticky;
  top: 5.5rem;
}

.ranking-aside h2,
.side-card h2,
.detail-card h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.detail-hero {
  min-height: 540px;
}

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

.detail-hero__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(22px) saturate(1.2);
  transform: scale(1.08);
  opacity: 0.32;
}

.detail-hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.92), rgba(8, 145, 178, 0.72), rgba(17, 24, 39, 0.72));
}

.detail-hero__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

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

.detail-poster {
  overflow: hidden;
  border-radius: 1.6rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  aspect-ratio: 3 / 4;
  background: #111827;
}

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

.detail-hero__content h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.detail-hero__content p {
  max-width: 56rem;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.8;
}

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

.detail-main,
.detail-sidebar {
  display: grid;
  gap: 1.5rem;
}

.detail-sidebar {
  position: sticky;
  top: 5.5rem;
}

.player-card {
  overflow: hidden;
  background: #000000;
}

.player-shell {
  position: relative;
  overflow: hidden;
  background: #000000;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.72));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-overlay__button {
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.25rem;
  color: #ffffff;
  background: rgba(13, 148, 136, 0.9);
  box-shadow: 0 20px 50px rgba(13, 148, 136, 0.35);
  font-size: 2.1rem;
}

.player-overlay strong {
  max-width: 80%;
  text-align: center;
  font-size: 1.2rem;
}

.detail-card p {
  margin: 0;
  color: var(--color-gray-700);
  line-height: 1.9;
  font-size: 1.03rem;
}

.tag-links a {
  color: var(--color-teal);
  background: #ccfbf1;
  border: 0;
}

.info-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.info-list dt {
  color: var(--color-gray-500);
  font-weight: 700;
}

.info-list dd {
  margin: 0;
  color: var(--color-gray-900);
}

.search-page__form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.search-page__form input {
  flex: 1;
  min-width: 0;
  padding: 0.8rem 1.1rem;
}

.search-page__title {
  margin-bottom: 1.4rem;
  color: var(--color-gray-700);
  font-weight: 800;
  font-size: 1.1rem;
}

.site-footer {
  margin-top: 2rem;
  color: #d1d5db;
  background: #111827;
}

.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.site-footer__brand {
  margin-bottom: 0.8rem;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 900;
}

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

.site-footer h2 {
  margin: 0 0 0.9rem;
  color: #ffffff;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 0.45rem 0;
  color: #d1d5db;
  transition: color 0.2s ease;
}

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

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  text-align: center;
  color: #9ca3af;
}

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

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

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero-slide,
  .detail-hero__grid,
  .detail-layout,
  .ranking-layout {
    grid-template-columns: 1fr;
  }

  .hero-slide__poster {
    display: none;
  }

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

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

  .detail-sidebar,
  .ranking-aside {
    position: static;
  }

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

@media (max-width: 640px) {
  .site-header__inner {
    height: 3.75rem;
  }

  .site-logo {
    font-size: 1rem;
  }

  .hero-carousel,
  .hero-carousel__inner {
    min-height: 560px;
  }

  .hero-slide {
    inset: 0 1rem;
  }

  .hero-actions,
  .section-heading,
  .search-page__form {
    flex-direction: column;
    align-items: stretch;
  }

  .movie-grid--three,
  .movie-grid--four,
  .movie-grid--six,
  .category-tile-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 3rem 1rem;
  }

  .compact-card__image {
    width: 5.8rem;
    height: 3.8rem;
  }

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