:root {
  --page-bg: #fff7f8;
  --surface: #ffffff;
  --surface-soft: #fff1f3;
  --text: #111827;
  --muted: #6b7280;
  --line: #f3d4db;
  --red: #ef4444;
  --red-dark: #dc2626;
  --pink: #ec4899;
  --orange: #f97316;
  --shadow: 0 18px 45px rgba(127, 29, 29, 0.12);
  --shadow-soft: 0 10px 24px rgba(127, 29, 29, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 182, 193, 0.38), transparent 34rem),
    linear-gradient(180deg, #fff7f8 0%, #ffffff 46%, #fff7f8 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  min-height: 60vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(244, 114, 182, 0.18);
  box-shadow: 0 8px 30px rgba(127, 29, 29, 0.06);
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(1280px, 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: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--pink));
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(239, 68, 68, 0.26);
}

.brand-name {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--red-dark), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  color: #4b5563;
  font-weight: 650;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.nav-link:hover {
  transform: translateY(-1px);
}

.nav-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-search input,
.mobile-search input,
.filter-input,
.filter-select {
  border: 1px solid #f2c3cb;
  outline: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-search input {
  width: 210px;
  padding: 10px 16px;
}

.nav-search button,
.mobile-search button,
.btn-primary,
.btn-light,
.filter-button {
  border: 0;
  border-radius: 999px;
  font-weight: 800;
}

.nav-search button,
.mobile-search button,
.btn-primary,
.filter-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--pink));
  box-shadow: 0 12px 25px rgba(239, 68, 68, 0.24);
}

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

.nav-search input:focus,
.mobile-search input:focus,
.filter-input:focus,
.filter-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.13);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--red-dark);
  font-size: 1.35rem;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(244, 114, 182, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.mobile-menu.open {
  display: block;
}

.mobile-search {
  width: min(680px, calc(100% - 32px));
  margin: 16px auto 10px;
}

.mobile-search input {
  min-width: 0;
  flex: 1;
  padding: 12px 16px;
}

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

.mobile-links {
  width: min(680px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff7f8;
  color: #4b5563;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.88) 0%, rgba(17, 24, 39, 0.68) 48%, rgba(17, 24, 39, 0.15) 100%),
    linear-gradient(0deg, rgba(255, 247, 248, 0.98) 0%, rgba(255, 247, 248, 0) 23%);
}

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

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: 40px;
  align-items: center;
  padding: 74px 0 88px;
}

.hero-copy {
  max-width: 760px;
  animation: slideIn 0.5s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffe4e6;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.45rem, 6vw, 5.3rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.hero h1 span {
  color: #fda4af;
}

.hero p {
  margin: 0 0 28px;
  max-width: 690px;
  color: #f3f4f6;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.75;
}

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

.btn-primary,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover,
.btn-light:hover,
.filter-button:hover {
  transform: translateY(-2px);
}

.btn-light {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-panel h2 {
  margin: 0 0 16px;
  font-size: 1.15rem;
}

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

.focus-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.focus-item:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.2);
}

.focus-item img {
  width: 84px;
  height: 58px;
  object-fit: cover;
  border-radius: 14px;
}

.focus-item strong,
.focus-item span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.focus-item span {
  margin-top: 3px;
  color: #fecdd3;
  font-size: 0.9rem;
}

.section {
  padding: 72px 0;
}

.section.tint {
  width: 100%;
  max-width: none;
  padding: 72px max(16px, calc((100% - 1280px) / 2));
  background: linear-gradient(135deg, #ffe4e6 0%, #fff7f8 42%, #ffffff 100%);
}

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

.section-head > div {
  min-width: 0;
}

.section-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--pink));
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.24);
}

.section-head h1,
.section-head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--red-dark);
  font-weight: 800;
  white-space: nowrap;
}

.section-link span {
  transition: transform 0.2s ease;
}

.section-link:hover span {
  transform: translateX(3px);
}

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

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

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

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

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

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

.movie-card,
.rank-row,
.category-card,
.info-card {
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover,
.rank-row:hover,
.category-card:hover,
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.grid-card,
.large-card,
.info-card,
.category-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
}

.poster-wrap,
.large-poster,
.list-poster,
.rank-thumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fee2e2, #fce7f3);
}

.poster-wrap {
  display: block;
  height: 215px;
}

.poster-wrap img,
.large-poster img,
.list-poster img,
.rank-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.poster-shade,
.large-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.25s ease;
}

.movie-card:hover .poster-shade {
  background: rgba(0, 0, 0, 0.36);
}

.large-overlay {
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.86), rgba(17, 24, 39, 0.14));
}

.play-circle,
.play-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red-dark);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.play-circle {
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.duration {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 8px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.76);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 750;
}

.card-body {
  display: grid;
  gap: 8px;
  padding: 17px;
}

