:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --amber-950: #451a03;
  --cream: #fff7df;
  --ink: #2b1706;
  --muted: #7a5a25;
  --line: rgba(146, 64, 14, 0.16);
  --shadow: 0 18px 45px rgba(120, 53, 15, 0.14);
  --shadow-soft: 0 10px 28px rgba(120, 53, 15, 0.11);
  --radius-xl: 28px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(252, 211, 77, 0.35), transparent 38rem),
    linear-gradient(180deg, #fff7ed 0%, #fffbeb 42%, #fff 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(254, 243, 199, 0.96), rgba(255, 251, 235, 0.96));
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(120, 53, 15, 0.10);
  border-bottom: 1px solid rgba(217, 119, 6, 0.16);
}

.header-inner,
.strip-inner,
.main-shell,
.footer-inner,
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--amber-600), var(--amber-300));
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.28);
}

.brand-mark span {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid white;
  margin-left: 3px;
}

.brand-name {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--amber-900);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  display: block;
  color: var(--amber-700);
  font-size: 12px;
  margin-top: 3px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--amber-900);
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.current {
  color: white;
  background: linear-gradient(135deg, var(--amber-700), var(--amber-500));
  box-shadow: 0 10px 22px rgba(217, 119, 6, 0.24);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--amber-900);
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 4px;
}

.category-strip {
  border-top: 1px solid rgba(217, 119, 6, 0.10);
}

.strip-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 9px 0 11px;
  scrollbar-width: none;
}

.strip-inner::-webkit-scrollbar {
  display: none;
}

.strip-inner a {
  white-space: nowrap;
  color: var(--amber-800);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(217, 119, 6, 0.14);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.strip-inner a:hover {
  background: var(--amber-600);
  color: white;
}

.mobile-nav {
  display: none;
  padding: 12px 20px 20px;
  border-top: 1px solid rgba(217, 119, 6, 0.15);
  background: white;
}

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

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--amber-50);
  color: var(--amber-900);
  font-weight: 700;
}

.main-shell {
  padding: 42px 0 64px;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--amber-950);
  color: white;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  background-size: cover;
  background-position: center;
}

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(245, 158, 11, 0.35), transparent 28rem),
    linear-gradient(90deg, rgba(69, 26, 3, 0.90), rgba(69, 26, 3, 0.72) 46%, rgba(69, 26, 3, 0.35));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.72fr);
  gap: 52px;
  align-items: center;
  padding: 58px 0;
}

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

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--amber-100);
  background: rgba(245, 158, 11, 0.22);
  border: 1px solid rgba(252, 211, 77, 0.36);
  font-weight: 800;
  font-size: 14px;
}

.hero h1,
.hero h2 {
  margin: 22px 0 16px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 950;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
}

.hero p {
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.76;
  color: #fff7d6;
  margin: 0 0 22px;
}

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

.hero-tags span,
.tag-list span {
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--amber-950);
  background: rgba(254, 243, 199, 0.88);
  font-weight: 800;
  font-size: 13px;
}

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

.btn,
.section-link,
.play-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary,
.play-link {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-300));
  color: var(--amber-950);
  box-shadow: 0 16px 34px rgba(245, 158, 11, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(14px);
}

.btn:hover,
.section-link:hover,
.play-link:hover {
  transform: translateY(-2px);
}

.hero-poster-wrap {
  position: relative;
}

.hero-poster-card {
  position: relative;
  border-radius: 34px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.30), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
  transform: rotate(2deg);
}

.hero-poster-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-stat-card {
  position: absolute;
  left: -28px;
  bottom: 34px;
  min-width: 185px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 251, 235, 0.92);
  color: var(--amber-900);
  box-shadow: var(--shadow);
}

.hero-stat-card strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-controls button,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  backdrop-filter: blur(12px);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  transition: all 0.2s ease;
}

.hero-dot.active {
  width: 28px;
  background: var(--amber-300);
}

.section-block {
  margin-bottom: 54px;
}

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

.section-head h1,
.section-head h2 {
  margin: 10px 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  color: var(--amber-950);
  font-weight: 950;
  letter-spacing: -0.035em;
}

.section-head p {
  color: var(--muted);
  max-width: 760px;
  line-height: 1.75;
  margin: 0;
}

.section-kicker {
  color: var(--amber-800);
  background: var(--amber-100);
  border-color: rgba(217, 119, 6, 0.18);
}

.section-link {
  color: var(--amber-950);
  background: white;
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

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

.movie-card,
.category-card,
.info-card,
.player-shell,
.rank-row,
.filter-panel,
.story-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 119, 6, 0.13);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}

.movie-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.poster-link {
  display: block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-100), var(--amber-200));
}

.poster-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover .poster-link img {
  transform: scale(1.055);
}

.poster-link::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(69, 26, 3, 0.70));
}

.score-badge,
.year-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  padding: 6px 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.score-badge {
  top: 12px;
  left: 12px;
  color: var(--amber-950);
  background: var(--amber-300);
}

.year-badge {
  right: 12px;
  bottom: 12px;
  color: white;
  background: rgba(69, 26, 3, 0.84);
}

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

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
  color: var(--amber-950);
  font-weight: 900;
}

.movie-card h3 a:hover,
.rank-content h3 a:hover {
  color: var(--amber-600);
}

.movie-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  min-height: 44px;
}

.card-meta,
.rank-meta,
.detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 13px;
}

.card-meta span,
.rank-meta span,
.detail-meta span {
  border-radius: 999px;
  background: var(--amber-50);
  color: var(--amber-800);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

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

.category-card {
  overflow: hidden;
  padding: 24px;
  transition: all 0.2s ease;
}

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

.category-card h2,
.category-card h3 {
  margin: 0 0 10px;
  color: var(--amber-950);
  font-size: 26px;
  font-weight: 950;
}

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

.mini-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 20px;
}

