* {
  box-sizing: border-box;
}

:root {
  --orange: #f97316;
  --red: #ef4444;
  --pink: #ec4899;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --green: #10b981;
  --gold: #f59e0b;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.14);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.1);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--gray-50), var(--white));
  color: var(--gray-900);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange), var(--red), var(--pink));
  box-shadow: 0 12px 32px rgba(239, 68, 68, 0.28);
}

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

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

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

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

.nav-link,
.mobile-nav-link {
  font-weight: 700;
  opacity: 0.88;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  opacity: 1;
  transform: translateY(-1px);
}

.header-search,
.mobile-search,
.big-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.header-search input,
.mobile-search input,
.big-search input {
  min-width: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  outline: 0;
}

.header-search input::placeholder,
.mobile-search input::placeholder,
.big-search input::placeholder {
  color: rgba(255, 255, 255, 0.76);
}

.header-search input {
  width: 170px;
  padding: 10px 14px;
}

.header-search button,
.mobile-search button,
.big-search button {
  border: 0;
  color: var(--white);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.18);
  padding: 10px 16px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 10px;
  background: var(--white);
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
}

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

.mobile-nav nav {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.mobile-nav-link {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-slider {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: var(--slate-950);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(249, 115, 22, 0.35), transparent 28%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0.16));
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-copy {
  max-width: 680px;
  color: var(--white);
}

.hero-kicker,
.pill-row,
.movie-meta-line,
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-kicker span,
.pill-row span,
.movie-meta-line span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 800;
}

.hero-kicker span:first-child {
  padding: 7px 14px;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

.hero-kicker span:last-child,
.hero-meta span {
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 620px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.primary-button,
.ghost-button,
.text-link,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  padding: 14px 24px;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 18px 32px rgba(249, 115, 22, 0.32);
}

.primary-button.small {
  padding: 10px 18px;
  white-space: nowrap;
}

.ghost-button {
  padding: 12px 22px;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.72);
}

.ghost-button.light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.primary-button:hover,
.ghost-button:hover,
.text-link:hover,
.section-more:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-controls {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
}

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  color: var(--white);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-prev,
.hero-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 0;
}

.hero-dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--white);
}

.section-block {
  padding: 74px 0;
}

.section-block.tinted {
  background: linear-gradient(90deg, #fff7ed, #fff1f2);
}

.section-block.cool-bg {
  background: linear-gradient(135deg, #eff6ff, #f8fafc, #ecfeff);
}

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

.section-heading.center {
  justify-content: center;
  text-align: center;
}

.inline-heading {
  margin-bottom: 18px;
}

.section-kicker {
  display: inline-block;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 13px;
}

.section-kicker.hot {
  color: var(--red);
}

.section-kicker.gold {
  color: var(--gold);
}

.section-kicker.green {
  color: var(--green);
}

.section-heading h2,
.category-overview-head span,
.rank-title span {
  margin: 5px 0 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
}

.section-more {
  color: var(--blue);
}

.section-more.red {
  color: var(--red);
}

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

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

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

.movie-card,
.category-overview-card,
.toolbar-card,
.detail-main,
.side-card,
.poster-card,
.rank-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

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

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

.movie-cover,
.rank-cover,
.wide-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-800), var(--slate-950));
}

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

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

.movie-cover img,
.rank-cover img,
.wide-image img,
.compact-card img,
.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover .movie-cover img,
.rank-card:hover .rank-cover img,
.wide-feature-card:hover .wide-image img {
  transform: scale(1.08);
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.88);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

.movie-meta-line {
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-meta-line span:first-child,
.pill-row span {
  padding: 4px 10px;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange), var(--red));
}

.movie-meta-line span:last-child {
  color: var(--gray-500);
}

.movie-card h3,
.wide-feature-card h3,
.rank-card h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.movie-card h3 a:hover,
.wide-feature-card h3 a:hover,
.rank-card h2 a:hover {
  color: var(--orange);
}

.movie-card p,
.wide-feature-card p,
.rank-card p,
.category-overview-card p,
.toolbar-card p,
.side-card p,
.site-footer p {
  color: var(--gray-600);
}

.movie-tags,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.movie-tags span,
.tag-cloud span,
.info-strip span {
  border-radius: 999px;
  color: var(--gray-700);
  background: var(--gray-100);
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 700;
}

.wide-grid,
.category-overview-grid,
.search-layout,
.detail-grid,
.split-layout {
  display: grid;
  gap: 24px;
}

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

.wide-feature-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.wide-content {
  padding: 24px;
}

.wide-image {
  min-height: 260px;
}

.text-link {
  color: var(--orange);
  margin-top: 12px;
}

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

.category-tile {
  display: flex;
  min-height: 172px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.category-tile:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.category-tile strong {
  font-size: 22px;
}

.category-tile span {
  color: inherit;
  opacity: 0.78;
}

.category-tile em {
  display: grid;
  gap: 3px;
  font-style: normal;
  font-size: 13px;
  opacity: 0.85;
}

.split-layout {
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: start;
}

.cta-panel {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.26), transparent 25%),
    linear-gradient(135deg, var(--orange), var(--red), var(--pink));
  padding: 52px;
  box-shadow: var(--shadow-soft);
}

.cta-panel h2 {
  max-width: 600px;
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1;
}

.cta-panel p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.rank-panel {
  border-radius: var(--radius-xl);
  background: var(--white);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.rank-title,
.category-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.rank-title a,
.category-overview-head a {
  color: var(--orange);
  font-weight: 900;
}

.rank-row,
.compact-card {
  display: grid;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--gray-100);
}