.card-body strong,
.list-info strong,
.rank-info strong,
.large-content strong {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.35;
}

.card-body span:not(.tag-chip),
.list-info span:not(.tag-chip),
.rank-info small {
  color: var(--muted);
  line-height: 1.6;
}

.card-body em,
.list-info em,
.rank-info em,
.large-content em {
  color: #9ca3af;
  font-style: normal;
  font-size: 0.88rem;
}

.tag-chip,
.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--red-dark);
  background: #fff1f2;
  font-size: 0.8rem;
  font-weight: 760;
}

.tag-chip.light {
  color: #ffffff;
  background: rgba(244, 63, 94, 0.86);
}

.list-card {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border-radius: 18px;
}

.list-poster {
  height: 118px;
  border-radius: 14px;
}

.play-badge {
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.list-info {
  min-width: 0;
  display: grid;
  gap: 6px;
  align-content: center;
}

.large-poster {
  display: block;
  height: 320px;
}

.large-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 22px;
  color: #ffffff;
}

.large-card {
  position: relative;
}

.large-content strong,
.large-content em {
  color: #ffffff;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 58px 128px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
}

.rank-number {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--pink));
  font-size: 1.2rem;
  font-weight: 900;
}

.rank-thumb {
  height: 82px;
  border-radius: 14px;
}

.rank-info {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.category-card {
  padding: 24px;
  min-height: 170px;
}

.category-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--pink));
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.22);
}

.category-card h2,
.category-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.page-hero {
  padding: 76px 0 52px;
  background: linear-gradient(135deg, #ffe4e6 0%, #fff7f8 46%, #ffffff 100%);
}

.page-hero .container {
  display: grid;
  gap: 22px;
}

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

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

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: #4b5563;
  font-size: 1.08rem;
  line-height: 1.8;
}

.filter-panel {
  margin: 0 0 30px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(130px, 0.5fr)) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid #fad1d8;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.filter-input,
.filter-select {
  width: 100%;
  padding: 12px 14px;
}

.filter-button {
  padding: 12px 18px;
}

.empty-state {
  display: none;
  padding: 52px 20px;
  text-align: center;
  color: var(--muted);
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.empty-state.show {
  display: block;
}

.detail-shell {
  padding: 54px 0 78px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.65fr);
  gap: 30px;
  align-items: start;
}

.player-card,
.detail-card,
.side-card {
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.player-shell video {
  width: 100%;
  height: 100%;
  background: #05070d;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.26);
  overflow: hidden;
  z-index: 3;
}

.player-overlay.hidden {
  display: none;
}

.player-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.66);
  transition: transform 0.35s ease;
}

.player-overlay:hover img {
  transform: scale(1.03);
}

.player-overlay span {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--red-dark);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
  font-size: 2.15rem;
}

.player-caption,
.detail-card,
.side-card {
  padding: 24px;
}

.player-caption h1 {
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.meta-row,
.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.player-caption .meta-row {
  margin-bottom: 18px;
}

.detail-card h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.detail-card p,
.side-card p {
  margin: 0 0 18px;
  color: #374151;
  line-height: 1.9;
}

.side-poster {
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 20px;
  background: #fee2e2;
}

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

.meta-list {
  display: grid;
  gap: 10px;
  color: #4b5563;
}

.meta-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f8d7de;
}

.meta-list strong {
  color: var(--text);
}

.inline-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.inline-links a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--red-dark);
  background: #fff1f2;
  font-weight: 760;
}

.site-footer {
  color: #e5e7eb;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-grid {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 34px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.7fr));
  gap: 32px;
}

.footer-brand {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 1.25rem;
}

.site-footer p {
  margin: 0;
  color: #9ca3af;
  line-height: 1.75;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #fda4af;
  font-size: 1.06rem;
}

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

.site-footer a {
  color: #9ca3af;
}

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

.footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  font-size: 0.92rem;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .nav-menu {
    gap: 14px;
  }

  .nav-search input {
    width: 170px;
  }

  .hero-inner,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
  }

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

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

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

@media (max-width: 860px) {
  .navbar {
    height: 66px;
  }

  .nav-menu,
  .nav-search {
    display: none;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 58px 0 70px;
  }

  .section,
  .section.tint {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-grid,
  .feature-grid,
  .list-grid,
  .large-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .filter-input {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .brand-name {
    font-size: 1.08rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-panel {
    padding: 16px;
  }

  .focus-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .focus-item img {
    width: 72px;
    height: 52px;
  }

  .movie-grid,
  .feature-grid,
  .list-grid,
  .large-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .poster-wrap {
    height: 235px;
  }

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

  .list-poster,
  .rank-thumb {
    height: 210px;
  }

  .rank-number {
    position: absolute;
    z-index: 2;
    margin: 12px;
  }

  .rank-row {
    position: relative;
  }

  .filter-panel {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

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

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