.mini-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: var(--amber-100);
}

.mini-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.mini-card span {
  position: absolute;
  inset: auto 0 0;
  padding: 18px 8px 8px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(180deg, transparent, rgba(69, 26, 3, 0.82));
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(150px, 190px));
  gap: 14px;
  padding: 16px;
  margin-bottom: 24px;
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--amber-800);
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-radius: 15px;
  background: white;
  color: var(--amber-950);
  padding: 12px 13px;
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.empty-state {
  padding: 18px;
  margin: 0 0 22px;
  border-radius: 16px;
  color: var(--amber-900);
  background: var(--amber-100);
  font-weight: 800;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 72px 96px 1fr;
  gap: 18px;
  align-items: center;
  padding: 15px;
  transition: all 0.2s ease;
}

.rank-row:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--amber-700), var(--amber-400));
  color: white;
  font-size: 22px;
  font-weight: 950;
}

.rank-cover img {
  width: 96px;
  height: 132px;
  object-fit: cover;
  border-radius: 16px;
  background: var(--amber-100);
}

.rank-content h3 {
  margin: 0 0 8px;
  color: var(--amber-950);
  font-size: 22px;
  font-weight: 950;
}

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

.rank-meta strong {
  color: var(--amber-950);
  background: var(--amber-300);
  border-radius: 999px;
  padding: 6px 10px;
}

.detail-hero {
  background: var(--amber-950);
  color: white;
  position: relative;
  overflow: hidden;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 18%, rgba(245, 158, 11, 0.30), transparent 30rem),
    linear-gradient(90deg, rgba(69, 26, 3, 0.95), rgba(69, 26, 3, 0.74));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 38px;
  align-items: center;
  padding: 54px 0;
}

.detail-poster {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--amber-100);
  margin-bottom: 16px;
  font-size: 14px;
}

.breadcrumb a {
  color: white;
  font-weight: 800;
}

.detail-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.detail-copy p {
  color: #fff5cf;
  line-height: 1.82;
  font-size: 18px;
  margin: 0;
}

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

.player-shell {
  overflow: hidden;
  background: #130902;
  border-radius: 28px;
  margin-bottom: 26px;
}

.player-box {
  position: relative;
  background: #060302;
  aspect-ratio: 16 / 9;
}

.player-box video {
  width: 100%;
  height: 100%;
  background: #060302;
  object-fit: contain;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  cursor: pointer;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.64));
}

.player-box.is-playing .player-cover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-button {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-300));
  box-shadow: 0 20px 48px rgba(245, 158, 11, 0.34);
  color: var(--amber-950);
}

.play-button span {
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid currentColor;
  margin-left: 6px;
}

.player-caption {
  padding: 18px 22px 20px;
  color: var(--amber-100);
}

.player-caption h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.player-caption p {
  margin: 0;
  line-height: 1.7;
  color: #fceec7;
}

.story-card,
.info-card {
  padding: 24px;
  margin-bottom: 24px;
}

.story-card h2,
.info-card h2 {
  color: var(--amber-950);
  margin: 0 0 14px;
  font-size: 25px;
  font-weight: 950;
}

.story-card p,
.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.86;
}

.info-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.info-card li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.info-card strong {
  color: var(--amber-900);
  min-width: 52px;
}

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

.site-footer {
  color: var(--amber-50);
  background: linear-gradient(180deg, var(--amber-900), var(--amber-950));
  margin-top: 34px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0 32px;
}

.footer-brand {
  display: inline-flex;
  font-size: 22px;
  font-weight: 950;
  color: var(--amber-200);
  margin-bottom: 12px;
}

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

.site-footer p {
  color: var(--amber-100);
  line-height: 1.76;
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: var(--amber-100);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(254, 243, 199, 0.12);
  padding: 18px 0 24px;
  color: var(--amber-200);
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .movie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-poster-wrap {
    max-width: 380px;
  }

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

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

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

  .menu-toggle {
    display: inline-flex;
  }

  .header-inner,
  .strip-inner,
  .main-shell,
  .footer-inner,
  .footer-bottom,
  .hero-content,
  .detail-hero-inner {
    width: min(100% - 24px, 1180px);
  }

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

  .brand-subtitle {
    font-size: 11px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    min-height: 760px;
    grid-template-columns: 1fr;
    gap: 24px;
    align-content: center;
    padding: 38px 0 82px;
  }

  .hero-slide::after {
    background: linear-gradient(180deg, rgba(69, 26, 3, 0.88), rgba(69, 26, 3, 0.70));
  }

  .hero-poster-wrap {
    width: min(78vw, 310px);
  }

  .hero-stat-card {
    left: 14px;
    bottom: 18px;
  }

  .section-head {
    display: block;
  }

  .section-link {
    margin-top: 14px;
  }

  .movie-grid,
  .category-grid,
  .related-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .rank-row {
    grid-template-columns: 48px 74px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .rank-number {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 17px;
  }

  .rank-cover img {
    width: 74px;
    height: 104px;
    border-radius: 13px;
  }

  .rank-content h3 {
    font-size: 18px;
  }

  .rank-content p {
    display: none;
  }

  .detail-hero-inner {
    grid-template-columns: 1fr;
    padding: 36px 0;
  }

  .detail-poster {
    width: min(58vw, 230px);
  }

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

@media (max-width: 520px) {
  .movie-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

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

  .movie-card p {
    display: none;
  }

  .hero-actions,
  .action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .play-link {
    width: 100%;
  }
}
