:root {
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-soft: #f3f4f6;
  --color-line: #e5e7eb;
  --color-red: #dc2626;
  --color-pink: #db2777;
  --color-orange: #f97316;
  --color-green: #059669;
  --color-blue: #2563eb;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.10);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #f9fafb 0%, #eef2f7 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(229, 231, 235, 0.88);
  backdrop-filter: blur(18px);
}

.nav-container {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

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

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

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

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

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: #f3f4f6;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
}

.hero-slider {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  background: #111827;
}

.hero-stage,
.hero-slide {
  height: 100%;
}

.hero-slide {
  position: relative;
  display: none;
}

.hero-slide.is-active {
  display: block;
  animation: heroFade 0.7s ease both;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(219, 39, 119, 0.28), transparent 34%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.16) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 42px;
  padding-bottom: 72px;
}

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

.hero-labels,
.detail-meta,
.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.hero-labels span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-labels span:first-child {
  background: linear-gradient(135deg, var(--color-red), var(--color-pink));
  font-weight: 800;
}

.hero-copy h1 {
  margin: 18px 0 14px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.06em;
  text-shadow: 0 14px 35px rgba(0, 0, 0, 0.42);
}

.hero-one-line {
  margin: 0 0 10px;
  color: #f9fafb;
  font-size: 20px;
  font-weight: 700;
}

.hero-summary {
  max-width: 620px;
  margin: 0 0 26px;
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.8;
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--color-red), var(--color-pink));
  box-shadow: 0 16px 30px rgba(220, 38, 38, 0.30);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.ghost-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(10px);
}

.hero-card {
  width: 240px;
  flex: 0 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.hero-card:hover {
  transform: rotate(0deg) translateY(-6px);
}

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

.hero-card span {
  display: block;
  padding: 14px 16px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #111827, #374151);
}

.hero-nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 44px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.30);
  transform: translateY(-2px);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

.home-search-wrap {
  margin-top: -34px;
  position: relative;
  z-index: 8;
}

.filter-panel,
.search-box {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.70);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.filter-row,
.search-box {
  display: grid;
  grid-template-columns: 1fr 170px 170px;
  gap: 12px;
}

.filter-input,
.filter-select,
.search-box input,
.search-box select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: #fff;
  padding: 0 14px;
  color: #111827;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.filter-input:focus,
.filter-select:focus,
.search-box input:focus,
.search-box select:focus {
  border-color: rgba(220, 38, 38, 0.55);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.filter-empty {
  margin: 16px 0 0;
  color: var(--color-muted);
  text-align: center;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.category-pill {
  min-height: 108px;
  padding: 16px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-pill:hover,
.category-card:hover,
.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.16);
}

.category-pill strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.category-pill span {
  display: -webkit-box;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.content-section {
  margin-top: 56px;
  padding: 30px;
  border-radius: var(--radius-lg);
}

.soft-section,
.region-section {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.white-section {
  background: #fff;
  box-shadow: var(--shadow-card);
}

.warm-section {
  background: linear-gradient(135deg, #fff7ed, #fee2e2);
}

.green-section {
  background: linear-gradient(135deg, #ecfdf5, #e0f2fe);
}

.gold-section {
  background: linear-gradient(135deg, #fef9c3, #ffedd5);
}

.split-board {
  background: #fff;
  box-shadow: var(--shadow-card);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.section-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-red), var(--color-orange));
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.20);
}

.section-heading h2,
.page-hero h1,
.detail-panel h1 {
  margin: 0;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  font-size: clamp(26px, 4vw, 36px);
}

.section-heading p {
  margin: 6px 0 0;
  color: var(--color-muted);
}

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

.category-grid,
.rank-grid,
.search-results {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #1f2937, #111827);
}

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

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent);
}

.movie-year,
.movie-type,
.rank-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
}

.movie-year {
  top: 10px;
  left: 10px;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(10px);
}

.movie-type {
  right: 10px;
  bottom: 10px;
  background: linear-gradient(135deg, var(--color-red), var(--color-pink));
}

.rank-badge {
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

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

.movie-meta-line {
  color: var(--color-muted);
  font-size: 12px;
}

.movie-meta-line span {
  padding: 3px 8px;
  border-radius: 999px;
  background: #f3f4f6;
}

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

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

.movie-card p {
  display: -webkit-box;
  min-height: 45px;
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.movie-tags span,
.detail-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #7f1d1d;
  background: #fee2e2;
  font-size: 12px;
}

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

.ranking-row,
.top-row {
  display: grid;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  background: #f9fafb;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ranking-row {
  grid-template-columns: 46px 1fr auto;
  padding: 12px 14px;
}

.ranking-row:hover,
.top-row:hover {
  background: #fee2e2;
  transform: translateX(3px);
}

.ranking-number,
.top-row span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-red), var(--color-orange));
}

.ranking-title {
  font-weight: 800;
}