.rank-row {
  grid-template-columns: 42px 64px 1fr;
}

.rank-row img,
.compact-card img {
  width: 64px;
  height: 78px;
  border-radius: 12px;
  background: var(--slate-800);
  object-fit: cover;
}

.rank-num {
  color: var(--orange);
  font-weight: 900;
  font-size: 18px;
}

.rank-info,
.compact-card span {
  display: grid;
  min-width: 0;
}

.rank-info strong,
.compact-card strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-info em,
.compact-card em {
  color: var(--gray-500);
  overflow: hidden;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
}

.page-hero {
  color: var(--white);
  padding: 78px 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
}

.page-hero.category-hero {
  background: linear-gradient(90deg, var(--orange), var(--red), var(--pink));
}

.page-hero.rank-hero {
  background: linear-gradient(90deg, #7c2d12, var(--red), var(--pink));
}

.page-hero.search-hero {
  background: linear-gradient(90deg, #0f172a, #2563eb, #06b6d4);
}

.page-hero p {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  opacity: 0.82;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(40px, 7vw, 68px);
  line-height: 1;
}

.page-hero span {
  display: block;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
}

.detail-main .breadcrumb {
  color: var(--gray-500);
  margin: 0 0 20px;
}

.breadcrumb a {
  font-weight: 800;
}

.breadcrumb em,
.breadcrumb b {
  font-style: normal;
  opacity: 0.75;
}

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

.category-overview-card {
  padding: 22px;
}

.compact-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.compact-card {
  grid-template-columns: 64px 1fr;
  padding: 0;
  border: 0;
}

.toolbar-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 24px;
}

.toolbar-card h2 {
  margin: 0 0 4px;
}

.toolbar-card p {
  margin: 0;
}

.local-filter {
  display: grid;
  gap: 8px;
  min-width: 280px;
  color: var(--gray-700);
  font-weight: 800;
}

.local-filter input,
.big-search input {
  border: 0;
  outline: 0;
}

.local-filter input {
  border-radius: 999px;
  background: var(--gray-100);
  padding: 12px 16px;
  color: var(--gray-900);
}

.empty-filter-message,
.search-empty {
  display: none;
  width: min(520px, calc(100% - 32px));
  margin: 24px auto 0;
  color: var(--gray-600);
  text-align: center;
}

.empty-filter-message.show,
.search-empty.show {
  display: block;
}

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

.rank-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  overflow: hidden;
}

.rank-cover {
  min-height: 230px;
}

.rank-cover span {
  position: absolute;
  left: 12px;
  top: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(90deg, var(--orange), var(--red));
  font-weight: 900;
}

.rank-card.top .rank-cover span {
  background: linear-gradient(90deg, #fbbf24, var(--orange));
}

.rank-card-body {
  padding: 22px;
}

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

.big-search {
  max-width: 640px;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.2);
}

.big-search input {
  flex: 1;
  padding: 16px 20px;
  font-size: 18px;
}

.big-search button {
  padding: 16px 24px;
}

.side-card {
  padding: 22px;
}

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

.player-shell {
  background: #000;
  padding: 28px 0;
}

.player-container {
  max-width: 1180px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  cursor: pointer;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.62));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-start span {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 18px 42px rgba(249, 115, 22, 0.35);
  font-size: 34px;
}

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

.detail-section {
  background: var(--gray-50);
}

.detail-grid {
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
}

.detail-main {
  padding: 30px;
}

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

.detail-main h1 {
  margin: 16px 0 0;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1;
}

.lead-text {
  margin: 22px 0;
  color: var(--gray-700);
  font-size: 20px;
  font-weight: 700;
}

.info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.info-strip b {
  margin-right: 6px;
  color: var(--gray-500);
}

.detail-main h2 {
  margin: 28px 0 10px;
  font-size: 26px;
}

.detail-main p {
  color: var(--gray-700);
  font-size: 17px;
}

.detail-side {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 92px;
}

.poster-card {
  overflow: hidden;
  padding: 16px;
}

.poster-card img {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  background: var(--slate-800);
  margin-bottom: 14px;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(135deg, var(--slate-950), var(--slate-800), var(--slate-900));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 50px 0;
}

.footer-brand {
  color: var(--white);
  font-size: 20px;
}

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

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

.footer-links a:hover {
  color: #fb923c;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  padding: 18px 16px;
  text-align: center;
}

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

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

  .detail-side {
    position: static;
  }
}

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

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .header-inner {
    min-height: 62px;
  }

  .hero-slider {
    height: 560px;
  }

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

  .hero-controls {
    left: 16px;
    right: auto;
    bottom: 20px;
  }

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

  .local-filter {
    min-width: 0;
  }

  .movie-grid.three-col,
  .movie-grid.four-col,
  .wide-grid,
  .category-grid,
  .category-overview-grid,
  .rank-grid-page,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .wide-feature-card,
  .rank-card {
    grid-template-columns: 1fr;
  }

  .wide-image,
  .rank-cover {
    min-height: 220px;
  }

  .cta-panel {
    min-height: auto;
    padding: 32px;
  }
}

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

  .brand-text {
    font-size: 17px;
  }

  .hero-slider {
    height: 520px;
  }

  .hero-copy p,
  .lead-text {
    font-size: 17px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

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

  .section-block {
    padding: 48px 0;
  }

  .movie-card-body,
  .detail-main,
  .side-card {
    padding: 18px;
  }

  .page-hero {
    padding: 52px 0;
  }
}
