:root {
  --bg: #0a0e1a;
  --bg-soft: #111827;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f3f4f6;
  --muted: #9ca3af;
  --soft: #d1d5db;
  --amber: #f59e0b;
  --amber-soft: rgba(245, 158, 11, 0.18);
  --orange: #f97316;
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.48);
  --radius: 18px;
}

* {
  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.16), transparent 32rem),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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;
}

.glass {
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.text-shadow {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-width: 0 0 1px;
  background: rgba(10, 14, 26, 0.88);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 26px;
  height: 68px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.32);
  font-size: 14px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 10px;
}

.desktop-nav a,
.nav-dropdown > a {
  color: var(--soft);
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.nav-dropdown > a.active {
  color: var(--amber);
}

.nav-dropdown {
  position: relative;
  padding: 22px 0;
}

.nav-dropdown-menu {
  position: absolute;
  top: 58px;
  left: 0;
  display: grid;
  width: 180px;
  padding: 10px;
  border-radius: 14px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.18s ease;
  box-shadow: var(--shadow);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 10px;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header-search {
  position: relative;
  margin-left: auto;
  width: min(320px, 30vw);
}

.site-search-input,
.page-filter-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  padding: 11px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.site-search-input::placeholder,
.page-filter-input::placeholder {
  color: #6b7280;
}

.site-search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  width: min(420px, 90vw);
  max-height: 460px;
  overflow: auto;
  border-radius: 18px;
  padding: 8px;
  box-shadow: var(--shadow);
}

.site-search-results.is-open {
  display: grid;
  gap: 6px;
}

.search-result-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: 12px;
  padding: 8px;
  color: var(--text);
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.search-result-item img {
  width: 52px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.search-result-item strong {
  display: block;
  line-height: 1.2;
}

.search-result-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

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

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  border-radius: 18px;
  padding: 12px;
}

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--soft);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--amber);
}

.hero-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 84px;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.04;
}

.hero-copy p {
  max-width: 660px;
  margin: 0 0 26px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.7;
}

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

.tag,
.card-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--amber-soft);
  color: var(--amber);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
}

.hero-tags {
  margin-bottom: 18px;
}

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

.btn-primary,
.btn-ghost,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-primary {
  min-height: 48px;
  border-radius: 14px;
  padding: 0 26px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  box-shadow: 0 18px 34px rgba(245, 158, 11, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(245, 158, 11, 0.32);
}

.btn-ghost {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 0 22px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.07);
}

.btn-ghost:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.13);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}

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

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

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

