:root {
  color-scheme: light;
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --amber-100: #fef3c7;
  --amber-300: #fcd34d;
  --amber-600: #d97706;
  --amber-800: #92400e;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-soft: 0 18px 40px rgba(146, 64, 14, 0.16);
  --shadow-card: 0 10px 25px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  display: block;
  max-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;
  color: #ffffff;
  background: linear-gradient(90deg, var(--orange-600), var(--amber-600), var(--orange-700));
  box-shadow: 0 10px 30px rgba(146, 64, 14, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: var(--orange-700);
  background: var(--amber-300);
  box-shadow: inset 0 -4px 8px rgba(194, 65, 12, 0.2);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: rotate(10deg) scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 24px;
  letter-spacing: -0.04em;
}

.brand-text small {
  margin-top: 4px;
  font-size: 12px;
  color: var(--amber-100);
  letter-spacing: 0.12em;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 168px;
  padding: 8px;
  border-radius: 16px;
  background: #ffffff;
  color: var(--gray-800);
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}

.dropdown-panel a:hover {
  background: var(--orange-50);
  color: var(--orange-700);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 250px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.header-search input,
.hero-search input,
.search-panel input,
.filter-panel input,
.filter-panel select,
.search-panel select {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 12px;
  background: #ffffff;
  color: var(--gray-800);
}

.header-search input {
  padding: 9px 10px;
  background: transparent;
  color: #ffffff;
}

.header-search input::placeholder {
  color: var(--amber-100);
}

.header-search button,
.hero-search button,
.search-panel button {
  border: 0;
  border-radius: 11px;
  padding: 9px 14px;
  color: #ffffff;
  background: var(--orange-700);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.hero-search button:hover,
.search-panel button:hover {
  background: var(--gray-900);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: #ffffff;
}

.mobile-nav {
  display: none;
  padding: 10px 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.mobile-nav form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.mobile-nav input,
.mobile-nav button {
  border: 0;
  border-radius: 12px;
  padding: 10px 12px;
}

.mobile-nav input {
  flex: 1;
}

.mobile-nav button {
  color: #ffffff;
  background: var(--orange-700);
}

.hero-slider {
  position: relative;
  height: 600px;
  min-height: 520px;
  overflow: hidden;
  background: linear-gradient(110deg, #7c2d12, #92400e);
}

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

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.54) 42%, rgba(0, 0, 0, 0.12) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent 48%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 76px;
}

.hero-copy {
  width: min(700px, 100%);
  color: #ffffff;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--amber-100);
  background: rgba(249, 115, 22, 0.38);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.06em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

.hero-copy p {
  width: min(640px, 100%);
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-tags span,
.tag-list span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #7c2d12;
  background: var(--amber-100);
  font-size: 14px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

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

.button-primary {
  color: #ffffff;
  background: var(--orange-600);
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.34);
}

.button-primary:hover {
  background: var(--orange-700);
}

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

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.66);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

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

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

.quick-panel {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: -34px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

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

.hero-search input {
  padding: 15px 16px;
  background: var(--gray-100);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-links a,
.pill-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--orange-700);
  background: var(--orange-100);
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.quick-links a:hover,
.pill-link:hover {
  background: var(--amber-100);
  transform: translateY(-2px);
}

.home-sections,
.page-main,
.detail-main {
  padding: 48px 0 64px;
}

.content-section {
  margin-top: 34px;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.section-heading h2,
.page-hero h1,
.detail-card h1 {
  margin: 0;
  color: var(--gray-800);
  letter-spacing: -0.04em;
}

.section-heading h2 {
  padding-left: 16px;
  border-left: 5px solid var(--orange-500);
  font-size: 30px;
}

.section-heading p,
.page-hero p {
  margin: 10px 0 0;
  color: var(--gray-600);
  line-height: 1.8;
}

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

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

.movie-card {
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.1);
  overflow: hidden;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(146, 64, 14, 0.18);
}

.movie-card a {
  display: block;
  height: 100%;
}

.poster-frame {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange-100), var(--amber-100));
}

.movie-card-large .poster-frame {
  height: 330px;
}

.movie-card-small .poster-frame,
.compact-grid .poster-frame {
  height: 210px;
}

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.56), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-frame::after {
  opacity: 1;
}

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

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

.year-badge,
.type-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.year-badge {
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  color: #ffffff;
  background: var(--orange-500);
}

.type-badge {
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  color: var(--orange-700);
  background: var(--amber-100);
}

.rank-badge {
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.78);
}

.card-content {
  padding: 16px;
}

.card-content h3 {
  margin: 0 0 8px;
  color: var(--gray-800);
  font-size: 18px;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: color 0.2s ease;
}

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

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

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--gray-600);
  font-size: 12px;
}

.card-meta span:last-child {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--orange-700);
  background: var(--orange-50);
  font-weight: 700;
}

