:root {
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-surface-soft: #fff7ed;
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-primary: #ea580c;
  --color-primary-dark: #c2410c;
  --color-primary-soft: #ffedd5;
  --color-accent: #f59e0b;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 10px 28px rgba(15, 23, 42, 0.10);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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: 60;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.28);
}

.brand-copy {
  display: grid;
  line-height: 1.18;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--color-muted);
  font-size: 12px;
}

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

.nav-link,
.mobile-link {
  color: #374151;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--color-border);
  padding: 12px 16px 18px;
  background: #ffffff;
}

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

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

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

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

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(234, 88, 12, 0.45), transparent 28%), linear-gradient(135deg, #111827, #431407);
  overflow: hidden;
}

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

.hero-bg img.image-missing,
.detail-bg img.image-missing,
.poster-shell img.image-missing {
  display: none;
}

.hero-overlay,
.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 86px;
  color: #ffffff;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow {
  color: var(--color-primary);
  background: var(--color-primary-soft);
}

.hero h1 {
  max-width: 820px;
  margin: 0 0 16px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 760px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
}

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

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

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.28);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.hero-meta {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.hero-search {
  width: min(720px, 100%);
  display: flex;
  gap: 10px;
  margin-top: 24px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  padding: 0 12px;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.hero-search button,
.search-panel button {
  border: 0;
  color: #ffffff;
  background: var(--color-primary);
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
}

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

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

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

.quick-panel {
  padding: 28px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
}

.quick-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1.2fr);
  gap: 28px;
  align-items: center;
}

.quick-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
}

.quick-copy p {
  margin: 0;
  color: var(--color-muted);
}

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

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: #374151;
  background: #ffffff;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.chip:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.content-section {
  padding: 64px 0;
}

.section-white {
  background: #ffffff;
}

.section-gray {
  background: #f8fafc;
}

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

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

.section-heading.slim {
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-more {
  color: var(--color-primary);
  font-weight: 900;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

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

.movie-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(234, 88, 12, 0.38);
  box-shadow: var(--shadow-card);
}

.movie-thumb {
  position: relative;
  overflow: hidden;
}

.poster-shell {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 30% 15%, rgba(251, 146, 60, 0.85), transparent 38%), linear-gradient(135deg, #111827, #7c2d12);
}

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

.poster-wide {
  aspect-ratio: 16 / 9;
}

.poster-shell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.poster-fallback-title {
  position: absolute;
  inset: auto 14px 14px 14px;
  z-index: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.play-dot {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(234, 88, 12, 0.92);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  padding: 0 8px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-primary);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.movie-card-body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
}

.meta-line span:not(:last-child)::after {
  content: "·";
  margin-left: 6px;
  color: #d1d5db;
}

.movie-card h3 {
  display: -webkit-box;
  min-height: 2.8em;
  margin: 0;
  overflow: hidden;
  color: #111827;
  font-size: 17px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span,
.detail-tags a {
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 700;
}

.detail-tags a:hover {
  color: var(--color-primary);
  background: var(--color-primary-soft);
}

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

.movie-card-compact {
  flex-direction: row;
  align-items: center;
  padding: 12px;
}

.movie-card-compact .movie-thumb {
  width: 92px;
  flex: 0 0 92px;
  border-radius: 14px;
}

.movie-card-compact .poster-ratio {
  aspect-ratio: 1 / 1;
}

.movie-card-compact .movie-card-body {
  padding: 8px 4px 8px 14px;
}

.movie-card-compact .movie-card h3,
.movie-card-compact h3 {
  min-height: 0;
  font-size: 15px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background: #111827;
  color: #ffffff;
}

.simple-hero {
  padding: 78px 0 58px;
  background: radial-gradient(circle at 20% 10%, rgba(251, 146, 60, 0.46), transparent 32%), linear-gradient(135deg, #111827, #431407);
}

.simple-hero h1 {
  max-width: 900px;
  margin: 0 0 14px;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.simple-hero p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.back-link,
.breadcrumbs a {
  color: #fed7aa;
  font-weight: 800;
}

.page-stack {
  padding: 54px 0 72px;
}

.category-block + .category-block {
  margin-top: 46px;
}

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

.category-tile {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--color-primary-soft);
  font-size: 22px;
}

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

.category-tile small,
.category-tile em {
  color: var(--color-muted);
  font-style: normal;
}

.local-filter {
  width: min(600px, 100%);
  margin-top: 24px;
}

.local-filter input,
.search-panel input,
.search-panel select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #ffffff;
  color: var(--color-text);
  padding: 0 14px;
  outline: 0;
}

.local-filter input:focus,
.search-panel input:focus,
.search-panel select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.12);
}

