* {
  box-sizing: border-box;
}

:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --pink-500: #ec4899;
  --purple-500: #a855f7;
  --blue-500: #3b82f6;
  --cyan-500: #06b6d4;
  --green-500: #22c55e;
  --orange-500: #f97316;
  --slate-950: #020617;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.10);
  --shadow-card: 0 12px 30px rgba(244, 63, 94, 0.16);
  --radius-xl: 24px;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(244, 63, 94, 0.15);
  background: linear-gradient(90deg, rgba(255, 241, 242, 0.96), rgba(253, 242, 248, 0.96));
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(244, 63, 94, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rose-600);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  box-shadow: 0 10px 24px rgba(244, 63, 94, 0.28);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--gray-700);
  font-weight: 650;
}

.main-nav a,
.mobile-panel a,
.site-footer a {
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.mobile-panel a:hover,
.site-footer a:hover {
  color: var(--rose-600);
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 280px;
  border: 1px solid rgba(244, 63, 94, 0.22);
  border-radius: 999px;
  background: white;
}

.header-search input,
.page-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 12px 16px;
}

.header-search button,
.page-search button {
  border: 0;
  cursor: pointer;
  color: white;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  padding: 12px 18px;
  font-weight: 700;
}

.mobile-menu-button {
  display: none;
  border: 0;
  border-radius: 12px;
  background: rgba(244, 63, 94, 0.08);
  color: var(--rose-600);
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(244, 63, 94, 0.15);
  background: white;
  padding: 16px;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel form {
  margin-bottom: 14px;
}

.mobile-panel input {
  width: 100%;
  border: 1px solid var(--rose-100);
  border-radius: 999px;
  padding: 12px 16px;
}

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

.mobile-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--gray-50);
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: linear-gradient(135deg, #3b0764, #9f1239 55%, #0f172a);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: blur(1px) saturate(1.1);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(136, 19, 55, 0.78), rgba(15, 23, 42, 0.42));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  color: white;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  color: var(--rose-600);
  background: rgba(255, 241, 242, 0.82);
  border: 1px solid rgba(244, 63, 94, 0.18);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 800;
}

.hero .eyebrow {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.hero h1 {
  margin: 24px 0 16px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
  line-height: 1.75;
}

.hero-tags,
.movie-tags,
.mini-tags,
.tag-block div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin: 24px 0;
}

.hero-tags span,
.movie-tags span,
.mini-tags a,
.tag-block a {
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  box-shadow: 0 14px 28px rgba(244, 63, 94, 0.26);
}

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

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

.button-soft {
  color: var(--gray-700);
  background: var(--gray-100);
}

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

.hero-poster {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  transform: translateY(0);
  transition: transform 0.25s ease;
}

.hero-poster:hover {
  transform: translateY(-6px) scale(1.02);
}

.hero-poster-large {
  grid-column: span 2;
  min-height: 250px;
}

.hero-poster img,
.movie-cover img,
.horizontal-cover img,
.poster-shell img,
.category-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hero-poster:hover img,
.movie-card:hover .movie-cover img,
.horizontal-card:hover img,
.poster-card:hover .poster-shell img {
  transform: scale(1.08);
}

.hero-poster::after,
.movie-cover::after,
.horizontal-cover::after,
.poster-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.76));
}

.hero-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: white;
  font-weight: 800;
}

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

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 34px;
  background: white;
}

.section {
  padding: 72px 0;
}

