:root {
  color-scheme: dark;
  --bg: #0c0a09;
  --bg-soft: #1c1917;
  --bg-card: #292524;
  --bg-card-soft: rgba(41, 37, 36, 0.72);
  --line: #44403c;
  --text: #fafaf9;
  --muted: #a8a29e;
  --soft: #d6d3d1;
  --accent: #f59e0b;
  --accent-strong: #fbbf24;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --shell: 1408px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(245, 158, 11, 0.12), transparent 32rem),
    linear-gradient(180deg, #0c0a09 0%, #1c1917 48%, #0c0a09 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
  background: linear-gradient(135deg, #292524, #0c0a09);
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(68, 64, 60, 0.8);
  background: rgba(28, 25, 23, 0.9);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: min(var(--shell), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--accent-strong);
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: #0c0a09;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 18px 34px rgba(245, 158, 11, 0.25);
  font-size: 15px;
}

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

.nav-link,
.nav-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--soft);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-chip:hover,
.nav-link.is-active {
  color: #0c0a09;
  background: var(--accent);
  transform: translateY(-1px);
}

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

.nav-chip {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  color: var(--accent-strong);
  background: rgba(245, 158, 11, 0.08);
  font-size: 14px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(41, 37, 36, 0.8);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--accent-strong);
}

.hero-carousel {
  position: relative;
  height: min(760px, calc(100vh - 72px));
  min-height: 560px;
  overflow: hidden;
  background: var(--bg);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.96) 0%, rgba(12, 10, 9, 0.78) 42%, rgba(12, 10, 9, 0.42) 100%),
    linear-gradient(0deg, rgba(12, 10, 9, 1) 0%, rgba(12, 10, 9, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--shell), calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 0 92px;
}

.hero-kicker,
.eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-kicker span,
.eyebrow {
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  padding: 7px 12px;
}

.hero-content h1,
.page-hero h1,
.detail-copy h1 {
  max-width: 880px;
  margin: 18px 0 18px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-content p,
.page-hero p,
.detail-one-line {
  max-width: 720px;
  margin: 0;
  color: var(--soft);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.72;
}

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

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

.hero-tags span,
.tag-line span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(250, 250, 249, 0.1);
  color: var(--soft);
  padding: 6px 10px;
  font-size: 13px;
}

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

.small-actions {
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  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 {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0c0a09;
  box-shadow: 0 20px 45px rgba(245, 158, 11, 0.28);
}

.btn-ghost {
  border-color: rgba(245, 158, 11, 0.32);
  background: rgba(28, 25, 23, 0.6);
  color: var(--accent-strong);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(245, 158, 11, 0.34);
  border-radius: 50%;
  background: rgba(12, 10, 9, 0.54);
  color: var(--accent-strong);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(250, 250, 249, 0.36);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.section-shell {
  width: min(var(--shell), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 0;
}

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

.section-heading h2,
.panel-title h2,
.content-card h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-link,
.panel-title a {
  color: var(--accent-strong);
  font-weight: 800;
  white-space: nowrap;
}

.movie-grid,
.feature-grid,
.category-grid,
.category-overview-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(68, 64, 60, 0.85);
  border-radius: 22px;
  background: rgba(41, 37, 36, 0.74);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.58);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), 0 0 40px rgba(245, 158, 11, 0.12);
}

.poster-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #292524, #0c0a09);
}

.movie-card-large .poster-frame {
  aspect-ratio: 16 / 9;
}

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

.movie-card:hover .poster-frame img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 10, 9, 0.7), transparent 42%);
  pointer-events: none;
}

.rating-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.rating-badge {
  right: 12px;
  color: #0c0a09;
  background: var(--accent);
}

.rank-badge {
  left: 12px;
  color: var(--accent-strong);
  background: rgba(12, 10, 9, 0.76);
  border: 1px solid rgba(245, 158, 11, 0.34);
}

.card-body {
  padding: 16px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
}

.card-body h3 {
  margin: 10px 0 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

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

.tag-line span {
  padding: 4px 8px;
  font-size: 12px;
}

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

.ranking-panel,
.content-card,
.filter-block,
.category-overview-card,
.player-card {
  border: 1px solid rgba(68, 64, 60, 0.88);
  border-radius: var(--radius);
  background: rgba(28, 25, 23, 0.82);
  box-shadow: var(--shadow);
}

.ranking-panel {
  padding: 20px;
}

.sticky-panel {
  position: sticky;
  top: 96px;
}

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

.panel-title h2 {
  font-size: 24px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 40px 54px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 9px;
  border-radius: 16px;
  background: rgba(41, 37, 36, 0.72);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  background: rgba(245, 158, 11, 0.12);
  transform: translateX(3px);
}

.rank-item img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-number,
.rank-score {
  color: var(--accent-strong);
  font-weight: 900;
}

.rank-title {
  min-width: 0;
  color: var(--soft);
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.category-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(68, 64, 60, 0.8);
  border-radius: var(--radius);
  background: var(--bg-card);
}

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

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

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 10, 9, 0.96), rgba(12, 10, 9, 0.28));
}

.category-card > div {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 24px;
}

.category-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.category-card p {
  margin: 0 0 18px;
  color: var(--soft);
  line-height: 1.65;
}

.category-mini {
  display: grid;
  gap: 6px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
}

.page-hero,
.detail-hero {
  min-height: 430px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(68, 64, 60, 0.78);
}

