:root {
  --night-950: #071521;
  --night-900: #102a43;
  --night-800: #243b53;
  --night-700: #334e68;
  --night-600: #486581;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --text-main: #f3f4f6;
  --text-muted: #cbd5e1;
  --text-soft: #94a3b8;
  --card-border: rgba(148, 163, 184, 0.18);
  --shadow-night: 0 18px 50px rgba(2, 12, 27, 0.32);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 30rem),
    linear-gradient(180deg, var(--night-900), var(--night-950));
  color: var(--text-main);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  background: rgba(255, 255, 255, 0.04);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 21, 33, 0.82);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  backdrop-filter: blur(18px);
}

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

.site-logo,
.site-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-logo-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber-500), #d97706);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link,
.mobile-nav-link {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--text-muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link {
  min-height: 38px;
  padding: 0 14px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: #ffffff;
  background: rgba(245, 158, 11, 0.14);
}

.header-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  width: min(320px, 30vw);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(36, 59, 83, 0.72);
}

.header-search input {
  min-width: 0;
  flex: 1;
  padding: 11px 14px;
  color: #ffffff;
  background: transparent;
  outline: none;
}

.header-search button {
  padding: 11px 16px;
  color: #ffffff;
  background: rgba(245, 158, 11, 0.95);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(51, 78, 104, 0.95);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav-link {
  justify-content: center;
  padding: 10px;
  background: rgba(36, 59, 83, 0.8);
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--night-950);
}

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

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

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

.hero-layer,
.ranking-hero-layer,
.detail-bg-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 21, 33, 0.96), rgba(16, 42, 67, 0.72), rgba(16, 42, 67, 0.16)),
    linear-gradient(0deg, rgba(7, 21, 33, 0.98), rgba(7, 21, 33, 0.12));
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  top: 50%;
  width: min(680px, calc(100% - 48px));
  transform: translateY(-50%);
  animation: fadeIn 0.7s ease both;
}

.hero-kicker {
  margin-bottom: 14px;
  color: var(--amber-400);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-content h2,
.page-hero h1,
.ranking-hero-content h1,
.detail-info h1 {
  color: #ffffff;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 1.04;
  font-weight: 900;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.42);
}

.hero-content p,
.page-hero p,
.ranking-hero-content p,
.detail-one-line {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.8;
}

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

.hero-tags,
.detail-tags {
  margin-top: 20px;
}

.hero-tags span,
.detail-tags span,
.movie-tag-row span,
.feature-label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(36, 59, 83, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(12px);
}

.hero-tags span,
.detail-tags span {
  min-height: 30px;
  padding: 0 12px;
  font-size: 0.86rem;
}

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

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

.btn-primary {
  color: #ffffff;
  background: var(--amber-500);
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.24);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(51, 78, 104, 0.92);
}

.btn-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.movie-card:hover,
.feature-card:hover,
.category-tile:hover {
  transform: translateY(-2px);
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.72);
  transition: width 0.25s ease, background 0.25s ease;
}

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

.home-intro {
  padding: 54px 0 8px;
}

.home-intro h2 {
  color: #ffffff;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 850;
}

.home-intro p {
  max-width: 760px;
  margin-top: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}

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

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

.section-heading h2 {
  color: #ffffff;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 850;
}

.section-heading p {
  margin-top: 8px;
  color: var(--text-soft);
}

.section-more,
.category-preview-head a {
  color: var(--amber-400);
  font-weight: 700;
}

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

.feature-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--night-800);
  box-shadow: var(--shadow-night);
  transition: transform 0.2s ease;
}

.feature-card img,
.feature-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.feature-card img {
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.feature-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.2), transparent);
}

.feature-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 10px;
}

.feature-content strong {
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 850;
}

.feature-content small,
.feature-content em {
  color: var(--text-muted);
  font-style: normal;
}

.feature-label {
  width: fit-content;
  padding: 7px 12px;
  background: rgba(245, 158, 11, 0.9);
}

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

.small-grid {
  gap: 16px;
}

.movie-card {
  display: grid;
  gap: 10px;
  color: inherit;
  transition: transform 0.2s ease;
}

.movie-cover {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: var(--night-800);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

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

.movie-card:hover .movie-cover img {
  transform: scale(1.06);
}

.movie-cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 58%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .movie-cover-shade {
  opacity: 1;
}

.play-dot,
.rank-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
}

.play-dot {
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  background: rgba(245, 158, 11, 0.88);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
  left: 10px;
  top: 10px;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  background: rgba(245, 158, 11, 0.92);
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.3);
}

.movie-card-body {
  display: grid;
  gap: 5px;
}

.movie-card-body strong {
  color: #f8fafc;
  font-size: 0.96rem;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card:hover .movie-card-body strong {
  color: var(--amber-400);
}

.movie-card-body small,
.movie-card-body em {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-style: normal;
}

.movie-tag-row span {
  padding: 3px 7px;
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(36, 59, 83, 0.86);
}

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

.category-preview-list {
  display: grid;
  gap: 36px;
}

.category-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.category-preview-head h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
}

.category-preview-head h3 span {
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--amber-500);
}

.rank-panel,
.content-card,
.side-card,
.filter-panel,
.category-tile,
.ranking-table,
.page-hero {
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background: rgba(36, 59, 83, 0.52);
  box-shadow: var(--shadow-night);
  backdrop-filter: blur(14px);
}