.section-blue {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

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

.section-heading.compact {
  margin-bottom: 20px;
}

.section-heading h2,
.page-hero h1,
.detail-card h1 {
  margin: 12px 0 0;
  color: var(--gray-900);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.text-link {
  color: var(--rose-600);
  font-weight: 800;
}

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

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

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

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

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

.movie-cover,
.horizontal-cover,
.poster-shell {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-100), #fdf2f8, #eef2ff);
}

.movie-cover {
  aspect-ratio: 16 / 10;
}

.movie-card-poster .movie-cover {
  aspect-ratio: 3 / 4;
}

.movie-type,
.movie-duration,
.movie-play-icon,
.rank-number {
  position: absolute;
  z-index: 3;
}

.movie-type {
  top: 12px;
  left: 12px;
  color: white;
  border-radius: 10px;
  background: var(--rose-500);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.movie-duration {
  right: 12px;
  bottom: 12px;
  color: white;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.72);
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 750;
}

.movie-play-icon {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: white;
  border-radius: 999px;
  background: rgba(244, 63, 94, 0.88);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

.movie-card-body h2 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card-body h2 a:hover {
  color: var(--rose-600);
}

.movie-card-body p {
  min-height: 48px;
  margin: 0 0 14px;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.7;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-meta span {
  border-radius: 999px;
  background: var(--gray-100);
  padding: 4px 8px;
}

.movie-tags span,
.tag-block a,
.mini-tags a {
  color: #0369a1;
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.feature-panel {
  border-radius: 34px;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  padding: 46px;
}

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

.category-tile,
.category-card {
  display: grid;
  gap: 10px;
  border-radius: 22px;
  background: white;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-card:hover {
  color: white;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(168, 85, 247, 0.24);
}

.category-tile strong,
.category-card strong {
  font-size: 20px;
}

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

.category-tile:hover span,
.category-card:hover em {
  color: rgba(255, 255, 255, 0.86);
}

.category-card {
  padding: 0;
  overflow: hidden;
}

.category-card strong,
.category-card em {
  margin: 0 20px;
}

.category-card em {
  margin-bottom: 22px;
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 110px;
  overflow: hidden;
}

.split-layout,
.detail-grid,
.ranking-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

.sidebar-panel,
.ranking-panel,
.detail-card,
.poster-card {
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.sidebar-panel h2,
.ranking-panel h2,
.poster-card h2,
.story-block h2,
.tag-block h2 {
  margin: 0 0 18px;
}

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

.horizontal-card {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-radius: 16px;
  padding: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.horizontal-card:hover {
  background: var(--gray-50);
  transform: translateX(4px);
}

.horizontal-cover {
  height: 80px;
  border-radius: 14px;
}

.horizontal-info {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.horizontal-info strong,
.horizontal-info small,
.horizontal-info em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.horizontal-info em {
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
}

.horizontal-info small {
  color: var(--gray-500);
}

.rank-number {
  left: 8px;
  top: 8px;
  color: white;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-500), var(--rose-500));
  padding: 5px 8px;
  font-weight: 900;
}

.tag-cloud {
  margin-top: 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, #faf5ff, #fdf2f8);
  padding: 22px;
}

.tag-cloud h3 {
  margin-top: 0;
}

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

.tag-cloud a {
  border-radius: 999px;
  background: white;
  padding: 8px 12px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.page-hero {
  color: white;
  background: radial-gradient(circle at top left, rgba(236, 72, 153, 0.9), transparent 34%), linear-gradient(135deg, #4c0519, #831843 52%, #0f172a);
}

.compact-hero {
  padding: 76px 0;
}

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

.page-hero h1 {
  color: white;
  max-width: 860px;
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 18px;
  line-height: 1.8;
}

.page-search {
  display: flex;
  overflow: hidden;
  width: min(620px, 100%);
  border-radius: 999px;
  background: white;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
}

.pagination a,
.pagination strong,
.pagination span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  background: white;
  color: var(--gray-700);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.pagination strong {
  color: white;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
}

.search-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.search-tools select {
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: white;
  padding: 12px 18px;
}

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

.detail-shell {
  padding: 36px 0 72px;
}

.detail-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.detail-main {
  display: grid;
  gap: 24px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--slate-950);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.32);
}

.movie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: black;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: white;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.28), rgba(15, 23, 42, 0.64));
  cursor: pointer;
}

.play-overlay span {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  box-shadow: 0 16px 40px rgba(244, 63, 94, 0.38);
  font-size: 30px;
}

.play-overlay strong {
  font-size: 20px;
}

.player-card.is-playing .play-overlay {
  opacity: 0;
  pointer-events: none;
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 4;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  padding: 8px 12px;
  font-size: 13px;
}

.detail-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
  color: var(--gray-500);
}

.detail-meta span {
  border-radius: 999px;
  background: var(--gray-100);
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 750;
}

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

.story-block {
  margin-top: 28px;
}

.story-block p {
  margin: 0;
  color: var(--gray-700);
  line-height: 1.9;
}

.tag-block {
  margin-top: 28px;
}

.poster-shell {
  height: 430px;
  border-radius: 22px;
}

.poster-card p {
  color: var(--gray-500);
  line-height: 1.7;
}

.detail-sidebar {
  display: grid;
  gap: 24px;
}

.sitemap-list {
  display: grid;
  gap: 26px;
}

.sitemap-group {
  border-radius: 24px;
  background: white;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.sitemap-group h2 {
  margin: 0 0 16px;
  font-size: 18px;
}

.sitemap-group ul {
  columns: 4 180px;
  margin: 0;
  padding-left: 20px;
}

.sitemap-group li {
  margin-bottom: 8px;
  break-inside: avoid;
}

.site-footer {
  border-top: 1px solid var(--gray-200);
  background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
  color: var(--gray-600, #4b5563);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 54px 0;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: var(--gray-900);
  font-size: 18px;
}

.footer-grid p {
  max-width: 360px;
  line-height: 1.75;
}

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

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 18px;
  border-top: 1px solid var(--gray-200);
  padding: 18px;
  color: var(--gray-500);
  font-size: 14px;
}

.image-missing img {
  opacity: 0;
}

.image-missing::before {
  content: attr(data-title);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--rose-600);
  background: linear-gradient(135deg, var(--rose-100), #fdf2f8, #eef2ff);
  font-weight: 900;
  text-align: center;
  line-height: 1.45;
}

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

  .header-search {
    width: 240px;
  }

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

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

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

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

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

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    display: block;
    padding: 82px 0 88px;
  }

  .hero-poster-grid {
    margin-top: 34px;
  }

  .movie-grid,
  .movie-grid.three,
  .poster-grid,
  .category-grid,
  .category-card-grid,
  .footer-grid,
  .detail-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-panel {
    padding: 26px;
  }

  .section-heading,
  .detail-title-row {
    align-items: start;
    flex-direction: column;
  }
}

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

  .brand {
    font-size: 18px;
  }

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

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-poster-grid,
  .movie-grid,
  .movie-grid.three,
  .poster-grid,
  .category-grid,
  .category-card-grid,
  .footer-grid,
  .detail-sidebar {
    grid-template-columns: 1fr;
  }

  .hero-poster-large {
    grid-column: span 1;
  }

  .page-search {
    border-radius: 22px;
    flex-direction: column;
  }

  .page-search button {
    width: 100%;
  }

  .horizontal-card {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .poster-shell {
    height: 360px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}
