* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(15, 23, 42, 0.94);
  --line: rgba(96, 165, 250, 0.22);
  --line-strong: rgba(96, 165, 250, 0.46);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --blue: #3b82f6;
  --blue-light: #60a5fa;
  --purple: #a855f7;
  --yellow: #facc15;
  --shadow: 0 22px 70px rgba(37, 99, 235, 0.22);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(59, 130, 246, 0.28), transparent 32rem),
    radial-gradient(circle at 85% 10%, rgba(168, 85, 247, 0.22), transparent 30rem),
    var(--bg);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled,
.site-header.open {
  background: rgba(2, 6, 23, 0.94);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(96, 165, 250, 0.18);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.45);
}

.header-inner {
  max-width: 1280px;
  height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.42);
}

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

.brand-text strong {
  font-size: 24px;
  letter-spacing: 0.04em;
}

.brand-text em {
  margin-top: 5px;
  color: rgba(147, 197, 253, 0.9);
  font-size: 12px;
  font-style: normal;
}

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

.nav-link {
  padding: 9px 13px;
  border-radius: 12px;
  color: rgba(248, 250, 252, 0.86);
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nav-link-soft {
  color: rgba(191, 219, 254, 0.82);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

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

.mobile-nav {
  display: none;
  max-height: calc(100vh - 76px);
  overflow: auto;
  padding: 12px 24px 24px;
  background: rgba(2, 6, 23, 0.98);
  border-top: 1px solid rgba(96, 165, 250, 0.16);
}

.mobile-nav.open {
  display: grid;
  gap: 6px;
}

.hero-slider {
  position: relative;
  height: 720px;
  overflow: hidden;
  background: #020617;
}

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

.hero-slide {
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 4.5s ease;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-overlay,
.page-hero-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(15, 23, 42, 0.78) 58%, #020617 100%),
    linear-gradient(90deg, rgba(30, 64, 175, 0.42), rgba(88, 28, 135, 0.3), rgba(2, 6, 23, 0.48));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  padding-top: 76px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 14px;
  color: var(--yellow);
  background: rgba(250, 204, 21, 0.11);
  border: 1px solid rgba(250, 204, 21, 0.28);
  border-radius: 999px;
  font-weight: 700;
}

.hero-content h1 {
  margin: 0 0 22px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.hero-content h1 span {
  color: var(--blue-light);
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 26px;
  color: #dbeafe;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.72;
}

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

.hero-tags span,
.detail-meta span,
.card-meta span {
  padding: 6px 11px;
  color: #bfdbfe;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 999px;
  font-size: 13px;
}

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

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

.primary-btn {
  color: white;
  background: linear-gradient(135deg, var(--blue), #2563eb);
  box-shadow: 0 14px 34px rgba(59, 130, 246, 0.38);
}

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

.primary-btn.small {
  min-height: 46px;
  white-space: nowrap;
}

.ghost-btn {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px);
}

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

.hero-dots button {
  width: 34px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dots button.active {
  background: var(--blue-light);
}

.search-band {
  position: relative;
  z-index: 4;
  margin-top: -58px;
  padding: 0 24px 44px;
}

.search-panel {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-panel h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.search-controls,
.toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 210px auto;
  gap: 14px;
}

.toolbar {
  grid-template-columns: minmax(240px, 1fr) 180px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.toolbar.expanded {
  grid-template-columns: minmax(240px, 1fr) repeat(4, minmax(140px, 180px));
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  color: white;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 14px;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.content-section {
  padding: 72px 24px;
}

.gradient-a {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4), rgba(30, 64, 175, 0.2));
}

.gradient-b {
  background: linear-gradient(180deg, rgba(30, 64, 175, 0.18), rgba(15, 23, 42, 0.42));
}

.content-section > .section-heading,
.content-section > .card-grid,
.content-section > .section-desc,
.content-section > .toolbar,
.content-section > .empty-state,
.split-layout,
.rank-layout,
.category-grid,
.detail-wrap {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-heading > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.section-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  background: rgba(250, 204, 21, 0.12);
  border-radius: 14px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
}

.section-link {
  min-height: 40px;
  padding: 0 16px;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.22);
}

.section-desc {
  margin-top: -14px;
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.7;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.movie-card,
.wide-card,
.mini-card,
.detail-card,
.side-panel,
.category-tile a {
  background: linear-gradient(145deg, rgba(30, 64, 175, 0.18), rgba(15, 23, 42, 0.88));
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.28);
}

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

.movie-card:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.card-link {
  display: block;
  height: 100%;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(88, 28, 135, 0.35));
}

.movie-card.large .poster-wrap {
  aspect-ratio: 16 / 10;
}

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

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

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.68));
}

.type-badge,
.year-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.type-badge {
  left: 14px;
  background: rgba(59, 130, 246, 0.82);
}

.year-badge {
  right: 14px;
  background: rgba(2, 6, 23, 0.68);
}

.play-hover {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.9);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.card-meta {
  gap: 8px;
  margin-bottom: 12px;
}

