* {
  box-sizing: border-box;
}

:root {
  --bg: #0f172a;
  --bg-soft: #1e293b;
  --panel: #ffffff;
  --text: #172033;
  --muted: #64748b;
  --line: rgba(148, 163, 184, 0.28);
  --amber: #d97706;
  --amber-strong: #b45309;
  --amber-soft: #fef3c7;
  --stone: #f8fafc;
  --shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: #f8fafc;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.92);
  border-bottom: 1px solid rgba(245, 158, 11, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: inline-grid;
  place-items: center;
  color: #fff7ed;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  box-shadow: 0 14px 32px rgba(217, 119, 6, 0.34);
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 22px;
  letter-spacing: 0.03em;
}

.brand-text em {
  font-size: 12px;
  color: #cbd5e1;
  font-style: normal;
}

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

.nav-link {
  position: relative;
  font-size: 15px;
  color: #e2e8f0;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #f59e0b;
  transition: width 0.25s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: inherit;
  background: rgba(148, 163, 184, 0.14);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.mobile-nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 24px;
  display: grid;
  gap: 12px;
}

.mobile-nav .nav-link {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(148, 163, 184, 0.1);
}

.mobile-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.mobile-sub-link {
  padding: 8px 12px;
  border-radius: 999px;
  color: #fed7aa;
  background: rgba(245, 158, 11, 0.12);
}

.hero {
  position: relative;
  color: #fff;
  background: #0f172a;
  overflow: hidden;
}

.hero-stage {
  position: relative;
  min-height: 680px;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  filter: saturate(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(245, 158, 11, 0.24), transparent 26%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.74) 48%, rgba(15, 23, 42, 0.36)),
    linear-gradient(0deg, #0f172a 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  padding: 88px 0 156px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 7px 13px;
  border-radius: 999px;
  color: #fff7ed;
  background: linear-gradient(135deg, #d97706, #92400e);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
  margin: 18px 0 18px;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-line {
  max-width: 720px;
  color: #e2e8f0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

.hero-tags,
.detail-tags,
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-tags span,
.detail-tags span,
.card-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #fef3c7;
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.22);
  font-size: 12px;
  padding: 5px 10px;
}

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

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

.primary-button {
  min-height: 48px;
  padding: 0 24px;
  color: #fff7ed;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  box-shadow: 0 18px 38px rgba(217, 119, 6, 0.32);
}

.secondary-button,
.ghost-button {
  min-height: 48px;
  padding: 0 22px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

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

.hero-poster {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
  aspect-ratio: 3 / 4;
  background: #1e293b;
}

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

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

.hero-poster span,
.detail-cover span,
.play-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 13px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 106px;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-controls button {
  border: 0;
  cursor: pointer;
}

.hero-controls > button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 28px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.hero-dots {
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(10px);
}

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

.hero-dots button.active {
  width: 28px;
  background: #f59e0b;
}

.hero-search-panel {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 32px));
  margin: -76px auto 0;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-search,
.page-searchbar {
  display: flex;
  gap: 12px;
}

.hero-search input,
.page-searchbar input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: #fff;
  outline: none;
}

.hero-search input:focus,
.page-searchbar input:focus {
  border-color: rgba(217, 119, 6, 0.5);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.hero-search button {
  min-width: 110px;
  border: 0;
  border-radius: 999px;
  color: #fff7ed;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  font-weight: 800;
  cursor: pointer;
}

.hero-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.filter-chip {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid rgba(217, 119, 6, 0.16);
  cursor: pointer;
}

.filter-chip:hover,
.filter-chip.active {
  color: #fff7ed;
  background: #d97706;
}

.content-section {
  padding: 78px 0;
  background: #fff;
}

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

.pale-section {
  background: #f8fafc;
}

.dark-section {
  color: #f8fafc;
  background: radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.18), transparent 28%), #0f172a;
}

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

.section-heading span {
  display: inline-flex;
  color: #d97706;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

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

.dark-section .section-heading p {
  color: #cbd5e1;
}

.section-action {
  padding: 12px 18px;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid rgba(217, 119, 6, 0.18);
}

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

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

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

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dark-section .movie-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 56px rgba(15, 23, 42, 0.18);
}

.poster-link,
.poster-frame {
  display: block;
}

.poster-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b, #334155);
}

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

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

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.72), transparent 42%);
  opacity: 0.72;
}

.play-chip {
  left: auto;
  right: 14px;
  bottom: 14px;
  font-size: 12px;
}

.rank-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  min-width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.32);
}

.card-body {
  padding: 18px;
}

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

.card-tags {
  margin-bottom: 12px;
}

.card-tags span {
  color: #92400e;
  background: #fffbeb;
}

.dark-section .card-tags span {
  color: #fef3c7;
  background: rgba(245, 158, 11, 0.18);
}