.page-hero {
  margin-bottom: 28px;
  padding: 36px;
  border-radius: 28px;
  color: #ffffff;
  background: linear-gradient(100deg, var(--orange-600), var(--amber-600));
  box-shadow: var(--shadow-soft);
}

.page-hero h1 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 50px);
}

.page-hero p {
  width: min(780px, 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

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

.overview-card {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.overview-card a {
  display: block;
}

.overview-posters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 150px;
  overflow: hidden;
  background: var(--orange-100);
}

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

.overview-card div:last-child {
  padding: 20px;
}

.overview-card h2 {
  margin: 0 0 10px;
  color: var(--gray-800);
}

.overview-card p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.7;
}

.link-cloud-section {
  margin-top: 34px;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.link-cloud-section h2 {
  margin: 0 0 18px;
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-panel,
.search-panel {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.filter-panel input,
.filter-panel select,
.search-panel input,
.search-panel select {
  padding: 13px 14px;
  background: var(--gray-100);
}

.search-panel {
  grid-template-columns: 1fr 170px 170px auto;
}

.listing-grid {
  margin-top: 0;
}

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

.pagination a {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  color: var(--orange-700);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
  font-weight: 800;
}

.pagination a:hover,
.pagination a.is-active {
  color: #ffffff;
  background: var(--orange-600);
}

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

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 24px 54px rgba(17, 24, 39, 0.34);
  aspect-ratio: 16 / 9;
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
  cursor: pointer;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46));
  cursor: pointer;
  transition: opacity 0.25s ease;
}

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

.play-button {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--orange-600);
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.34);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.play-button:hover {
  background: var(--orange-700);
  transform: scale(1.06);
}

.play-button span {
  margin-left: 5px;
  font-size: 38px;
}

.detail-card,
.side-panel {
  margin-top: 22px;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.detail-card h1 {
  font-size: clamp(32px, 4vw, 46px);
}

.detail-card h2 {
  margin: 28px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--orange-500);
  font-size: 24px;
}

.detail-card p {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.9;
}

.detail-card .one-line {
  margin: 22px 0 0;
  padding: 18px;
  border-radius: 18px;
  color: var(--gray-800);
  background: var(--orange-50);
  font-size: 18px;
  font-weight: 700;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--orange-700);
  background: var(--orange-100);
  font-weight: 800;
}

.tag-list {
  margin-top: 24px;
}

.detail-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 24px;
  object-fit: cover;
  background: var(--orange-100);
  box-shadow: var(--shadow-soft);
}

.side-panel h2 {
  margin: 0 0 14px;
}

.side-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-list li + li {
  border-top: 1px solid var(--orange-100);
}

.side-list a {
  display: block;
  padding: 13px 0;
}

.side-list span {
  display: block;
  color: var(--gray-800);
  font-weight: 800;
}

.side-list small {
  display: block;
  margin-top: 4px;
  color: var(--gray-600);
}

.related-section {
  margin-top: 34px;
}

.site-footer {
  color: #ffffff;
  background: linear-gradient(90deg, #7c2d12, #92400e, #7c2d12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 44px 0 30px;
}

.footer-brand {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 900;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--amber-100);
  font-size: 18px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

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

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

.footer-bottom {
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom p {
  margin: 0;
}

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

.empty-message {
  grid-column: 1 / -1;
  padding: 34px;
  border-radius: 22px;
  text-align: center;
  color: var(--gray-600);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 1024px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

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

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

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

  .detail-side {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 20px;
  }

  .side-panel {
    margin-top: 0;
  }
}

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

  .brand-text strong {
    font-size: 20px;
  }

  .brand-text small {
    font-size: 10px;
  }

  .hero-slider {
    height: 560px;
    min-height: 560px;
  }

  .hero-content {
    padding-bottom: 82px;
  }

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

  .hero-control {
    display: none;
  }

  .quick-panel,
  .hero-search,
  .filter-panel,
  .search-panel {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    margin-top: 18px;
  }

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

  .content-section,
  .page-hero,
  .detail-card,
  .side-panel {
    padding: 20px;
    border-radius: 20px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .poster-frame,
  .movie-card-large .poster-frame,
  .movie-card-small .poster-frame,
  .compact-grid .poster-frame {
    height: 220px;
  }

  .card-content {
    padding: 13px;
  }

  .card-content h3 {
    font-size: 16px;
  }

  .detail-side {
    display: block;
  }

  .detail-poster {
    width: min(260px, 100%);
    margin: 0 auto;
  }

  .side-panel {
    margin-top: 20px;
  }

  .play-button {
    width: 74px;
    height: 74px;
  }

  .play-button span {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .movie-grid,
  .movie-grid.compact-grid,
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .poster-frame,
  .movie-card-large .poster-frame,
  .movie-card-small .poster-frame,
  .compact-grid .poster-frame {
    height: 300px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 34px;
  }
}
