:root {
  color-scheme: dark;
  --bg: #0f172a;
  --bg-2: #111827;
  --panel: rgba(15, 23, 42, 0.82);
  --panel-strong: rgba(15, 23, 42, 0.96);
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --red: #ef4444;
  --orange: #f97316;
  --amber: #f59e0b;
  --blue: #3b82f6;
  --green: #22c55e;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 32rem),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), transparent 30rem),
    linear-gradient(135deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.7;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.94);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  max-width: 1280px;
  height: 66px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 14px 28px rgba(239, 68, 68, 0.28);
  font-size: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav-link {
  padding: 9px 14px;
  border-radius: 12px;
  color: #cbd5e1;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #ffffff;
  background: rgba(59, 130, 246, 0.18);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.76);
  color: #ffffff;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 20px;
  height: 2px;
  display: block;
  background: #ffffff;
  border-radius: 999px;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-toggle.is-open span {
  transform: rotate(45deg);
}

.nav-toggle.is-open span::before {
  opacity: 0;
}

.nav-toggle.is-open span::after {
  transform: translateY(-2px) rotate(90deg);
}

.page-main {
  min-height: calc(100vh - 66px);
}

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

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(to top, #0f172a, transparent);
  content: "";
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: center;
  gap: 54px;
  padding: 72px max(22px, calc((100vw - 1280px) / 2 + 18px)) 96px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

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

.hero-slide::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(120deg, rgba(249, 115, 22, 0.82), rgba(245, 158, 11, 0.64), rgba(59, 130, 246, 0.24));
  content: "";
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 22rem),
    linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.54), rgba(15, 23, 42, 0.88));
  content: "";
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 3;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero h1,
.hero h2 {
  margin: 0;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 7vw, 76px);
  font-weight: 950;
}

.hero h2 {
  margin-top: 16px;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
}

.hero-desc {
  max-width: 720px;
  margin: 22px 0 0;
  color: #f8fafc;
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.75;
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.button-primary,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 18px 34px rgba(239, 68, 68, 0.28);
}

.button-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.button-ghost {
  border: 1px solid rgba(148, 163, 184, 0.24);
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.64);
}

.button-primary:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-2px) scale(1.01);
}

.hero-poster-frame {
  position: relative;
  z-index: 3;
  justify-self: end;
  width: min(100%, 410px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 14px;
  background: rgba(15, 23, 42, 0.44);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-poster-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.76);
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 13px;
  font-weight: 800;
}

.hero-dots {
  position: absolute;
  left: max(22px, calc((100vw - 1280px) / 2 + 18px));
  bottom: 52px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 36px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 58px;
  background: #ffffff;
}

.section {
  padding: 56px 0;
}

.section-tight {
  padding: 38px 0;
}

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

.section-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-desc {
  max-width: 740px;
  margin: 8px 0 0;
  color: var(--muted);
}

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.movie-poster {
  position: relative;
  overflow: hidden;
  display: block;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
}

.movie-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.movie-card:hover .movie-poster img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.movie-badge,
.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  min-width: 38px;
  padding: 5px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 22px rgba(239, 68, 68, 0.25);
}

.movie-score {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: #fde68a;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.movie-info {
  padding: 15px;
}

.movie-title {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
}

.movie-title a:hover {
  color: #fca5a5;
}

.movie-line {
  display: -webkit-box;
  min-height: 46px;
  margin: 8px 0 0;
  overflow: hidden;
  color: #cbd5e1;
  font-size: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.movie-tags span {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.72);
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 700;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
}

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

.category-card {
  min-height: 176px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(135deg, rgba(239, 68, 68, 0.14), transparent 58%),
    rgba(15, 23, 42, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.48);
}

.category-card h2,
.category-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
}

.category-card p {
  margin: 12px 0 0;
  color: #cbd5e1;
  font-size: 14px;
}

.toolbar {
  position: sticky;
  top: 82px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(150px, 190px));
  gap: 12px;
  margin: 0 0 24px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(18px);
}

