* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: #111827;
  background: #f9fafb;
  -webkit-font-smoothing: antialiased;
}

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

img,
video {
  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: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.88);
  backdrop-filter: blur(14px);
}

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

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-weight: 900;
  font-size: 24px;
  background: linear-gradient(135deg, #ea580c, #dc2626);
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #ea580c, #dc2626);
  -webkit-background-clip: text;
  color: transparent;
}

.brand-subtitle {
  margin-top: 5px;
  color: #6b7280;
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.nav-link:hover,
.nav-link.is-active {
  color: #ea580c;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 14px;
  background: #fff7ed;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #ea580c;
}

.mobile-nav {
  display: none;
  border-top: 1px solid #f3f4f6;
}

.mobile-nav-inner {
  display: grid;
  gap: 8px;
  padding: 12px 0 18px;
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 14px;
  color: #374151;
  font-weight: 700;
}

.mobile-link.is-active,
.mobile-link:hover {
  color: #ea580c;
  background: #fff7ed;
}

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

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease, transform 0.9s ease;
  transform: scale(1.02);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(234, 88, 12, 0.35), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.68) 44%, rgba(0, 0, 0, 0.24)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.88), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 52px;
  color: #ffffff;
}

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

.hero-kicker,
.page-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(251, 146, 60, 0.35);
  border-radius: 999px;
  color: #fed7aa;
  background: rgba(234, 88, 12, 0.18);
  font-size: 14px;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: #e5e7eb;
  font-size: 18px;
  line-height: 1.9;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #9a3412;
  background: #ffedd5;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span {
  color: #fed7aa;
  background: rgba(255, 247, 237, 0.12);
  border: 1px solid rgba(254, 215, 170, 0.18);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #ea580c, #dc2626);
  box-shadow: 0 16px 35px rgba(220, 38, 38, 0.28);
}

.btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  color: #ea580c;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(255, 255, 255, 0.2);
}

.btn-soft {
  color: #ea580c;
  background: #fff7ed;
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 2 / 3;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #ea580c, #dc2626);
  font-size: 24px;
  box-shadow: 0 15px 35px rgba(234, 88, 12, 0.35);
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 34px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 30px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.hero-dot.is-active {
  width: 52px;
  background: #ea580c;
}

.quick-search-block {
  position: relative;
  z-index: 8;
  margin-top: -38px;
}

.filter-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(12px);
}

.filter-input-wrap {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  min-height: 48px;
  border-radius: 16px;
  background: #f9fafb;
  color: #ea580c;
}

.filter-input-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #111827;
  background: transparent;
}

.filter-selects {
  display: flex;
  gap: 10px;
}

.filter-selects select {
  min-height: 48px;
  padding: 0 38px 0 14px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  color: #374151;
  background: #ffffff;
}

.empty-state {
  margin: 28px 0;
  padding: 42px;
  border: 1px dashed #fed7aa;
  border-radius: 24px;
  color: #9a3412;
  background: #fff7ed;
  text-align: center;
  font-weight: 800;
}

.page-section {
  padding: 70px 0;
}

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

.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #111827;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.04em;
}

.section-heading h2 span {
  color: #ea580c;
}

.section-heading p {
  margin: 8px 0 0;
  color: #6b7280;
}

.section-more {
  color: #ea580c;
  font-weight: 900;
}

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

.all-movies-grid {
  padding-top: 28px;
}

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 88, 12, 0.25);
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.12);
}

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

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

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

.poster-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 50%);
}

.poster-play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #ea580c, #dc2626);
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.3);
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #ea580c;
  font-size: 12px;
  font-weight: 900;
}

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

.movie-card h3 a:hover {
  color: #ea580c;
}

.movie-card p {
  min-height: 54px;
  margin: 0 0 14px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.65;
}

.spotlight-section {
  background: linear-gradient(135deg, #fff7ed, #ffffff 48%, #fef2f2);
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border-radius: 24px;
  color: #ffffff;
  background: #111827;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.14);
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.category-tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.1));
}

.category-tile strong,
.category-tile em {
  position: absolute;
  left: 18px;
  right: 18px;
}

.category-tile strong {
  bottom: 54px;
  font-size: 21px;
  font-style: normal;
}

.category-tile em {
  bottom: 22px;
  color: #e5e7eb;
  font-size: 13px;
  font-style: normal;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 58px 86px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
}

.rank-number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #ea580c, #dc2626);
  font-weight: 900;
}

.rank-cover {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 2 / 3;
  background: #111827;
}

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

.rank-body h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.rank-body p {
  min-height: 0;
  margin: 0 0 8px;
}

.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
}

.rank-action {
  padding: 10px 14px;
  border-radius: 999px;
  color: #ea580c;
  background: #fff7ed;
  font-weight: 900;
}

.home-band {
  padding: 64px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #ea580c, #dc2626);
}

.home-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.home-band span {
  color: #fed7aa;
  font-weight: 900;
}

.home-band h2 {
  margin: 8px 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.05em;
}

