* {
  box-sizing: border-box;
}

:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --pink-500: #ec4899;
  --purple-500: #8b5cf6;
  --blue-50: #eff6ff;
  --blue-500: #3b82f6;
  --cyan-500: #06b6d4;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.16);
  --radius-xl: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--gray-900);
  background: linear-gradient(180deg, var(--rose-50) 0%, #ffffff 42%, var(--blue-50) 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-icon,
.footer-brand span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  border-radius: 999px;
  box-shadow: 0 12px 20px rgba(244, 63, 94, 0.25);
}

.brand-text {
  font-size: 22px;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
}

.nav-link,
.mobile-link {
  color: var(--gray-700);
  font-weight: 650;
  transition: color 0.2s ease;
}

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

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.header-search input {
  width: 210px;
  padding: 10px 14px;
  border-radius: 999px;
}

.header-search button,
.mobile-search button,
.search-box-large button,
.filter-panel button {
  border: 0;
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(244, 63, 94, 0.22);
}

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

input:focus,
select:focus {
  border-color: var(--rose-500) !important;
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.14);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--gray-700);
  background: var(--gray-100);
}

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

.mobile-panel.is-open {
  display: grid;
  gap: 12px;
}

.mobile-search {
  display: flex;
  gap: 8px;
}

.mobile-search input {
  flex: 1;
  padding: 11px 14px;
  border-radius: 999px;
}

.mobile-search button {
  padding: 11px 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(115deg, var(--rose-500), var(--pink-500) 55%, var(--purple-500));
}

.hero-bg,
.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 24%), radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.22), transparent 30%);
}

.hero::after {
  content: "";
  background: rgba(0, 0, 0, 0.1);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 560px;
  padding: 70px 0 52px;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: 52px;
}

.hero-slide.is-active {
  display: grid;
  animation: fadeUp 0.55s ease both;
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.eyebrow {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.pill {
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
}

.hero h1 {
  margin: 22px 0 12px;
  max-width: 820px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -1.8px;
}

.hero h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 42px);
}

.hero p {
  max-width: 720px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-light {
  color: var(--rose-500);
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.btn-outline-light {
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.82);
}

.btn-ghost-light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
  box-shadow: 0 14px 28px rgba(244, 63, 94, 0.24);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.16);
}

.hero-poster {
  display: block;
  padding: 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
  backdrop-filter: blur(16px);
}

.hero-poster img {
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
}

.hero-dots {
  position: absolute;
  left: 0;
  bottom: 26px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 32px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

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

.editor-pick {
  margin-top: -46px;
  position: relative;
  z-index: 4;
}

.feature-card,
.rank-card,
.side-card,
.player-card,
.detail-content,
.category-overview-card,
.filter-panel,
.ranking-table {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 36px;
  align-items: center;
  padding: 34px;
  box-shadow: var(--shadow-lg);
}

.feature-text h2 {
  margin: 18px 0 12px;
  font-size: clamp(28px, 3vw, 40px);
}

.feature-text p,
.muted {
  color: var(--gray-600);
  line-height: 1.75;
}

.feature-image {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.feature-image img {
  height: 330px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.feature-image:hover img,
.movie-card:hover img,
.movie-row:hover img,
.category-tile:hover img,
.overview-image:hover img {
  transform: scale(1.08);
}

.content-section {
  padding: 64px 0;
}

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

.section-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
}

.section-more,
.text-link {
  color: var(--rose-500);
  font-weight: 800;
}

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

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

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

.movie-card {
  overflow: hidden;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  height: 270px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-100), var(--blue-50));
}

.movie-card-large .poster-wrap {
  height: 340px;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.52));
}

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 12px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.card-body {
  padding: 18px;
}

.card-body h3,
.row-body h3,
.overview-body h2 {
  margin: 0 0 10px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.card-body h3 {
  display: -webkit-box;
  overflow: hidden;
  font-size: 18px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-body a:hover h3,
.row-body a:hover h3,
.overview-body a:hover h2 {
  color: var(--rose-500);
}

.card-body p,
.row-body p,
.overview-body p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 14px;
  color: var(--gray-600);
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta,
.row-meta,
.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--gray-500);
  font-size: 14px;
}

.topic-band {
  padding: 66px 0;
  color: #ffffff;
  background: linear-gradient(110deg, var(--blue-500), var(--cyan-500));
}

.topic-head {
  text-align: center;
  margin-bottom: 34px;
}

.topic-head span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.topic-head h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
}

.topic-head p {
  color: rgba(255, 255, 255, 0.84);
}

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

.category-tile {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.category-tile img {
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72));
}

.category-name,
.category-intro {
  position: absolute;
  left: 18px;
  right: 18px;
}

.category-name {
  bottom: 54px;
  font-size: 21px;
  font-weight: 900;
}

.category-intro {
  bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
}

.rank-card {
  padding: 24px;
  position: sticky;
  top: 94px;
}

.rank-card h2 {
  margin: 0 0 18px;
}

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

.movie-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  overflow: hidden;
  padding: 10px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.row-poster {
  overflow: hidden;
  border-radius: 12px;
}