.search-input,
.filter-select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 15px;
  background: rgba(30, 41, 59, 0.74);
  color: #f8fafc;
  outline: none;
}

.search-input {
  padding: 0 16px;
}

.filter-select {
  padding: 0 12px;
  cursor: pointer;
}

.search-input:focus,
.filter-select:focus {
  border-color: rgba(249, 115, 22, 0.7);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.page-hero {
  padding: 58px 0 30px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 840px;
  margin: 18px 0 0;
  color: #cbd5e1;
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: #ffffff;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 70px 110px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.76);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.rank-row:hover {
  transform: translateX(5px);
  border-color: rgba(249, 115, 22, 0.5);
}

.rank-number {
  color: #f97316;
  font-size: 28px;
  font-weight: 950;
  text-align: center;
}

.rank-thumb img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  background: #1e293b;
}

.rank-content h2,
.rank-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 950;
}

.rank-content p {
  margin: 8px 0 0;
  color: #cbd5e1;
  font-size: 14px;
}

.rank-extra {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  color: #cbd5e1;
  font-weight: 800;
}

.detail-top {
  padding: 34px 0 12px;
}

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

.detail-poster {
  position: sticky;
  top: 92px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #1e293b;
}

.detail-panel {
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.detail-panel h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 950;
  line-height: 1.14;
  letter-spacing: -0.05em;
}

.detail-one {
  margin: 16px 0 0;
  color: #e2e8f0;
  font-size: 19px;
}

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

.meta-box {
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.6);
}

.meta-label {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
}

.meta-value {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-weight: 900;
}

.player-section {
  padding: 34px 0 46px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  background: #020617;
  box-shadow: var(--shadow);
}

.player-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
  cursor: pointer;
}

.player-mask {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(249, 115, 22, 0.28), transparent 22rem),
    rgba(2, 6, 23, 0.38);
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-button {
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #ffffff;
  box-shadow: 0 24px 54px rgba(239, 68, 68, 0.34);
  cursor: pointer;
  transition: transform 0.22s ease;
}

.play-button:hover {
  transform: scale(1.08);
}

.play-button span {
  margin-left: 6px;
  font-size: 36px;
  line-height: 1;
}

.content-card {
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.76);
}

.content-card h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 950;
}

.content-card p {
  margin: 0 0 16px;
  color: #cbd5e1;
  font-size: 16px;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag-cloud a,
.tag-cloud span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.14);
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  margin-top: 56px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.84);
}

.footer-grid {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(160px, 1fr));
  gap: 28px;
}

.footer-title {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 950;
}

.footer-text,
.footer-list a {
  color: #94a3b8;
  font-size: 14px;
}

.footer-list {
  display: grid;
  gap: 8px;
}

.footer-list a:hover {
  color: #ffffff;
}

.copyright {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: 18px;
  color: #64748b;
  text-align: center;
  font-size: 13px;
}

[data-filter-card].is-hidden {
  display: none;
}

.empty-note {
  display: none;
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.76);
  color: #cbd5e1;
  text-align: center;
}

.empty-note.is-visible {
  display: block;
}

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

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

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

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    padding: 18px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.98);
    transform: translateY(-115%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: 780px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 52px;
  }

  .hero-poster-frame {
    justify-self: start;
    width: min(78vw, 310px);
  }

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

  .detail-poster {
    position: relative;
    top: auto;
    max-width: 360px;
  }

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

  .rank-row {
    grid-template-columns: 50px 86px minmax(0, 1fr);
  }

  .rank-extra {
    grid-column: 3;
    align-items: flex-start;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1280px);
  }

  .brand {
    font-size: 20px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-slide {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-actions,
  .detail-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .movie-info {
    padding: 12px;
  }

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

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

  .toolbar {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
  }

  .detail-panel,
  .content-card {
    padding: 20px;
    border-radius: 22px;
  }

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

  .play-button {
    width: 78px;
    height: 78px;
  }

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