.rank-panel {
  position: sticky;
  top: 100px;
  padding: 22px;
}

.compact-heading {
  margin-bottom: 18px;
}

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

.rank-row,
.ranking-table-row {
  display: grid;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  color: var(--text-muted);
  background: rgba(16, 42, 67, 0.6);
  transition: background 0.2s ease, color 0.2s ease;
}

.rank-row {
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 12px;
}

.rank-row:hover,
.ranking-table-row:hover {
  color: #ffffff;
  background: rgba(245, 158, 11, 0.14);
}

.rank-row span,
.ranking-table-row span {
  color: var(--amber-400);
  font-weight: 900;
}

.rank-row strong {
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row em {
  grid-column: 2;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-main {
  padding-bottom: 40px;
}

.page-hero {
  margin-top: 36px;
  padding: clamp(32px, 6vw, 64px);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(245, 158, 11, 0.18), transparent 25rem),
    linear-gradient(135deg, rgba(36, 59, 83, 0.78), rgba(16, 42, 67, 0.78));
}

.slim-hero h1 {
  max-width: 900px;
}

.slim-hero p {
  max-width: 760px;
}

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

.category-tile {
  display: grid;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover {
  border-color: rgba(245, 158, 11, 0.45);
}

.category-thumb-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 128px;
  overflow: hidden;
}

.category-thumb-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-tile-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.category-tile-body strong {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 850;
}

.category-tile-body small {
  color: var(--text-muted);
  line-height: 1.7;
}

.category-tile-body em {
  color: var(--amber-400);
  font-style: normal;
  font-weight: 800;
}

.filter-panel {
  margin-bottom: 24px;
  padding: 18px;
}

.filter-search-line input {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  padding: 14px 16px;
  color: #ffffff;
  background: rgba(16, 42, 67, 0.7);
  outline: none;
}

.filter-groups {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.filter-group span {
  min-width: 42px;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.filter-group button {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(16, 42, 67, 0.72);
  transition: background 0.2s ease, color 0.2s ease;
}

.filter-group button.is-active,
.filter-group button:hover {
  color: #ffffff;
  background: rgba(245, 158, 11, 0.9);
}

.empty-state {
  padding: 42px 0;
  color: var(--text-muted);
  text-align: center;
}

.ranking-hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.ranking-hero img,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
}

.ranking-hero-content p {
  max-width: 700px;
}

.ranking-hero-content .btn-primary {
  margin-top: 24px;
}

.ranking-table {
  padding: 18px;
}

.ranking-table-row {
  grid-template-columns: 54px minmax(0, 1.5fr) 110px 80px minmax(0, 1fr);
  padding: 14px 16px;
}

.ranking-table-row strong {
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-table-row em,
.ranking-table-row small,
.ranking-table-row b {
  color: var(--text-soft);
  font-style: normal;
  font-weight: 500;
}

.detail-main {
  padding-bottom: 64px;
}

.detail-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: 80px 0 64px;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--text-soft);
}

.breadcrumb a {
  color: var(--amber-400);
}

.detail-info .btn-primary {
  margin-top: 26px;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.detail-meta-grid div {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  padding: 14px;
  background: rgba(16, 42, 67, 0.62);
}

.detail-meta-grid dt {
  color: var(--text-soft);
  font-size: 0.78rem;
}

.detail-meta-grid dd {
  margin-top: 6px;
  color: #ffffff;
  font-weight: 750;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  background: #000000;
  box-shadow: var(--shadow-night);
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000000;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover img,
.player-cover-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.player-cover img {
  object-fit: cover;
  filter: brightness(0.78);
}

.player-cover-layer {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.16), rgba(0, 0, 0, 0.66));
}

.player-cover-button {
  position: relative;
  z-index: 2;
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 2rem;
  background: rgba(245, 158, 11, 0.92);
  box-shadow: 0 20px 45px rgba(245, 158, 11, 0.28);
}

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

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  margin-top: 48px;
}

.content-card,
.side-card {
  padding: 28px;
}

.content-card h2,
.side-card h2 {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 850;
}

.content-card h2 + p,
.content-card p + h2 {
  margin-top: 20px;
}

.content-card p,
.side-card p {
  color: var(--text-muted);
  line-height: 1.9;
}

.side-card {
  height: fit-content;
}

.side-card p {
  margin-top: 12px;
}

.side-card a {
  color: var(--amber-400);
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(7, 21, 33, 0.72);
}

.site-footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p {
  margin-top: 10px;
  max-width: 620px;
  color: var(--text-soft);
  line-height: 1.7;
}

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

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-46%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

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

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

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

  .rank-panel {
    position: relative;
    top: auto;
  }
}

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .hero {
    min-height: 620px;
  }

  .hero-layer {
    background: linear-gradient(0deg, rgba(7, 21, 33, 0.96), rgba(16, 42, 67, 0.52));
  }

  .hero-content {
    top: auto;
    bottom: 96px;
    transform: none;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .feature-grid,
  .category-tile-grid,
  .detail-hero-inner {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    max-width: 280px;
  }

  .detail-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ranking-table-row {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .ranking-table-row em,
  .ranking-table-row small,
  .ranking-table-row b {
    display: none;
  }

  .site-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  .feature-card {
    min-height: 380px;
  }

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

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

  .player-cover-button {
    width: 64px;
    height: 64px;
  }
}