.card-body h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

.movie-card.compact .card-body h3 {
  font-size: 17px;
}

.card-body h3 a:hover {
  color: #d97706;
}

.card-body p {
  min-height: 3.5em;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.dark-section .card-body p {
  color: #cbd5e1;
}

.text-link {
  color: #d97706;
  font-size: 14px;
}

.category-card {
  min-height: 238px;
  overflow: hidden;
  border-radius: 28px;
  background: #0f172a;
  box-shadow: var(--shadow);
}

.category-card a {
  position: relative;
  display: grid;
  min-height: 238px;
  padding: 22px;
  align-items: end;
  overflow: hidden;
}

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

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

.category-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.14));
}

.category-card div {
  position: relative;
  color: #fff;
}

.category-card strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
}

.category-card p {
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.7;
}

.category-card em {
  color: #fef3c7;
  font-size: 12px;
  font-style: normal;
}

.page-hero {
  color: #fff;
  padding: 86px 0 70px;
  background:
    radial-gradient(circle at 82% 22%, rgba(245, 158, 11, 0.23), transparent 28%),
    linear-gradient(135deg, #0f172a, #1e293b 58%, #451a03);
}

.page-hero p {
  max-width: 840px;
  color: #e2e8f0;
  font-size: 18px;
  line-height: 1.85;
}

.page-searchbar {
  max-width: 720px;
  margin-top: 22px;
}

.search-hero .filter-controls {
  margin-top: 22px;
}

.detail-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #0f172a;
}

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
}

.detail-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(245, 158, 11, 0.28), transparent 30%),
    linear-gradient(90deg, #0f172a 0%, rgba(15, 23, 42, 0.88) 48%, rgba(15, 23, 42, 0.52)),
    linear-gradient(0deg, #0f172a 0%, transparent 36%);
}

.detail-layout {
  position: relative;
  z-index: 2;
  min-height: 620px;
  padding: 74px 0 86px;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.detail-cover {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 32px;
  aspect-ratio: 3 / 4;
  background: #1e293b;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #cbd5e1;
  font-size: 14px;
}

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

.detail-one-line {
  max-width: 850px;
  color: #e2e8f0;
  font-size: 20px;
  line-height: 1.8;
}

.player-block {
  background: #0f172a;
  padding-top: 0;
}

.player-card {
  border-radius: 34px;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  color: #fff;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.18));
  display: grid;
  place-items: center;
  gap: 12px;
  cursor: pointer;
}

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

.player-button {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #fff7ed;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  box-shadow: 0 18px 46px rgba(217, 119, 6, 0.42);
  font-size: 34px;
  text-indent: 5px;
}

.player-overlay strong {
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.player-meta {
  padding: 24px 28px 30px;
  color: #f8fafc;
}

.player-meta h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.player-meta p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.8;
}

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

.detail-article,
.detail-side {
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.detail-article {
  padding: 34px;
}

.detail-article h2,
.detail-side h2 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 900;
}

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

.detail-side {
  padding: 26px;
  position: sticky;
  top: 96px;
}

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

.detail-side div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.detail-side div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

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

.site-footer {
  color: #cbd5e1;
  background: #0f172a;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 1fr 1fr;
  gap: 38px;
}

.footer-brand p {
  max-width: 520px;
  line-height: 1.8;
}

.footer-logo .brand-mark {
  width: 38px;
  height: 38px;
}

.footer-group h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a {
  color: #cbd5e1;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #94a3b8;
  font-size: 13px;
}

[data-movie-card].is-hidden {
  display: none;
}

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

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

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

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

  .menu-toggle {
    display: flex;
  }

  body.menu-open .mobile-panel {
    display: block;
  }

  .header-inner {
    height: 66px;
  }

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

  .brand-text strong {
    font-size: 18px;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    padding: 54px 0 178px;
    gap: 30px;
  }

  .hero-poster {
    max-width: 220px;
  }

  .hero-controls {
    bottom: 116px;
  }

  .hero-search-panel {
    margin-top: -92px;
  }

  .hero-search {
    flex-direction: column;
  }

  .hero-search button {
    min-height: 48px;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

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

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

  .detail-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .detail-cover {
    width: min(260px, 78vw);
  }

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

  .detail-side {
    position: static;
  }
}

@media (max-width: 560px) {
  .container,
  .header-inner,
  .hero-content,
  .hero-search-panel,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 22px, 1180px);
  }

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

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

  .hero-actions,
  .detail-actions {
    display: grid;
  }

  .hero-controls > button {
    width: 40px;
    height: 40px;
  }

  .page-hero {
    padding: 62px 0 54px;
  }

  .detail-layout {
    min-height: auto;
    padding: 48px 0 62px;
  }

  .detail-article {
    padding: 24px;
  }

  .player-meta {
    padding: 20px;
  }
}