.ranking-meta {
  color: var(--color-muted);
  font-size: 13px;
}

.page-main {
  padding: 38px 0 70px;
}

.page-hero {
  margin-bottom: 34px;
  padding: 40px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 76% 18%, rgba(249, 115, 22, 0.32), transparent 32%),
    linear-gradient(135deg, #111827, #374151);
  box-shadow: var(--shadow-soft);
}

.category-hero,
.ranking-hero,
.search-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-hero h1 {
  margin-top: 10px;
  font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
  max-width: 720px;
  margin: 14px 0 0;
  color: #e5e7eb;
  font-size: 16px;
  line-height: 1.8;
}

.eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

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

.category-card {
  min-height: 220px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 24px;
}

.category-main-link {
  display: block;
}

.category-card h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

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

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.category-samples a {
  display: inline-flex;
  height: auto;
  padding: 6px 10px;
  border-radius: 999px;
  color: #991b1b;
  background: #fee2e2;
  font-size: 13px;
}

.rank-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: start;
  gap: 24px;
}

.top-list-card {
  position: sticky;
  top: 96px;
  border-radius: var(--radius-lg);
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.top-list-card h2 {
  margin: 0 0 16px;
}

.top-row {
  grid-template-columns: 38px 1fr;
  padding: 11px;
  margin-bottom: 10px;
}

.top-row em {
  grid-column: 2;
  color: var(--color-muted);
  font-size: 13px;
  font-style: normal;
}

.global-search {
  display: grid;
  gap: 24px;
}

.detail-main {
  padding-top: 22px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--color-muted);
  font-size: 14px;
}

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

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

.detail-content,
.detail-sidebar {
  display: grid;
  gap: 22px;
}

.player-card,
.detail-panel,
.sidebar-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.player-card {
  padding: 0;
  background: #000;
}

.movie-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle at center, rgba(220, 38, 38, 0.26), transparent 36%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.28));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-ring {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red), var(--color-pink));
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.38);
}

.play-symbol {
  margin-left: 5px;
  font-size: 28px;
}

.detail-panel {
  padding: 28px;
}

.detail-headline {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  align-items: start;
}

.detail-headline img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.detail-panel h1 {
  font-size: clamp(30px, 5vw, 46px);
}

.detail-meta {
  margin: 14px 0;
}

.detail-meta span {
  color: #374151;
  background: #f3f4f6;
}

.detail-one-line {
  margin: 0;
  color: #374151;
  font-size: 17px;
  line-height: 1.8;
}

.text-block,
.review-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--color-line);
}

.text-block h2,
.review-block h2,
.sidebar-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.text-block p,
.review-block p {
  margin: 0;
  color: #374151;
  line-height: 1.95;
}

.review-block {
  padding: 24px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.sidebar-card {
  padding: 20px;
}

.sidebar-card .movie-grid,
.sidebar-movies {
  display: grid;
  gap: 14px;
}

.side-card {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 12px;
  align-items: stretch;
  box-shadow: none;
  border: 1px solid var(--color-line);
}

.side-card .movie-poster {
  aspect-ratio: 4 / 3;
  height: 100%;
}

.side-card .movie-card-body {
  padding: 12px 12px 12px 0;
}

.side-card .movie-card h3,
.side-card h3 {
  font-size: 15px;
}

.side-card p,
.side-card .movie-tags {
  display: none;
}

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

.link-cloud a {
  padding: 8px 10px;
  border-radius: 999px;
  color: #991b1b;
  background: #fee2e2;
  font-size: 13px;
}

.site-footer {
  padding: 42px 0;
  color: #d1d5db;
  background: #111827;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  color: #fff;
  font-size: 20px;
}

.site-footer p {
  margin: 10px 0 0;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.08);
}

@keyframes heroFade {
  from {
    opacity: 0.35;
    transform: scale(1.01);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

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

  .top-list-card {
    position: static;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-card);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    text-align: center;
  }

  .hero-slider {
    min-height: 680px;
    height: auto;
  }

  .hero-content {
    min-height: 680px;
    align-items: flex-end;
    padding-top: 120px;
    padding-bottom: 88px;
  }

  .hero-card {
    display: none;
  }

  .hero-nav {
    top: auto;
    bottom: 84px;
    width: 44px;
    height: 44px;
    font-size: 36px;
  }

  .filter-row,
  .search-box {
    grid-template-columns: 1fr;
  }

  .category-strip,
  .category-overview-grid,
  .ranking-list {
    grid-template-columns: 1fr;
  }

  .category-hero,
  .ranking-hero,
  .search-hero,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-headline {
    grid-template-columns: 1fr;
  }

  .detail-headline img {
    width: min(220px, 100%);
  }
}

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

  .movie-grid,
  .category-grid,
  .rank-grid,
  .search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

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

  .hero-one-line {
    font-size: 17px;
  }

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

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

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

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

  .side-card {
    grid-template-columns: 92px 1fr;
  }
}