.card-meta span {
  color: var(--soft);
  background: rgba(2, 6, 23, 0.42);
}

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

.tag-row span,
.detail-tags span {
  padding: 5px 9px;
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.14);
  border-radius: 999px;
  font-size: 12px;
}

.split-layout,
.rank-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.85fr);
  gap: 28px;
}

.wide-list,
.mini-list {
  display: grid;
  gap: 14px;
}

.wide-card {
  border-radius: 22px;
  overflow: hidden;
}

.wide-card a {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
}

.wide-card img {
  width: 168px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
}

.wide-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wide-head h3 {
  margin: 0;
  font-size: 21px;
}

.big-rank,
.rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-weight: 800;
}

.big-rank {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.wide-card p {
  margin: 10px 0 12px;
  color: var(--muted);
  line-height: 1.65;
}

.side-panel {
  border-radius: 24px;
  padding: 22px;
  height: fit-content;
}

.side-panel h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

.mini-card {
  border-radius: 18px;
  overflow: hidden;
}

.mini-card a {
  display: grid;
  grid-template-columns: auto 62px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
}

.mini-card img {
  width: 62px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
}

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

.mini-card strong {
  line-height: 1.35;
}

.mini-card em {
  margin-top: 6px;
  color: var(--soft);
  font-size: 12px;
  font-style: normal;
}

.rank-num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  font-size: 13px;
}

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

.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero.compact {
  min-height: 390px;
}

.page-hero-content {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 30px;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 60px);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #dbeafe;
  font-size: 20px;
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #93c5fd;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: white;
}

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

.category-tile a {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.category-tile a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.86));
}

.category-tile span,
.category-tile strong,
.category-tile em {
  position: relative;
}

.category-tile span {
  font-size: 24px;
  font-weight: 800;
}

.category-tile strong {
  margin-top: 10px;
  color: #dbeafe;
  line-height: 1.55;
}

.category-tile em {
  margin-top: 12px;
  color: var(--soft);
  font-style: normal;
  font-size: 13px;
}

.empty-state {
  display: none;
  margin-top: 30px;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.55);
}

.empty-state.show {
  display: block;
}

.player-section {
  padding: 28px 24px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.22), transparent 38rem),
    linear-gradient(180deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.72));
}

.player-shell {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 26px;
  background: #020617;
  box-shadow: var(--shadow);
}

.movie-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #020617;
  object-fit: contain;
}

.player-start {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: white;
  background: rgba(2, 6, 23, 0.18);
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-start span {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.88);
  box-shadow: 0 22px 55px rgba(59, 130, 246, 0.42);
  font-size: 42px;
  padding-left: 8px;
}

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

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

.detail-card {
  padding: 30px;
  border-radius: 26px;
}

.detail-card h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.22;
}

.detail-card h2 {
  margin: 30px 0 12px;
  font-size: 24px;
}

.detail-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.92;
  text-align: justify;
}

.one-line {
  margin-top: 22px;
  padding-left: 18px;
  color: #dbeafe !important;
  border-left: 4px solid var(--blue);
  font-size: 19px !important;
}

.detail-tags {
  margin: 20px 0 6px;
}

.detail-side {
  display: grid;
  gap: 22px;
  align-content: start;
}

.detail-poster {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid var(--line);
}

.site-footer {
  padding: 54px 24px 26px;
  background: #020617;
  border-top: 1px solid rgba(96, 165, 250, 0.16);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-grid p,
.footer-grid a {
  color: var(--soft);
  line-height: 1.75;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-grid a:hover,
.back-top:hover {
  color: var(--blue-light);
}

.footer-bottom {
  max-width: 1280px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--soft);
}

.footer-bottom p {
  margin: 0;
}

.back-top {
  color: var(--blue-light);
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

  .mobile-toggle {
    display: block;
  }

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

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

@media (max-width: 860px) {
  .hero-slider {
    height: 640px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
  }

  .search-controls,
  .toolbar,
  .toolbar.expanded,
  .split-layout,
  .rank-layout,
  .detail-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .wide-card a {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .wide-card img {
    width: 120px;
  }

  .detail-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .detail-side {
    grid-row: 1;
  }

  .detail-poster {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .header-inner {
    height: 68px;
    padding: 0 16px;
  }

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

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

  .hero-slider {
    height: 600px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .content-section {
    padding: 52px 16px;
  }

  .search-band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .search-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .regular-grid,
  .search-grid,
  .large-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .card-body h3 {
    font-size: 18px;
  }

  .wide-card a {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
  }

  .wide-card img {
    width: 92px;
    aspect-ratio: 3 / 4;
  }

  .wide-head h3 {
    font-size: 17px;
  }

  .wide-card p {
    display: none;
  }

  .page-main {
    padding-top: 68px;
  }

  .page-hero.compact {
    min-height: 330px;
  }

  .player-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .player-shell {
    border-radius: 18px;
  }

  .player-start span {
    width: 72px;
    height: 72px;
    font-size: 30px;
  }

  .detail-card {
    padding: 22px;
  }
}
