:root {
  --blue: #0096dc;
  --blue-light: #4db8e8;
  --yellow: #ffd700;
  --yellow-dark: #ffc700;
  --red: #e63946;
  --cream: #fff9e6;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --paper: #ffffff;
  --shadow: 0 18px 45px rgba(0, 54, 96, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream) 0%, #ffffff 38%, #f8fafc 100%);
  min-height: 100vh;
}

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

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

img.is-missing {
  opacity: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 150, 220, 0.96);
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 45, 85, 0.18);
  backdrop-filter: blur(16px);
}

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

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

.brand-mark,
.footer-brand span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--blue);
  font-weight: 900;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.1);
}

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

.brand-text strong {
  font-size: 1.18rem;
  letter-spacing: 0.03em;
}

.brand-text small {
  color: #d7f1ff;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-weight: 700;
}

.main-nav a,
.mobile-panel a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.mobile-panel a:hover {
  color: var(--yellow);
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  min-width: 270px;
}

.header-search input,
.big-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--ink);
  background: #ffffff;
}

.header-search button,
.big-search button {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--blue);
  background: var(--yellow);
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-search button:hover,
.big-search button:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  border: 0;
  color: #ffffff;
  background: transparent;
  font-size: 1.7rem;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-panel a {
  display: block;
  padding: 10px 0;
  font-weight: 700;
}

.mobile-panel form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.mobile-panel input {
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
}

.mobile-panel button {
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--yellow);
  color: var(--blue);
  font-weight: 900;
}

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

.hero-carousel {
  position: relative;
  overflow: hidden;
  padding: 48px 0 58px;
  color: #ffffff;
  background: radial-gradient(circle at 18% 15%, rgba(255, 215, 0, 0.34), transparent 24%), linear-gradient(135deg, var(--blue), var(--blue-light));
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.22);
  animation: floatUp 7s ease-in-out infinite alternate;
}

.orb-one {
  width: 130px;
  height: 130px;
  top: 28px;
  left: 8%;
}

.orb-two {
  width: 220px;
  height: 220px;
  bottom: -70px;
  right: 7%;
  animation-delay: 1.2s;
}

.hero-frame {
  position: relative;
  min-height: 560px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 44px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.eyebrow,
.section-title p,
.page-hero p,
.category-overview-head p {
  margin: 0 0 10px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-copy h2 + p,
.hero-copy h1 + h2 {
  margin-top: 14px;
}

.hero-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  max-width: 620px;
  color: #eaf7ff;
  font-size: 1.18rem;
  line-height: 1.8;
}

.hero-tags,
.detail-meta,
.movie-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

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

.hero-tags span,
.detail-meta span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.hero-actions,
.detail-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.center-action {
  justify-content: center;
}

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

.btn-primary {
  color: var(--blue);
  background: var(--yellow);
  box-shadow: 0 14px 28px rgba(255, 199, 0, 0.24);
}

.btn-secondary {
  color: var(--blue);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-image {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 520px;
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.32), rgba(0, 0, 0, 0.22));
  box-shadow: 0 32px 80px rgba(0, 39, 82, 0.28);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.52));
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-slide.is-active .hero-image img {
  transform: scale(1.035);
}

.hero-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 36px;
  border-radius: 999px;
  background: var(--yellow);
}

.quick-panel {
  position: relative;
  z-index: 5;
  margin-top: -28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 150, 220, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.big-search {
  display: flex;
  gap: 12px;
  padding: 8px;
  border-radius: 999px;
  background: #f1f5f9;
}

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

.category-strip a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 150, 220, 0.08);
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.category-strip a:hover {
  color: #ffffff;
  background: var(--blue);
}

.section-block {
  padding: 66px 0;
}

.section-title {
  margin-bottom: 28px;
}

.section-title h2,
.page-hero h1,
.detail-info h1,
.detail-article h2,
.detail-side h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-title.light h2,
.section-title.light p {
  color: #ffffff;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 46px rgba(0, 76, 130, 0.16);
}

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

.poster-wrap {
  position: relative;
  min-height: 218px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(0, 150, 220, 0.2), rgba(255, 215, 0, 0.18));
}

.movie-card:not(.compact-card) .poster-wrap {
  aspect-ratio: 16 / 10;
}

.compact-card .poster-wrap {
  aspect-ratio: 16 / 9;
  min-height: 150px;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.68));
}

.play-pill {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(0, 150, 220, 0.82);
  transform: translate(-50%, -50%) scale(0.82);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.poster-year,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  border-radius: 999px;
  padding: 5px 10px;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.78rem;
}

.poster-year {
  right: 12px;
  background: var(--red);
}

.rank-badge {
  left: 12px;
  background: var(--yellow);
  color: var(--blue);
}

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

.movie-card-body h2 {
  margin: 0 0 9px;
  font-size: 1.14rem;
  line-height: 1.35;
}

.movie-card-body h2 a:hover {
  color: var(--blue);
}

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

.movie-meta {
  gap: 6px;
  color: #64748b;
  font-size: 0.8rem;
}

.movie-meta span {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f1f5f9;
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  color: var(--blue);
  background: rgba(0, 150, 220, 0.09);
}

.ranking-band {
  padding: 66px 0;
  background: linear-gradient(135deg, var(--yellow-dark), var(--yellow));
}