.row-poster img {
  height: 84px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.row-body h3 {
  font-size: 16px;
}

.page-hero {
  color: #ffffff;
  padding: 58px 0 66px;
}

.rose-hero {
  background: linear-gradient(110deg, var(--rose-500), var(--pink-500));
}

.blue-hero {
  background: linear-gradient(110deg, var(--blue-500), var(--cyan-500));
}

.page-hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(36px, 5vw, 58px);
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.7;
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.detail-top {
  padding: 24px 0;
  background: linear-gradient(110deg, var(--rose-500), var(--pink-500));
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  padding: 34px 0 30px;
}

.detail-main {
  min-width: 0;
}

.player-card {
  overflow: hidden;
  margin-bottom: 28px;
}

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

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

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.68));
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.movie-player.is-playing .player-cover {
  opacity: 0;
  pointer-events: none;
}

.play-circle {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(244, 63, 94, 0.38);
  font-size: 30px;
}

.play-title {
  max-width: 88%;
  font-size: 20px;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.player-titlebar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 18px 22px;
  color: var(--gray-600);
}

.player-titlebar strong {
  color: var(--gray-900);
  font-size: 20px;
}

.detail-content {
  padding: 30px;
}

.detail-badges,
.tag-cloud div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-badges a,
.detail-badges span,
.tag-cloud span {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
}

.detail-badges a {
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
}

.detail-badges span,
.tag-cloud span {
  color: var(--gray-700);
  background: var(--gray-100);
}

.detail-content h1 {
  margin: 22px 0 14px;
  font-size: clamp(32px, 4vw, 48px);
}

.lead {
  color: var(--gray-700);
  font-size: 19px;
  line-height: 1.8;
}

.detail-content section {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}

.detail-content h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.detail-content p {
  color: var(--gray-700);
  line-height: 1.9;
}

.sticky-card {
  position: sticky;
  top: 94px;
  padding: 20px;
}

.sticky-card img {
  height: 390px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}

.sticky-card h2 {
  margin: 0 0 16px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 14px 12px;
  margin: 0;
}

.side-card dt {
  color: var(--gray-500);
}

.side-card dd {
  margin: 0;
  color: var(--gray-900);
  font-weight: 750;
  text-align: right;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px auto;
  gap: 14px;
  align-items: end;
  padding: 22px;
  margin-bottom: 28px;
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--gray-600);
  font-weight: 750;
}

.filter-panel input,
.filter-panel select {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
}

.filter-panel button {
  min-height: 46px;
  padding: 0 22px;
}

.empty-state {
  display: none;
  padding: 54px 20px;
  color: var(--gray-600);
  text-align: center;
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

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

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

.category-overview-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  overflow: hidden;
  padding: 18px;
}

.overview-image {
  overflow: hidden;
  border-radius: 18px;
}

.overview-image img {
  height: 210px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.overview-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.overview-links a {
  padding: 7px 10px;
  color: var(--gray-700);
  background: var(--gray-100);
  border-radius: 999px;
  font-size: 13px;
}

.ranking-table {
  overflow: hidden;
}

.ranking-row {
  display: grid;
  grid-template-columns: 64px 72px minmax(0, 1fr) 190px 120px;
  gap: 16px;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.2s ease;
}

.ranking-row:hover {
  background: var(--rose-50);
}

.ranking-row img {
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
}

.ranking-num {
  color: var(--rose-500);
  font-size: 22px;
  font-weight: 900;
}

.ranking-title {
  font-weight: 850;
}

.ranking-meta {
  color: var(--gray-600);
}

.ranking-heat {
  color: var(--blue-500);
  font-weight: 850;
  text-align: right;
}

.search-box-large {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-bottom: 28px;
}

.search-box-large input {
  min-height: 56px;
  padding: 0 18px;
  border-radius: 16px;
  font-size: 18px;
}

.search-box-large button {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 16px;
  font-weight: 850;
}

.site-footer {
  color: #d1d5db;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 54px 0 34px;
}

.footer-brand {
  color: #ffffff;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer li {
  color: #9ca3af;
  line-height: 1.7;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-search {
    margin-left: auto;
  }

  .hero-slide,
  .feature-card,
  .detail-layout,
  .two-column-section {
    grid-template-columns: 1fr;
  }

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

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

  .detail-side {
    order: -1;
  }

  .sticky-card {
    position: static;
  }
}

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

  .hero-inner {
    min-height: auto;
    padding: 46px 0 58px;
  }

  .hero-poster img {
    height: 320px;
  }

  .hero-dots {
    left: 0;
    bottom: 18px;
  }

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

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

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

  .ranking-row {
    grid-template-columns: 48px 62px minmax(0, 1fr);
  }

  .ranking-meta,
  .ranking-heat {
    display: none;
  }

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

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

  .brand-text {
    font-size: 18px;
  }

  .hero h1 {
    letter-spacing: -0.8px;
  }

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

  .btn {
    width: 100%;
  }

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

  .poster-wrap {
    height: 245px;
  }

  .feature-card,
  .detail-content,
  .filter-panel {
    padding: 22px;
  }

  .movie-row {
    grid-template-columns: 90px minmax(0, 1fr);
  }

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

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