:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.72);
  --bg-card-strong: rgba(15, 23, 42, 0.92);
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --orange: #f97316;
  --red: #ef4444;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --radius-sm: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(249, 115, 22, 0.16), transparent 30rem),
    linear-gradient(135deg, #020617 0%, #0f172a 48%, #020617 100%);
  color: var(--text);
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(2, 6, 23, 0.92);
  box-shadow: 0 16px 60px rgba(2, 6, 23, 0.5);
  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;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--amber-light), var(--orange));
  color: #fff;
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.3);
}

.brand-text {
  font-size: 1.35rem;
  background: linear-gradient(90deg, var(--amber-light), var(--orange), var(--amber-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-link {
  color: var(--muted-strong);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 10px 16px;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.24), rgba(249, 115, 22, 0.16));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.96);
  box-shadow: var(--shadow);
}

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

.main-content {
  min-height: 80vh;
}

.hero {
  position: relative;
  height: clamp(560px, 72vh, 780px);
  overflow: hidden;
  background: #020617;
}

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

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

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

.hero-slide.active .hero-bg {
  animation: heroZoom 9s ease both;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.62) 42%, rgba(2, 6, 23, 0.12) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.15) 48%, rgba(2, 6, 23, 0.2) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  left: 0;
  right: 0;
  padding: 120px 0 96px;
}

.hero-copy {
  width: min(720px, 100%);
}

.hero-tags,
.movie-badges,
.card-meta,
.movie-meta,
.hero-actions,
.breadcrumbs,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-tags span,
.hero-tags a,
.movie-badges span,
.movie-badges a,
.category-chip,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.76);
  color: var(--muted-strong);
  font-size: 0.82rem;
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.hero-tags span:first-child,
.movie-badges a,
.category-chip {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(249, 115, 22, 0.9));
  color: #fff;
  border-color: rgba(245, 158, 11, 0.18);
  font-weight: 700;
}

.hero h1,
.hero h2 {
  margin: 18px 0 10px;
  color: #fff;
  font-size: clamp(2.6rem, 8vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero h3 {
  margin: 0 0 16px;
  font-size: clamp(1.65rem, 4vw, 3.15rem);
  line-height: 1.1;
  color: var(--amber-light);
}

.hero p {
  width: min(680px, 100%);
  margin: 0 0 28px;
  color: var(--muted-strong);
  font-size: 1.08rem;
  line-height: 1.8;
}

.primary-btn,
.ghost-btn,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--amber-light), var(--orange));
  color: #fff;
  box-shadow: 0 18px 46px rgba(245, 158, 11, 0.32);
}

.ghost-btn,
.section-more {
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid var(--line);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover {
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.hero-arrow.prev {
  left: 24px;
}

.hero-arrow.next {
  right: 24px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.55);
  transition: width 0.2s ease, background 0.2s ease;
}

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

.section-block,
.quick-search {
  padding: 72px 0;
}

.dark-band {
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--amber-light);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-head h2,
.page-hero h1,
.detail-panel h1 {
  margin: 0;
  color: #fff;
  line-height: 1.08;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.section-head p,
.page-hero p {
  width: min(720px, 100%);
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

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

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

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

.movie-card,
.feature-card,
.category-tile,
.category-overview-card,
.info-card,
.detail-panel {
  border: 1px solid var(--line);
  background: var(--bg-card);
  box-shadow: 0 16px 50px rgba(2, 6, 23, 0.26);
  backdrop-filter: blur(16px);
}

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.movie-card:hover,
.feature-card:hover,
.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.36);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.12);
}

.poster-link,
.feature-cover,
.wide-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0f172a;
}

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

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

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

.year-chip,
.rank-number {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.rank-number {
  left: 12px;
  right: auto;
  min-width: 34px;
  min-height: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--amber-light), var(--orange));
}

.poster-play,
.play-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.86);
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.22s ease, transform 0.22s ease;
  box-shadow: 0 18px 50px rgba(245, 158, 11, 0.36);
}

.movie-card:hover .poster-play,
.feature-card:hover .play-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-body,
.feature-body {
  padding: 14px;
}

.card-body h2,
.feature-body h3,
.wide-info h2 {
  margin: 10px 0 8px;
  color: #fff;
  line-height: 1.24;
}