.page-hero {
  display: flex;
  align-items: flex-end;
  padding: 96px 0 72px;
}

.shallow-hero {
  min-height: 320px;
  background:
    radial-gradient(circle at 14% 20%, rgba(245, 158, 11, 0.14), transparent 26rem),
    linear-gradient(135deg, #1c1917, #0c0a09);
}

.page-hero > div {
  width: min(var(--shell), calc(100% - 32px));
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 72px);
}

.filter-block {
  margin-bottom: 28px;
  padding: 20px;
}

.filter-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, minmax(160px, 1fr));
  gap: 14px;
}

.filter-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(68, 64, 60, 0.9);
  border-radius: 14px;
  background: rgba(12, 10, 9, 0.74);
  color: var(--text);
  padding: 0 14px;
  outline: none;
}

.filter-grid input:focus,
.filter-grid select:focus {
  border-color: rgba(245, 158, 11, 0.8);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.empty-state {
  display: none;
  margin-top: 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-strong);
  font-weight: 800;
}

.empty-state.is-visible {
  display: block;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  padding: 20px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.52);
}

.category-cover-stack {
  position: relative;
  min-height: 210px;
}

.category-cover-stack img {
  position: absolute;
  width: 45%;
  height: 76%;
  object-fit: cover;
  border: 4px solid #1c1917;
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.35);
}

.category-cover-stack img:nth-child(1) {
  left: 0;
  top: 10%;
  z-index: 3;
}

.category-cover-stack img:nth-child(2) {
  left: 28%;
  top: 0;
  z-index: 2;
}

.category-cover-stack img:nth-child(3) {
  right: 0;
  bottom: 0;
  z-index: 1;
}

.category-overview-card h2 {
  margin: 16px 0 12px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

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

.category-overview-card strong {
  color: var(--accent-strong);
}

.detail-hero {
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 96px 0 72px;
}

.detail-shell {
  width: min(var(--shell), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--accent-strong);
}

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

.main-detail,
.detail-side {
  display: grid;
  gap: 22px;
}

.player-card {
  position: relative;
  overflow: hidden;
  background: #000;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  background: linear-gradient(0deg, rgba(12, 10, 9, 0.82), rgba(12, 10, 9, 0.35));
  color: var(--text);
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-ring {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #0c0a09;
  font-size: 34px;
  box-shadow: 0 0 0 14px rgba(245, 158, 11, 0.16), 0 26px 60px rgba(0, 0, 0, 0.4);
}

.player-overlay strong {
  font-size: clamp(20px, 3vw, 34px);
}

.content-card {
  padding: 24px;
}

.content-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.9;
  font-size: 16px;
}

.detail-meta-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.detail-meta-list div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: start;
}

.detail-meta-list dt {
  color: var(--muted);
  font-weight: 800;
}

.detail-meta-list dd {
  margin: 0;
  color: var(--soft);
}

.detail-meta-list a,
.side-links a {
  color: var(--accent-strong);
}

.detail-meta-list .wide {
  display: grid;
  grid-template-columns: 72px 1fr;
}

.side-links {
  display: grid;
  gap: 12px;
}

.side-links a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.1);
  font-weight: 800;
}

.site-footer {
  margin-top: 90px;
  border-top: 1px solid rgba(68, 64, 60, 0.82);
  background: rgba(12, 10, 9, 0.92);
}

.footer-shell {
  width: min(var(--shell), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  color: var(--accent-strong);
  font-size: 26px;
  font-weight: 900;
}

.footer-brand p,
.footer-group a {
  color: var(--muted);
  line-height: 1.75;
}

.footer-group h3 {
  margin: 0 0 12px;
  color: var(--soft);
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(68, 64, 60, 0.6);
  padding: 18px;
  color: #78716c;
  text-align: center;
}

@media (max-width: 1200px) {
  .movie-grid,
  .compact-grid,
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .sticky-panel {
    position: static;
  }
}

@media (max-width: 900px) {
  .header-shell {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-panel {
    position: fixed;
    inset: 66px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(68, 64, 60, 0.9);
    border-radius: 20px;
    background: rgba(28, 25, 23, 0.98);
    padding: 16px;
    box-shadow: var(--shadow);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-chips {
    display: none;
  }

  .nav-link {
    justify-content: center;
  }

  .hero-carousel {
    min-height: 640px;
  }

  .hero-content {
    padding-bottom: 82px;
  }

  .hero-control {
    display: none;
  }

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

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

  .filter-grid {
    grid-template-columns: 1fr;
  }

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

  .category-cover-stack {
    min-height: 260px;
  }

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

  .detail-poster {
    width: min(260px, 74vw);
  }

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

@media (max-width: 560px) {
  .header-shell,
  .section-shell,
  .page-hero > div,
  .detail-shell,
  .hero-content,
  .footer-shell {
    width: min(100% - 24px, var(--shell));
  }

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

  .hero-carousel {
    min-height: 600px;
  }

  .hero-content h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 40px;
  }

  .hero-content p,
  .page-hero p,
  .detail-one-line {
    font-size: 16px;
  }

  .movie-grid,
  .compact-grid,
  .feature-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 34px 50px 1fr;
  }

  .rank-score {
    display: none;
  }

  .category-card {
    min-height: 240px;
  }

  .detail-hero,
  .page-hero {
    padding-top: 72px;
  }

  .play-ring {
    width: 74px;
    height: 74px;
  }
}