.section-head.align-start {
  align-items: flex-start;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head h2,
.page-hero h1,
.detail-card h1 {
  margin: 0;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.text-link {
  color: var(--amber);
  font-weight: 700;
}

.text-link:hover {
  color: #fbbf24;
}

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

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

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

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-hover:hover {
  border-color: rgba(245, 158, 11, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.movie-thumb {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

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

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

.movie-year {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

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

.movie-card-body h3 {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card:hover h3,
.ranking-card:hover h2,
.related-card:hover h3 {
  color: var(--amber);
}

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

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

.card-tags span {
  border-radius: 10px;
  padding: 4px 8px;
  font-size: 12px;
}

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  color: #6b7280;
  font-size: 13px;
}

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 190px 1fr;
}

.movie-card-horizontal .movie-thumb {
  height: 100%;
  min-height: 160px;
}

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

.category-tile {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  border-color: rgba(245, 158, 11, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  height: 92px;
  margin-bottom: 18px;
}

.category-thumbs img {
  width: 100%;
  height: 92px;
  border-radius: 12px;
  object-fit: cover;
}

.category-tile h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.category-tile p,
.category-overview p,
.page-hero p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 36px;
}

.rank-list {
  display: grid;
  gap: 12px;
}

.rank-item {
  display: grid;
  grid-template-columns: 44px 70px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 16px;
  padding: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  background: var(--panel-strong);
  transform: translateX(4px);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-weight: 900;
}

.rank-item img {
  width: 70px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.rank-title {
  display: block;
  font-weight: 800;
}

.rank-meta {
  grid-column: 3;
  color: var(--muted);
  font-size: 12px;
}

.page-hero {
  padding: 86px 0 64px;
  background:
    linear-gradient(90deg, rgba(245, 158, 11, 0.18), rgba(249, 115, 22, 0.10)),
    radial-gradient(circle at right, rgba(245, 158, 11, 0.18), transparent 30rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 780px;
  margin: 18px 0 0;
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

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

.categories-stack {
  display: grid;
  gap: 32px;
  padding: 48px 0 80px;
}

.category-overview {
  border-radius: 24px;
  padding: 24px;
}

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

.category-overview h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.preview-grid .movie-card:nth-child(n + 4) {
  display: none;
}

.category-toolbar {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  border-radius: 22px;
  padding: 18px;
}

.category-filter-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-filter-links a {
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.07);
}

.category-filter-links a:hover,
.category-filter-links a.active {
  color: #fff;
  background: linear-gradient(90deg, var(--amber), var(--orange));
}

.category-toolbar .page-filter-input {
  max-width: 280px;
}

.rankings-list {
  display: grid;
  gap: 16px;
  padding: 48px 0 80px;
}

.ranking-card {
  display: grid;
  grid-template-columns: 64px 160px 1fr;
  gap: 20px;
  align-items: center;
  border-radius: 20px;
  padding: 16px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ranking-card:hover {
  border-color: rgba(245, 158, 11, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.ranking-index {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.ranking-card img {
  width: 160px;
  height: 96px;
  border-radius: 16px;
  object-fit: cover;
}

.ranking-card h2 {
  margin: 0 0 8px;
  font-size: 21px;
  transition: color 0.2s ease;
}

.ranking-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.detail-main {
  padding: 42px 0 84px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
}

.detail-primary {
  display: grid;
  gap: 22px;
}

.player-card,
.detail-card,
.related-box {
  border-radius: 22px;
  overflow: hidden;
}

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

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

.play-mask {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 14px;
  border: 0;
  color: #fff;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.18)),
    rgba(0, 0, 0, 0.18);
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.play-mask.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-mask.is-loading .play-icon {
  animation: pulse 0.8s ease-in-out infinite alternate;
}

.play-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 22px 44px rgba(245, 158, 11, 0.35);
  font-size: 28px;
}

.detail-card {
  padding: 28px;
}

.detail-card h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 18px;
  color: var(--muted);
}

.detail-meta span {
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.07);
}

.detail-card section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-card h2,
.related-box h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.detail-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.9;
}

.lead-text {
  margin-bottom: 12px !important;
  color: #fbbf24 !important;
  font-weight: 700;
}

.detail-sidebar {
  position: sticky;
  top: 92px;
  align-self: start;
}

.related-box {
  padding: 20px;
}

.related-list {
  display: grid;
  gap: 14px;
}

.related-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: center;
}

.related-card img {
  width: 110px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

.related-card h3 {
  display: -webkit-box;
  margin: 0 0 6px;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.related-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 14, 26, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 34px;
  padding: 48px 0;
}

.footer-logo {
  margin-bottom: 16px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 17px;
}

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

.site-footer a,
.site-footer p {
  color: var(--muted);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #6b7280;
  padding: 18px 0;
  text-align: center;
  font-size: 14px;
}

.is-filtered-out {
  display: none !important;
}

@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@media (max-width: 1100px) {
  .four-cols,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .detail-sidebar {
    position: static;
  }
}

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

  .header-search {
    width: min(420px, 48vw);
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero-carousel {
    height: 540px;
  }

  .hero-arrow {
    display: none;
  }

  .two-cols,
  .three-cols,
  .four-cols,
  .compact-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .category-toolbar,
  .category-overview-head {
    align-items: stretch;
    flex-direction: column;
  }

  .category-toolbar .page-filter-input {
    max-width: none;
  }

  .ranking-card {
    grid-template-columns: 50px 112px 1fr;
  }

  .ranking-card img {
    width: 112px;
    height: 78px;
  }
}

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

  .nav-shell {
    gap: 12px;
    height: auto;
    min-height: 66px;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .site-logo {
    font-size: 19px;
  }

  .header-search {
    order: 3;
    width: 100%;
  }

  .hero-carousel {
    height: 560px;
  }

  .hero-content {
    padding-bottom: 86px;
  }

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

  .hero-actions {
    display: grid;
  }

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

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

  .two-cols,
  .three-cols,
  .four-cols,
  .compact-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal .movie-thumb {
    height: 210px;
  }

  .category-thumbs {
    height: 80px;
  }

  .category-thumbs img {
    height: 80px;
  }

  .page-hero {
    padding: 56px 0 46px;
  }

  .ranking-card {
    grid-template-columns: 46px 1fr;
  }

  .ranking-card img {
    grid-row: span 2;
    width: 100%;
    height: 130px;
    grid-column: 1 / -1;
  }

  .detail-card {
    padding: 20px;
  }

  .play-icon {
    width: 64px;
    height: 64px;
  }

  .related-card {
    grid-template-columns: 96px 1fr;
  }

  .related-card img {
    width: 96px;
    height: 64px;
  }

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