:root {
  --pink: #ec4899;
  --red: #ef4444;
  --orange: #f97316;
  --yellow: #fde68a;
  --ink: #1f2937;
  --muted: #6b7280;
  --soft: #fff7ed;
  --line: #fce7f3;
  --shadow: 0 18px 40px rgba(190, 24, 93, 0.16);
  --shadow-strong: 0 28px 70px rgba(190, 24, 93, 0.28);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7fb 0%, #fff 34%, #fff7ed 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(244, 114, 182, 0.18);
  box-shadow: 0 12px 34px rgba(236, 72, 153, 0.12);
}

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

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

.brand-name {
  font-size: 24px;
  background: linear-gradient(90deg, var(--pink), var(--red), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #f472b6, #ef4444, #fb923c);
  box-shadow: 0 14px 28px rgba(236, 72, 153, 0.28);
  font-size: 16px;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 14px;
  color: #4b5563;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pink);
  background: linear-gradient(90deg, #fce7f3, #ffedd5);
  transform: translateY(-1px);
}

.site-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.site-search-form input,
.filter-panel input {
  width: 230px;
  border: 2px solid #fbcfe8;
  border-radius: 999px;
  padding: 11px 18px;
  color: #374151;
  background: #fff;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.site-search-form input:focus,
.filter-panel input:focus {
  border-color: #f472b6;
  box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.18);
}

.site-search-form button,
.primary-button,
.pill-link {
  border: 0;
  cursor: pointer;
  color: #fff;
  font-weight: 800;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--red), var(--orange));
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-search-form button:hover,
.primary-button:hover,
.pill-link:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(239, 68, 68, 0.3);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fce7f3;
  color: var(--pink);
  font-weight: 900;
}

.mobile-panel {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mobile-panel nav {
  display: grid;
  gap: 8px;
}

.mobile-search {
  margin: 14px 0 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: linear-gradient(135deg, #f472b6, #ef4444, #fb923c);
}

.hero-slider {
  position: relative;
  min-height: 520px;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(253, 224, 71, 0.28), transparent 34%),
    linear-gradient(90deg, rgba(190, 24, 93, 0.86), rgba(239, 68, 68, 0.58), rgba(249, 115, 22, 0.45)),
    linear-gradient(0deg, rgba(17, 24, 39, 0.56), transparent 55%);
}

.hero-content {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
  color: #fff;
}

.hero-copy {
  max-width: 740px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 760px;
  margin: 0 0 24px;
  color: #fff7ed;
  font-size: 20px;
}

.hero-tags,
.detail-meta,
.tag-cloud,
.page-hero-links,
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.detail-meta span,
.tag-cloud span,
.page-hero-links a,
.filter-chips button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 6px 13px;
  font-weight: 800;
}

.hero-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.glass-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.glass-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-strong);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--pink);
  background: rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 34px;
  background: #fff;
}

.content-section,
.category-overview-list {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

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

.section-heading .eyebrow,
.page-hero .eyebrow {
  color: var(--pink);
  background: #fce7f3;
}

.section-heading h2,
.page-hero h1,
.ranking-header h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p,
.category-overview-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.featured-grid,
.movie-grid,
.category-grid,
.overview-sample,
.related-grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

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

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

.poster-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fce7f3, #ffedd5);
}

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

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

.movie-card.small .poster-wrap img {
  height: 168px;
}

.movie-card:hover .poster-wrap img {
  transform: scale(1.08);
}

.poster-type,
.rank-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 24, 39, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.rank-badge {
  right: auto;
  left: 12px;
  background: linear-gradient(90deg, #f59e0b, #f97316);
}

.play-hover {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--pink);
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.78);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

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

.movie-card h3 {
  margin: 0 0 8px;
  min-height: 48px;
  color: #111827;
  font-size: 18px;
  line-height: 1.32;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

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

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

.movie-meta-line {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #6b7280;
  font-size: 12px;
}

.movie-meta-line span:last-child {
  color: var(--pink);
  font-weight: 800;
}

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

.ranking-box,
.side-card,
.category-overview-card {
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.ranking-box {
  padding: 24px;
}

.ranking-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ranking-header span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.ranking-list {
  display: grid;
}

.ranking-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f3f4f6;
}

.ranking-number {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(90deg, #f472b6, #fb923c);
  font-weight: 900;
}

.ranking-title {
  min-width: 0;
  color: #111827;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ranking-info {
  grid-column: 2;
  margin-top: -8px;
  color: var(--muted);
  font-size: 13px;
}

.more-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--pink);
  font-weight: 900;
}

.gradient-band {
  padding: 64px 0;
  color: #fff;
  background: linear-gradient(135deg, #ec4899, #ef4444, #f97316);
}

.band-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.band-inner h2 {
  margin: 0 0 10px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
}

.band-inner p {
  margin: 0 0 30px;
  color: #fff7ed;
  font-size: 18px;
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  border-radius: var(--radius);
  text-align: left;
  box-shadow: 0 20px 50px rgba(127, 29, 29, 0.22);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transition: transform 0.45s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.84), rgba(17, 24, 39, 0.12));
}