.empty-state {
  margin: 28px 0 0;
  padding: 26px;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-muted);
  text-align: center;
  background: #ffffff;
}

.ranking-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.ranking-hero-card {
  position: relative;
  display: block;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #111827;
  box-shadow: var(--shadow-soft);
}

.ranking-hero-card .poster-shell {
  height: 100%;
}

.ranking-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 68%);
}

.ranking-hero-card span,
.ranking-hero-card strong,
.ranking-hero-card small {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
}

.ranking-hero-card span {
  top: 20px;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-primary);
  font-weight: 900;
}

.ranking-hero-card strong {
  bottom: 48px;
  color: #ffffff;
  font-size: 24px;
}

.ranking-hero-card small {
  bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
}

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

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 26px;
}

.pager:last-child {
  margin: 28px 0 0;
}

.pager-btn {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--color-primary);
  font-weight: 800;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1.7fr) repeat(4, minmax(140px, 1fr)) auto;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.search-summary {
  margin: 22px 0;
  color: var(--color-muted);
  font-weight: 800;
}

.detail-hero {
  min-height: 620px;
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 34px 0 72px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
}

.detail-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 38px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.detail-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.detail-copy p {
  max-width: 820px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.detail-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.detail-tags {
  margin-bottom: 24px;
}

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

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

.player-card,
.detail-side-card,
.text-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.player-card {
  overflow: hidden;
}

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

.movie-player {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 10px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.24), rgba(0, 0, 0, 0.38));
  cursor: pointer;
}

.player-start span {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
  font-size: 30px;
}

.player-start strong {
  font-size: 18px;
}

.player-start.hidden {
  display: none;
}

.player-status {
  padding: 14px 18px;
  color: var(--color-muted);
  font-weight: 700;
}

.detail-side-card,
.text-card {
  padding: 24px;
}

.detail-side-card h2,
.text-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.detail-side-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.detail-side-card dt {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.detail-side-card dd {
  margin: -8px 0 8px;
  font-weight: 800;
}

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

.text-card p {
  margin: 0;
  color: #374151;
  font-size: 16px;
  line-height: 1.85;
}

.site-footer {
  color: #d1d5db;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 34px;
  padding: 46px 0;
}

.brand-footer .brand-copy strong {
  color: #ffffff;
}

.footer-brand p,
.footer-stats {
  max-width: 560px;
  color: #9ca3af;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: #d1d5db;
}

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

.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  text-align: center;
}

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

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

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

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

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

  .brand-copy strong {
    font-size: 17px;
  }

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

  .hero-content {
    min-height: 680px;
    padding-top: 80px;
  }

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

  .quick-grid,
  .detail-layout,
  .footer-grid,
  .article-grid,
  .ranking-hero-grid {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    width: min(300px, 100%);
  }

  .grid-4,
  .grid-3,
  .ranking-grid,
  .ranking-list,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .brand-icon {
    width: 38px;
    height: 38px;
  }

  .brand-copy small {
    display: none;
  }

  .content-section {
    padding: 42px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .grid-4,
  .grid-3,
  .ranking-grid,
  .ranking-list,
  .category-grid,
  .search-panel {
    grid-template-columns: 1fr;
  }

  .movie-card-compact {
    align-items: stretch;
  }

  .movie-card-compact .movie-thumb {
    width: 86px;
    flex-basis: 86px;
  }

  .simple-hero {
    padding: 52px 0 42px;
  }

  .detail-copy p {
    font-size: 17px;
  }
}