.blue-band {
  padding: 66px 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.translucent-grid .movie-card {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.translucent-grid .movie-card-body p,
.translucent-grid .movie-meta {
  color: #e5f7ff;
}

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

.rank-list {
  grid-template-columns: 1fr;
}

.rank-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.rank-cover {
  position: relative;
  flex: 0 0 132px;
  height: 92px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(0, 150, 220, 0.2), rgba(255, 215, 0, 0.18));
}

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

.rank-num {
  position: absolute;
  z-index: 2;
  left: 8px;
  top: 8px;
  min-width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--red);
  font-weight: 900;
}

.rank-info {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.rank-info strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1.05rem;
}

.rank-info em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-info span {
  color: #64748b;
  font-size: 0.82rem;
}

.page-hero {
  padding: 68px 0;
  color: #ffffff;
  background: radial-gradient(circle at 85% 12%, rgba(255, 215, 0, 0.32), transparent 24%), linear-gradient(135deg, var(--blue), var(--blue-light));
}

.page-hero h1 {
  color: #ffffff;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.page-hero span {
  display: block;
  max-width: 760px;
  margin-top: 14px;
  color: #e7f7ff;
  font-size: 1.1rem;
  line-height: 1.8;
}

.filter-panel {
  margin-top: -28px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.filter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}

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

.filter-panel input,
.filter-panel select {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fafc;
}

.category-overview-list {
  display: grid;
  gap: 34px;
  padding: 58px 0;
}

.category-overview-card {
  padding: 24px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

.category-overview-head h2 {
  margin: 0 0 8px;
  font-size: 1.8rem;
}

.category-overview-head span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0;
  color: #64748b;
  font-size: 0.94rem;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.detail-hero {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 32px;
  border-radius: 30px;
  color: #ffffff;
  background: radial-gradient(circle at 90% 12%, rgba(255, 215, 0, 0.28), transparent 26%), linear-gradient(135deg, #057ec2, #22b3e9);
  box-shadow: var(--shadow);
}

.detail-cover {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.28), rgba(0, 0, 0, 0.18));
  box-shadow: 0 24px 54px rgba(0, 38, 73, 0.24);
}

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

.detail-info h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
}

.detail-one-line {
  margin: 18px 0 0;
  max-width: 820px;
  color: #ecfaff;
  font-size: 1.16rem;
  line-height: 1.85;
}

.detail-meta {
  margin-top: 20px;
}

.detail-meta span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.detail-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.player-section {
  padding: 56px 0 22px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 24px 64px rgba(2, 6, 23, 0.28);
  aspect-ratio: 16 / 9;
  outline: none;
}

.player-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #020617;
}

.player-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.36));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-play span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding-left: 6px;
  color: var(--blue);
  background: var(--yellow);
  font-size: 2rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.player-shell.is-playing .player-play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 26px;
  padding: 36px 0;
}

.detail-article,
.detail-side,
.search-shell {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.detail-article {
  padding: 30px;
}

.detail-article h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.8rem;
}

.detail-article h2:not(:first-child) {
  margin-top: 28px;
}

.detail-article p {
  margin: 0;
  color: #374151;
  line-height: 2;
  font-size: 1.02rem;
}

.detail-side {
  align-self: start;
  display: grid;
  gap: 12px;
  padding: 24px;
}

.detail-side h2 {
  font-size: 1.35rem;
}

.detail-side a {
  padding: 13px 14px;
  border-radius: 14px;
  color: var(--blue);
  background: rgba(0, 150, 220, 0.08);
  font-weight: 800;
}

.detail-side a:hover {
  color: #ffffff;
  background: var(--blue);
}

.search-shell {
  margin-top: -28px;
  margin-bottom: 56px;
  padding: 24px;
}

.search-page-form {
  margin-bottom: 28px;
}

.site-footer {
  margin-top: 38px;
  color: #d1d5db;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 32px;
  padding: 48px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 1.2rem;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
  line-height: 1.8;
}

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

.site-footer a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 16px;
  text-align: center;
  color: #9ca3af;
  font-size: 0.92rem;
}

@keyframes floatUp {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(18px) scale(1.04);
  }
}

@media (max-width: 980px) {
  .main-nav,
  .header-search {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-frame {
    min-height: 760px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-image {
    min-height: 330px;
    order: -1;
  }

  .hero-image img {
    min-height: 330px;
  }

  .movie-grid,
  .small-grid,
  .mini-grid,
  .rank-grid,
  .filter-grid,
  .detail-hero,
  .detail-body-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .header-inner {
    min-height: 62px;
  }

  .brand-text small {
    display: none;
  }

  .hero-carousel {
    padding: 34px 0 48px;
  }

  .hero-frame {
    min-height: 730px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 2.36rem;
  }

  .hero-copy > p:not(.eyebrow),
  .detail-one-line {
    font-size: 1rem;
  }

  .hero-actions,
  .detail-actions,
  .big-search,
  .category-overview-head,
  .rank-row {
    flex-direction: column;
    align-items: stretch;
  }

  .movie-grid,
  .small-grid,
  .mini-grid,
  .rank-grid,
  .filter-grid,
  .detail-hero,
  .detail-body-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .poster-wrap,
  .compact-card .poster-wrap {
    min-height: 220px;
  }

  .detail-hero {
    padding: 20px;
  }

  .detail-cover {
    max-width: 300px;
    margin: 0 auto;
  }

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

  .rank-cover {
    flex-basis: auto;
    width: 100%;
    height: 180px;
  }
}