.home-band p {
  max-width: 760px;
  margin: 0;
  color: #ffedd5;
  line-height: 1.8;
}

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

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
}

.movie-card-horizontal .movie-poster {
  height: 100%;
}

.subpage-main {
  padding-bottom: 70px;
}

.page-hero {
  padding: 74px 0 36px;
}

.small-hero {
  min-height: 260px;
  display: flex;
  align-items: center;
}

.small-hero .page-kicker {
  color: #ea580c;
  background: #fff7ed;
}

.page-hero h1,
.channel-hero h1,
.rank-hero h1,
.detail-copy h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.page-hero p,
.channel-hero p,
.rank-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #6b7280;
  font-size: 18px;
  line-height: 1.8;
}

.category-overview-list {
  display: grid;
  gap: 38px;
}

.category-overview-block {
  padding: 26px;
  border: 1px solid #e5e7eb;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.06);
}

.category-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.category-overview-head span {
  color: #ea580c;
  font-weight: 900;
}

.category-overview-head h2 {
  margin: 8px 0;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.category-overview-head p {
  margin: 0;
  color: #6b7280;
}

.mini-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.mini-grid .movie-card-body {
  padding: 14px;
}

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

.channel-hero,
.rank-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  color: #ffffff;
  background: #111827;
}

.channel-hero img,
.rank-hero img,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.channel-hero-shade,
.rank-hero-layer,
.detail-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(234, 88, 12, 0.32), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.35)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent 55%);
}

.channel-hero-content,
.rank-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 440px;
  flex-direction: column;
  justify-content: center;
}

.channel-hero h1,
.rank-hero h1,
.channel-hero p,
.rank-hero p {
  color: #ffffff;
}

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

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  color: #fed7aa;
  font-weight: 800;
}

.breadcrumb a:hover {
  color: #ffffff;
}

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

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 2 / 3;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5);
}

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

.detail-copy h1 {
  color: #ffffff;
}

.detail-copy p {
  max-width: 780px;
  margin: 22px 0;
  color: #e5e7eb;
  font-size: 18px;
  line-height: 1.9;
}

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

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.player-section {
  margin-top: -54px;
  position: relative;
  z-index: 5;
}

.player-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  aspect-ratio: 16 / 9;
  background: #000000;
  box-shadow: 0 30px 80px rgba(17, 24, 39, 0.24);
}

.movie-player,
.player-cover,
.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.movie-player {
  object-fit: contain;
  background: #000000;
}

.player-cover {
  z-index: 2;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover img {
  object-fit: cover;
  filter: brightness(0.45);
}

.player-button {
  position: relative;
  z-index: 3;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #ea580c, #dc2626);
  font-size: 34px;
  box-shadow: 0 18px 50px rgba(220, 38, 38, 0.42);
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding-top: 48px;
}

.detail-article,
.detail-side {
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.06);
}

.detail-article {
  padding: 32px;
}

.detail-article h2,
.detail-side h2 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.detail-article p {
  margin: 0 0 28px;
  color: #374151;
  font-size: 17px;
  line-height: 2;
}

.detail-side {
  align-self: start;
  padding: 26px;
}

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

.detail-side dt {
  color: #ea580c;
  font-size: 13px;
  font-weight: 900;
}

.detail-side dd {
  margin: 0;
  color: #374151;
  line-height: 1.65;
}

.site-footer {
  margin-top: 60px;
  padding: 56px 0;
  color: #d1d5db;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: #9ca3af;
  line-height: 1.8;
}

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

.site-footer a {
  display: block;
  margin: 9px 0;
  color: #d1d5db;
}

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

[hidden] {
  display: none !important;
}

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

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

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

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
}

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

  .nav-toggle {
    display: block;
  }

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

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-content: center;
    padding-top: 40px;
    padding-bottom: 90px;
  }

  .hero-poster {
    display: none;
  }

  .filter-panel,
  .home-band-inner,
  .category-overview-head {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-selects {
    width: 100%;
    flex-direction: column;
  }

  .movie-grid,
  .mini-grid,
  .horizontal-grid,
  .rank-list.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .rank-item {
    grid-template-columns: 46px 72px minmax(0, 1fr);
  }

  .rank-action {
    grid-column: 2 / 4;
    text-align: center;
  }

  .movie-card-horizontal {
    grid-template-columns: 128px minmax(0, 1fr);
  }

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

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

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

  .brand-mark {
    width: 40px;
    height: 40px;
  }

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

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero p,
  .detail-copy p,
  .page-hero p {
    font-size: 16px;
  }

  .movie-grid,
  .mini-grid,
  .horizontal-grid,
  .category-grid,
  .rank-list.compact {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 42px 68px minmax(0, 1fr);
    gap: 10px;
  }

  .rank-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

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

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

  .detail-hero-content {
    padding-bottom: 84px;
  }

  .player-section {
    margin-top: -38px;
  }

  .player-box {
    border-radius: 20px;
  }

  .player-button {
    width: 72px;
    height: 72px;
  }
}
