:root {
  --amber-950: #451a03;
  --amber-900: #78350f;
  --amber-800: #92400e;
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-100: #fef3c7;
  --rose-700: #be123c;
  --rose-600: #e11d48;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --cyan-700: #0e7490;
  --emerald-600: #059669;
  --blue-900: #1e3a8a;
  --indigo-900: #312e81;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.12), 0 4px 6px -4px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.16), 0 8px 10px -6px rgba(15, 23, 42, 0.16);
  --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--slate-800);
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 45%, var(--slate-50) 100%);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-800), var(--amber-700), var(--amber-900));
  box-shadow: var(--shadow-lg);
}

.nav-inner {
  width: min(1280px, calc(100% - 32px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--amber-900);
  background: linear-gradient(135deg, #ffffff, var(--amber-100));
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 8px 18px rgba(69, 26, 3, 0.28);
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fde68a;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-900), var(--amber-700) 48%, #7f1d1d);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: radial-gradient(circle at 22px 22px, rgba(255, 255, 255, 0.55) 2px, transparent 0);
  background-size: 52px 52px;
  animation: softPulse 3.6s ease-in-out infinite;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(1.15) contrast(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 26%, rgba(245, 158, 11, 0.42), transparent 26%),
    linear-gradient(90deg, rgba(69, 26, 3, 0.92) 0%, rgba(120, 53, 15, 0.78) 48%, rgba(15, 23, 42, 0.62) 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1280px, calc(100% - 32px));
  min-height: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 48px;
  padding: 70px 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fde68a;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(8px);
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero p {
  margin: 0 0 28px;
  color: #ffedd5;
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.65;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-meta span,
.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
}

.hero-actions,
.section-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 20px;
  border-radius: 12px;
  border: 0;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary {
  color: var(--amber-900);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  background: var(--amber-100);
}

.btn-amber {
  color: var(--white);
  background: var(--amber-700);
  box-shadow: var(--shadow-lg);
}

.btn-amber:hover {
  background: var(--amber-600);
}

.btn-outline {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.82);
  background: rgba(146, 64, 14, 0.7);
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.hero-mini-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xl);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-mini-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.hero-mini-card img {
  width: 92px;
  height: 128px;
  object-fit: cover;
  border-radius: 14px;
}

.hero-mini-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.35;
}

.hero-mini-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

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

.page-hero {
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-800), var(--amber-900));
  padding: 56px 0;
}

.page-hero.emerald {
  background: linear-gradient(90deg, #065f46, #134e4a);
}

.page-hero.blue {
  background: linear-gradient(135deg, var(--blue-900), var(--indigo-900), var(--slate-900));
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.1;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.section {
  padding: 64px 0;
}

.section.alt {
  background: linear-gradient(90deg, var(--slate-100), #fffbeb);
}

.section.dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--indigo-900), var(--slate-900));
}

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

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--slate-800);
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.15;
}

.dark .section-title {
  color: var(--white);
}

.section-title .badge-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--amber-600);
  box-shadow: var(--shadow-lg);
  font-size: 20px;
}

.section-lead {
  max-width: 760px;
  margin: -10px 0 28px;
  color: var(--slate-600);
  font-size: 17px;
}

.dark .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.movie-poster {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-900), var(--slate-900));
}

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

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

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-600);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.card-badge.blue {
  background: #2563eb;
}

.card-badge.rose {
  background: var(--rose-600);
}

.movie-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.movie-card h3,
.movie-card h2 {
  margin: 0;
  color: var(--slate-800);
  font-size: 18px;
  line-height: 1.35;
}

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

.card-meta {
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 700;
}

.card-desc {
  margin: 0;
  color: var(--slate-700);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 8px;
  color: var(--slate-600);
  background: var(--slate-100);
  font-size: 12px;
  font-weight: 700;
}

.wide-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1fr);
  min-height: 260px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #fff1f2);
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wide-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
}

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

.wide-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rank-number {
  position: absolute;
  top: -12px;
  left: -12px;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--rose-600);
  box-shadow: var(--shadow-lg);
  font-size: 22px;
  font-weight: 900;
}

.category-card {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 26px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-600), var(--cyan-700));
  box-shadow: var(--shadow-lg);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.category-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-2xl);
  filter: saturate(1.08);
}

.category-card h2,
.category-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.category-card p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.82);
}

.category-card span {
  margin-top: auto;
  font-weight: 800;
}

.filter-box {
  margin-bottom: 30px;
  padding: 22px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.filter-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.7fr) repeat(3, minmax(140px, 0.8fr));
  gap: 14px;
}

.filter-box input,
.filter-box select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  color: var(--slate-800);
  background: var(--slate-50);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.filter-box input:focus,
.filter-box select:focus {
  border-color: var(--amber-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.is-hidden {
  display: none !important;
}

.detail-hero {
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-950), var(--amber-900));
  padding: 44px 0 58px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

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

.detail-poster {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-2xl);
  background: var(--slate-900);
}

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

.detail-info h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
}

.detail-info p {
  max-width: 920px;
  margin: 0 0 22px;
  color: #ffedd5;
  font-size: 18px;
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 800;
}

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

.panel {
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}

.panel + .panel {
  margin-top: 24px;
}

.panel h2 {
  margin: 0 0 16px;
  color: var(--slate-800);
  font-size: 28px;
}

.panel p {
  margin: 0;
  color: var(--slate-700);
}

.player-panel {
  margin-top: -28px;
  margin-bottom: 34px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--slate-900), var(--amber-900));
  box-shadow: var(--shadow-2xl);
}

.player-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: 30px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.76));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.player-start {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  color: var(--amber-900);
  background: var(--white);
  box-shadow: var(--shadow-2xl);
  font-weight: 900;
}

.play-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-600);
}

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

.sidebar-link {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  background: var(--slate-50);
  transition: background 0.2s ease, transform 0.2s ease;
}

.sidebar-link:hover {
  background: #fff7ed;
  transform: translateX(3px);
}

.sidebar-link img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
}

.sidebar-link strong {
  display: block;
  color: var(--slate-800);
  line-height: 1.35;
}

.sidebar-link span {
  display: block;
  margin-top: 5px;
  color: var(--slate-500);
  font-size: 13px;
}

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

.site-footer {
  color: var(--slate-300);
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
  padding: 48px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.8fr);
  gap: 28px;
  margin-bottom: 30px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

.site-footer p,
.site-footer li {
  color: var(--slate-300);
  font-size: 14px;
}

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

.footer-links a:hover {
  color: #fbbf24;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.back-top {
  padding: 9px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--amber-700);
}

.line-clamp-1,
.line-clamp-2,
.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-1 {
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  -webkit-line-clamp: 3;
}

@keyframes softPulse {
  50% {
    opacity: 0.08;
  }
}

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

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

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

  .sidebar {
    display: none;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 16px;
    background: var(--amber-800);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link {
    padding: 13px 4px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 0 86px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .grid-5,
  .grid-4,
  .grid-3,
  .grid-2,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .logo {
    font-size: 18px;
  }

  .hero-copy {
    max-width: 100%;
  }

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

  .btn {
    width: 100%;
  }

  .hero-mini-card,
  .wide-card,
  .sidebar-link {
    grid-template-columns: 1fr;
  }

  .hero-mini-card img,
  .sidebar-link img {
    width: 100%;
    height: 180px;
  }

  .grid-5,
  .grid-4,
  .grid-3,
  .grid-2,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .panel,
  .player-panel {
    padding: 20px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}
