:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: rgba(15, 23, 42, 0.72);
  --panel-strong: #111827;
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --orange: #fb923c;
  --red: #ef4444;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 32rem),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 34rem),
    linear-gradient(180deg, #020617 0%, #0f172a 45%, #020617 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(15, 23, 42, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: white;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(34, 211, 238, 0.28);
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #67e8f9, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-nav-link {
  color: #dbeafe;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 10px 15px;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #fff;
  background: rgba(51, 65, 85, 0.82);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
  color: #e2e8f0;
  background: rgba(2, 6, 23, 0.56);
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
}

.header-search input {
  width: 260px;
  padding: 10px 16px;
}

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

.header-search button,
.mobile-search button,
.primary-button {
  border: 0;
  color: white;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 16px 36px rgba(34, 211, 238, 0.24);
}

.header-search button,
.mobile-search button {
  padding: 10px 18px;
}

.primary-button {
  padding: 13px 24px;
}

.ghost-button,
.section-link {
  border: 1px solid rgba(34, 211, 238, 0.32);
  color: #cffafe;
  background: rgba(8, 47, 73, 0.34);
  padding: 11px 20px;
}

.header-search button:hover,
.mobile-search button:hover,
.primary-button:hover,
.ghost-button:hover,
.section-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(34, 211, 238, 0.2);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
}

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

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 14px 16px 18px;
  background: rgba(15, 23, 42, 0.94);
}

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

.mobile-nav-link {
  display: block;
  padding: 12px 14px;
}

.mobile-search {
  margin-top: 12px;
}

.mobile-search input {
  flex: 1;
  padding: 11px 14px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  margin: 32px 0 72px;
}

.hero-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity 0.56s ease, transform 0.56s ease, visibility 0.56s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.44) 48%, rgba(2, 6, 23, 0.18)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.94), transparent 58%);
}

.hero-content {
  position: absolute;
  left: clamp(24px, 6vw, 72px);
  bottom: clamp(30px, 7vw, 78px);
  max-width: 760px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 16px 0 18px;
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.hero-content p {
  max-width: 700px;
  color: #dbeafe;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.78;
}

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

.hero-meta {
  margin: 22px 0 26px;
}

.hero-meta span,
.detail-meta span,
.movie-meta-line span {
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.85rem;
}

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

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: white;
  background: rgba(2, 6, 23, 0.54);
  transform: translateY(-50%);
  font-size: 2rem;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

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

.hero-side {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(2, 6, 23, 0.84));
  box-shadow: var(--shadow);
  padding: 20px;
}

.hero-side-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hero-side-title span {
  font-weight: 900;
  font-size: 1.1rem;
}

.hero-side-title a {
  color: var(--cyan);
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-mini-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.58);
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-mini-card + .hero-mini-card {
  margin-top: 12px;
}

.hero-mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.28);
  background: rgba(30, 41, 59, 0.84);
}

.hero-mini-card img {
  width: 92px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
}

.hero-mini-card strong,
.hero-mini-card em {
  display: block;
}

.hero-mini-card strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hero-mini-card em {
  margin-top: 6px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.86rem;
}

.page-section {
  margin: 74px auto;
}

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

.section-heading h2,
.page-title h1,
.detail-copy h1,
.story-block h2 {
  margin: 8px 0 0;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.section-heading p,
.page-title p,
.story-block p,
.detail-one-line {
  color: var(--muted-strong);
  line-height: 1.78;
}

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

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

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

.horizontal-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 320px);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 22px;
  scroll-snap-type: x proximity;
}

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(34, 211, 238, 0.32);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.movie-poster {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
  background: #0f172a;
}

.movie-card-featured .movie-poster {
  height: 300px;
}

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

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

.poster-shadow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(2, 6, 23, 0.92));
  opacity: 0.92;
}

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-weight: 900;
}

.play-chip {
  right: 12px;
  bottom: 12px;
  color: white;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  padding: 8px 12px;
  font-size: 0.84rem;
}

.rank-badge {
  left: 12px;
  top: 12px;
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  background: linear-gradient(135deg, #fef08a, #fb923c);
  font-style: normal;
}

.movie-info {
  padding: 18px;
}

.movie-meta-line {
  gap: 7px;
  margin-bottom: 12px;
}

.movie-meta-line span {
  padding: 4px 8px;
  color: #bae6fd;
  font-size: 0.75rem;
}

.movie-info h3 {
  margin: 0 0 10px;
  color: white;
  font-size: 1.12rem;
  line-height: 1.36;
  font-weight: 900;
}

.movie-info p {
  margin: 0;
  min-height: 3.25em;
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.92rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #cffafe;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.22);
  padding: 5px 9px;
  font-size: 0.78rem;
}

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

.category-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #0f172a;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.category-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.42s ease;
}

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