.card-body h2 {
  display: -webkit-box;
  min-height: 2.48em;
  overflow: hidden;
  font-size: 1rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-body h2 a:hover,
.feature-body h3 a:hover,
.wide-info h2 a:hover {
  color: var(--amber-light);
}

.card-body p,
.feature-body p,
.wide-info p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta,
.movie-meta {
  margin-top: 12px;
  color: #64748b;
  font-size: 0.82rem;
}

.card-meta span + span::before,
.movie-meta span + span::before {
  content: "·";
  margin-right: 10px;
  color: #475569;
}

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

.feature-card {
  overflow: hidden;
  border-radius: var(--radius);
}

.feature-cover {
  aspect-ratio: 16 / 9;
}

.feature-body {
  padding: 18px;
}

.feature-body h3 {
  font-size: 1.25rem;
}

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

.category-tile,
.category-overview-card {
  min-height: 160px;
  padding: 20px;
  border-radius: var(--radius);
}

.category-tile span,
.category-overview-main span {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 850;
}

.category-tile p,
.category-overview-main p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.category-samples {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.category-samples a {
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.category-samples a:hover {
  color: var(--amber-light);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.64);
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.85rem;
}

.search-box input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  outline: none;
  color: #fff;
  background: rgba(2, 6, 23, 0.72);
}

.search-box input:focus {
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-buttons button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--muted-strong);
  background: rgba(2, 6, 23, 0.58);
}

.filter-buttons button.active,
.filter-buttons button:hover {
  color: #fff;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(249, 115, 22, 0.78));
  border-color: rgba(245, 158, 11, 0.25);
}

.filter-item.is-hidden {
  display: none;
}

.inner-page {
  padding-top: 76px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 76px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.18), transparent 34rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(2, 6, 23, 0.92));
}

.page-hero.slim-hero {
  padding-bottom: 64px;
}

.page-hero h1 {
  width: min(840px, 100%);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: -0.05em;
}

.breadcrumbs {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a:hover {
  color: var(--amber-light);
}

.ranking-list {
  display: grid;
  gap: 16px;
}

.wide-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  padding: 12px;
  border-radius: var(--radius);
}

.wide-cover {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
}

.wide-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 8px 8px 8px 0;
}

.wide-info h2 {
  font-size: 1.42rem;
}

.compact-ranking .wide-card {
  grid-template-columns: 180px minmax(0, 1fr);
}

.detail-page {
  padding-top: 108px;
}

.detail-layout {
  padding-bottom: 34px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.8fr);
  gap: 28px;
}

.detail-main,
.detail-side {
  display: grid;
  gap: 20px;
  align-content: start;
}

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

.js-video {
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}

.player-cover {
  position: absolute;
  inset: 0;
  border: 0;
  background-position: center;
  background-size: cover;
  color: #fff;
  transition: opacity 0.24s ease;
}

.player-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.08)),
    radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 28rem);
}

.player-play {
  position: relative;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-light), var(--orange));
  box-shadow: 0 24px 70px rgba(245, 158, 11, 0.38);
  font-size: 2rem;
}

.player-shell.is-playing .player-cover {
  opacity: 0;
  pointer-events: none;
}

.detail-panel,
.info-card {
  border-radius: var(--radius);
  padding: 24px;
}

.detail-panel h1 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.lead-text {
  color: var(--muted-strong);
  font-size: 1.08rem;
  line-height: 1.82;
}

.tag-cloud {
  margin: 18px 0 24px;
}

.detail-text-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.detail-text-block h2,
.info-card h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.25rem;
}

.detail-text-block p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.92;
}

.info-card dl {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px 14px;
  margin: 0;
}

.info-card dt {
  color: #64748b;
}

.info-card dd {
  margin: 0;
  color: var(--muted-strong);
}

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

.side-links a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted-strong);
  background: rgba(2, 6, 23, 0.28);
}

.side-links a:hover {
  color: #fff;
  border-color: rgba(245, 158, 11, 0.38);
}

.related-section {
  padding-top: 40px;
}

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

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

.footer-brand p {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1rem;
}

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

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  color: #64748b;
  font-size: 0.9rem;
}

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

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

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

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

  .menu-toggle {
    display: block;
  }

  .site-header.is-open .mobile-nav {
    display: grid;
    gap: 4px;
  }

  .hero {
    height: 680px;
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 82px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.68) 58%, rgba(2, 6, 23, 0.12) 100%);
  }

  .hero-arrow {
    display: none;
  }

  .section-head,
  .filter-bar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .section-head {
    display: grid;
  }

  .filter-buttons {
    justify-content: flex-start;
  }

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

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

  .wide-card,
  .compact-ranking .wide-card {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px;
  }

  .wide-info h2 {
    font-size: 1.05rem;
  }

  .wide-info p,
  .wide-info .movie-meta {
    display: none;
  }

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

@media (max-width: 520px) {
  .container,
  .header-inner,
  .footer-inner,
  .footer-bottom,
  .mobile-nav {
    width: min(100% - 24px, 1180px);
  }

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

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

  .hero {
    height: 620px;
  }

  .hero-tags,
  .movie-badges {
    gap: 7px;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .section-block,
  .quick-search {
    padding: 52px 0;
  }

  .compact-grid,
  .all-library-grid,
  .movie-grid {
    gap: 12px;
  }

  .card-body {
    padding: 12px;
  }

  .card-body p {
    display: none;
  }

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

  .detail-page {
    padding-top: 96px;
  }

  .detail-panel,
  .info-card {
    padding: 18px;
  }

  .player-play {
    width: 68px;
    height: 68px;
  }
}