.category-tile span,
.category-tile p {
  position: relative;
  z-index: 1;
}

.category-tile span {
  font-size: 24px;
  font-weight: 950;
}

.category-tile p {
  margin: 6px 0 0;
  color: #ffe4e6;
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.filter-panel input {
  width: min(100%, 420px);
}

.filter-chips button {
  border: 0;
  color: var(--pink);
  background: #fce7f3;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.filter-chips button:hover,
.filter-chips button.active {
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  transform: translateY(-1px);
}

.empty-state {
  margin-top: 22px;
  padding: 30px;
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.page-hero {
  width: min(1240px, calc(100% - 32px));
  margin: 36px auto 0;
  padding: clamp(42px, 7vw, 82px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 16%, rgba(253, 224, 71, 0.32), transparent 28%),
    linear-gradient(135deg, #fce7f3, #ffedd5);
  box-shadow: var(--shadow);
}

.category-hero,
.rank-hero {
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(253, 224, 71, 0.3), transparent 28%),
    linear-gradient(135deg, #ec4899, #ef4444, #f97316);
}

.category-hero .eyebrow,
.rank-hero .eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.category-hero h1,
.category-hero p,
.rank-hero h1,
.rank-hero p {
  color: #fff;
}

.page-hero-links {
  margin-top: 22px;
}

.page-hero-links a {
  color: var(--pink);
  background: #fff;
}

.category-overview-list {
  display: grid;
  gap: 28px;
}

.category-overview-card {
  padding: 28px;
}

.category-overview-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
  margin-bottom: 22px;
}

.category-overview-head h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 950;
}

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

.breadcrumb {
  width: min(1240px, calc(100% - 32px));
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

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

.detail-layout {
  width: min(1240px, calc(100% - 32px));
  margin: 24px auto 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: contain;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--pink);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.16));
  cursor: pointer;
}

.player-cover span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
  font-size: 32px;
}

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

.detail-article,
.side-card {
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-article h1 {
  margin: 0 0 16px;
  color: #111827;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.detail-meta span {
  color: var(--pink);
  background: #fce7f3;
}

.detail-lead {
  margin: 22px 0;
  color: #374151;
  font-size: 20px;
  font-weight: 700;
}

.tag-cloud {
  margin: 18px 0 28px;
}

.tag-cloud span {
  color: #ea580c;
  background: #ffedd5;
}

.detail-article h2,
.side-card h2 {
  margin: 26px 0 10px;
  color: #111827;
  font-size: 24px;
  font-weight: 950;
}

.detail-article p,
.side-card p {
  color: #4b5563;
  font-size: 17px;
}

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

.poster-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

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

.related-grid .movie-card {
  box-shadow: none;
  border: 1px solid #fce7f3;
}

.related-grid .movie-card.small .poster-wrap img {
  height: 135px;
}

.ranking-layout {
  align-items: start;
}

.sticky-rank {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow: auto;
}

.long-list .ranking-item {
  padding: 11px 0;
}

.site-footer {
  color: #fff;
  background: linear-gradient(135deg, #be185d, #dc2626, #ea580c);
  padding: 54px 0 24px;
}

.footer-grid {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 42px;
}

.footer-brand {
  margin-bottom: 12px;
  font-size: 22px;
}

.site-footer p {
  margin: 0;
  color: #ffe4e6;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}

.footer-links a {
  color: #ffe4e6;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  width: min(1240px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 22px;
  color: #ffe4e6;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

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

  .mobile-search {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr 300px;
  }

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

  .movie-grid,
  .compact-grid,
  .featured-grid,
  .category-grid,
  .overview-sample {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

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

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0 82px;
  }

  .hero-poster {
    max-width: 320px;
    transform: rotate(0deg);
  }

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

  .two-column,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-side,
  .sticky-rank {
    position: static;
    max-height: none;
  }

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

@media (max-width: 620px) {
  .header-inner {
    width: min(100% - 24px, 1240px);
    height: 64px;
  }

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

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero,
  .hero-slider,
  .hero-content {
    min-height: 600px;
  }

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

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

  .hero-poster {
    display: none;
  }

  .content-section,
  .category-overview-list,
  .band-inner,
  .detail-layout,
  .breadcrumb,
  .page-hero,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 24px, 1240px);
  }

  .content-section,
  .category-overview-list {
    padding: 44px 0;
  }

  .library-grid,
  .movie-grid,
  .compact-grid,
  .featured-grid,
  .category-grid,
  .overview-sample {
    grid-template-columns: 1fr;
  }

  .poster-wrap img,
  .movie-card.large .poster-wrap img {
    height: 280px;
  }

  .category-overview-head,
  .section-heading,
  .filter-panel {
    align-items: stretch;
    flex-direction: column;
  }

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