.category-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.08));
}

.category-card strong,
.category-card em {
  position: absolute;
  left: 22px;
  right: 22px;
}

.category-card strong {
  bottom: 62px;
  font-size: 1.35rem;
  font-weight: 950;
}

.category-card em {
  bottom: 20px;
  color: var(--muted-strong);
  font-style: normal;
  line-height: 1.45;
}

.ranking-list,
.ranking-cards {
  display: grid;
  gap: 12px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 44px 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
}

.ranking-row span,
.ranking-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #020617;
  background: linear-gradient(135deg, #67e8f9, #60a5fa);
  font-weight: 950;
}

.ranking-row img {
  width: 72px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
}

.ranking-row strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ranking-row em {
  color: var(--muted);
  font-style: normal;
  white-space: nowrap;
}

.page-title {
  padding: 64px 0 24px;
}

.page-title h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.page-title p {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: 1.08rem;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.category-cover-stack img {
  width: 100%;
  height: 88px;
  border-radius: 14px;
  object-fit: cover;
}

.category-overview-card h2 {
  margin: 8px 0 10px;
  font-size: 1.5rem;
  font-weight: 950;
}

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

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.filter-bar input,
.filter-bar select {
  min-height: 48px;
  padding: 0 18px;
}

.filter-bar input {
  min-width: min(520px, 100%);
  flex: 1;
}

.expanded-filter select {
  min-width: 170px;
}

.empty-state {
  margin: 40px 0 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.7);
  text-align: center;
}

.ranking-card {
  display: grid;
  grid-template-columns: 54px 150px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.76);
}

.ranking-thumb img {
  width: 150px;
  height: 94px;
  border-radius: 16px;
  object-fit: cover;
}

.ranking-copy h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 950;
}

.ranking-copy p {
  margin: 0 0 10px;
  color: var(--muted-strong);
  line-height: 1.6;
}

.detail-hero {
  padding: 48px 0 34px;
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 211, 238, 0.18), transparent 30rem),
    linear-gradient(180deg, rgba(15, 23, 42, 0.8), transparent);
}

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

.detail-poster {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: #bae6fd;
}

.detail-copy h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1;
}

.detail-one-line {
  margin: 20px 0;
  max-width: 850px;
  font-size: 1.15rem;
}

.detail-meta {
  margin-bottom: 10px;
}

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

.detail-player-section {
  margin-top: 32px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  color: white;
  background:
    radial-gradient(circle at center, rgba(34, 211, 238, 0.18), transparent 20rem),
    linear-gradient(180deg, rgba(2, 6, 23, 0.3), rgba(2, 6, 23, 0.86));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 999px;
  color: #020617;
  background: linear-gradient(135deg, #67e8f9, #60a5fa);
  box-shadow: 0 24px 60px rgba(34, 211, 238, 0.36);
  font-size: 2.2rem;
  text-indent: 6px;
}

.player-overlay strong {
  max-width: min(760px, 90%);
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.1;
}

.content-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.story-block {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.78);
}

.story-block h2 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.story-block p {
  margin: 0;
}

.site-footer {
  margin-top: 90px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.72);
}

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

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.site-footer h2 {
  margin: 0 0 15px;
  color: white;
  font-size: 1.08rem;
  font-weight: 950;
}

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

.footer-links a {
  color: var(--muted-strong);
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 16px 24px;
  text-align: center;
}

@media (max-width: 1100px) {
  .header-search {
    display: none;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-side-title {
    grid-column: 1 / -1;
  }

  .hero-mini-card + .hero-mini-card {
    margin-top: 0;
  }

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

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

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

  .mobile-toggle {
    display: block;
  }

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

  .hero-carousel {
    height: 520px;
  }

  .hero-side {
    grid-template-columns: 1fr;
  }

  .movie-grid,
  .featured-grid,
  .compact-grid,
  .category-grid,
  .category-overview-grid,
  .content-panel,
  .footer-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    max-width: 360px;
  }

  .ranking-row {
    grid-template-columns: 38px 64px minmax(0, 1fr);
  }

  .ranking-row em {
    display: none;
  }

  .ranking-card {
    grid-template-columns: 44px 110px minmax(0, 1fr);
  }

  .ranking-card .ghost-button {
    grid-column: 1 / -1;
  }

  .ranking-thumb img {
    width: 110px;
    height: 74px;
  }
}

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

  .brand-text {
    font-size: 1.04rem;
  }

  .hero-shell {
    margin-top: 18px;
  }

  .hero-carousel {
    height: 480px;
    border-radius: 20px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 42px;
  }

  .hero-control {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .section-heading {
    display: block;
  }

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

  .movie-poster {
    height: 240px;
  }

  .detail-poster img {
    height: 420px;
  }

  .play-circle {
    width: 72px;
    height: 72px;
  }
}
