* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
  color: #e2e8f0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

img {
  max-width: 100%;
  display: block;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.96));
  border-bottom: 1px solid rgba(51, 65, 85, 0.9);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark,
.footer-brand span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #22d3ee, #2563eb);
  color: #ffffff;
  font-size: 14px;
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.35);
}

.brand-text,
.footer-brand {
  color: transparent;
  background: linear-gradient(90deg, #22d3ee, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.nav-link {
  color: #cbd5e1;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #22d3ee;
}

.header-search {
  position: relative;
  width: 260px;
}

.header-search input {
  width: 100%;
  height: 40px;
  border: 1px solid #475569;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.95);
  color: #ffffff;
  padding: 0 44px 0 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus {
  border-color: #22d3ee;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18);
}

.header-search button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 0;
  color: #94a3b8;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: #e2e8f0;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
}

.hero-carousel {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  background: #020617;
}

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

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

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

.hero-slide.active .hero-image {
  animation: slowZoom 8s ease forwards;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(34, 211, 238, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.84) 72%, #020617 100%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.4), rgba(2, 6, 23, 0.8));
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: 88px;
  width: min(720px, calc(100% - 48px));
}

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

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(51, 65, 85, 0.78);
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.pill.cyan {
  background: linear-gradient(90deg, #06b6d4, #2563eb);
  color: #ffffff;
  border-color: transparent;
}

.hero-content h1 {
  margin: 22px 0 16px;
  color: #ffffff;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  margin: 0;
  color: #cbd5e1;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
  max-width: 680px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn.primary {
  background: linear-gradient(90deg, #06b6d4, #2563eb);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(34, 211, 238, 0.22);
}

.btn.ghost {
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.58);
  color: #e2e8f0;
}

.hero-dots {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 46px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #64748b;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 34px;
  background: #22d3ee;
}

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

.home-shell {
  padding: 74px 0 90px;
  display: grid;
  gap: 82px;
}

.with-top {
  padding-top: 104px;
  padding-bottom: 86px;
}

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

.section-head > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(34, 211, 238, 0.12);
  color: #22d3ee;
  border: 1px solid rgba(34, 211, 238, 0.2);
  font-weight: 900;
}

.section-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 36px);
}

.section-more {
  color: #22d3ee;
  font-weight: 700;
}

.section-intro {
  margin-top: -14px;
  margin-bottom: 24px;
  color: #94a3b8;
  line-height: 1.8;
}

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

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

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

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

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

.movie-card,
.movie-card-minimal,
.movie-list-card,
.category-tile,
.category-overview-card,
.rank-row {
  border: 1px solid rgba(51, 65, 85, 0.88);
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover,
.movie-card-minimal:hover,
.movie-list-card:hover,
.category-tile:hover,
.category-overview-card:hover,
.rank-row:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.58);
  box-shadow: 0 22px 54px rgba(34, 211, 238, 0.12);
}

.movie-card {
  overflow: hidden;
  border-radius: 18px;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #0f172a;
}

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

.movie-card:hover .poster-wrap img,
.movie-card-minimal:hover .poster-wrap img,
.movie-card-large:hover .large-poster img,
.category-tile:hover img {
  transform: scale(1.08);
}

.poster-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(6, 182, 212, 0.9);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.card-body {
  padding: 16px;
}

.card-meta,
.card-foot,
.list-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #94a3b8;
  font-size: 13px;
}

.card-body h3,
.movie-card-minimal h3,
.movie-list-card h3,
.large-overlay h3 {
  margin: 10px 0 8px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.35;
}

.card-body p,
.movie-card-minimal p,
.movie-list-card p,
.large-overlay p {
  margin: 0;
  color: #94a3b8;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-foot {
  justify-content: space-between;
  margin-top: 14px;
  color: #22d3ee;
  font-weight: 700;
}

.movie-card-minimal {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  padding-bottom: 12px;
}

.movie-card-minimal h3,
.movie-card-minimal p {
  padding: 0 12px;
}

.movie-card-minimal h3 {
  font-size: 15px;
}

.movie-card-minimal p {
  font-size: 12px;
  -webkit-line-clamp: 1;
}

.list-stack {
  display: grid;
  gap: 16px;
}

.movie-list-card {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border-radius: 18px;
}

.movie-list-card img {
  width: 96px;
  height: 128px;
  object-fit: cover;
  border-radius: 12px;
}

.movie-list-card strong,
.rank-row strong {
  color: #22d3ee;
  font-size: 24px;
}

.large-poster {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 22px;
}

.large-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background: linear-gradient(180deg, transparent 18%, rgba(2, 6, 23, 0.94) 100%);
}

.large-overlay h3 {
  font-size: 26px;
}

.category-section {
  padding: 32px;
  border: 1px solid rgba(51, 65, 85, 0.75);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.45);
}

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

.category-tile {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(2, 6, 23, 0.92));
}

.category-tile span,
.category-tile p {
  position: relative;
  z-index: 2;
}

.category-tile span {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.category-tile p {
  margin: 8px 0 0;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.6;
}

.page-hero {
  margin-bottom: 36px;
  padding: 54px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 20%, rgba(34, 211, 238, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.7));
  border: 1px solid rgba(51, 65, 85, 0.8);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.small-hero h1,
.category-hero h1 {
  margin: 10px 0 12px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 58px);
}

.small-hero p,
.category-hero p {
  max-width: 780px;
  margin: 0;
  color: #cbd5e1;
  line-height: 1.85;
  font-size: 17px;
}

.eyebrow {
  color: #22d3ee;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 900;
}

.category-overview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 70px;
}

.category-overview-card {
  border-radius: 24px;
  overflow: hidden;
  padding: 22px;
}

.category-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.category-preview img {
  height: 110px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.category-overview-card h2 {
  margin: 0 0 8px;
  color: #ffffff;
}

.category-overview-card p {
  color: #94a3b8;
  line-height: 1.7;
}

.category-overview-card span {
  color: #22d3ee;
  font-weight: 800;
}

.filter-panel {
  margin-bottom: 28px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(51, 65, 85, 0.88);
}

.filter-row {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 14px;
}

.filter-row input,
.filter-row select {
  min-height: 46px;
  border: 1px solid #475569;
  border-radius: 14px;
  background: #0f172a;
  color: #e2e8f0;
  padding: 0 14px;
  outline: none;
}

.result-text {
  min-height: 22px;
  margin-top: 12px;
  color: #94a3b8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #94a3b8;
}

.breadcrumb a:hover {
  color: #22d3ee;
}

.detail-shell {
  display: grid;
  gap: 34px;
}

.detail-hero {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  padding: 30px;
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(51, 65, 85, 0.88);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.detail-main h1 {
  margin: 20px 0 14px;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
}

.detail-one-line {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.9;
  margin: 0 0 24px;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.detail-info-grid div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(30, 41, 59, 0.76);
  border: 1px solid rgba(71, 85, 105, 0.62);
}

.detail-info-grid span {
  display: block;
  margin-bottom: 6px;
  color: #94a3b8;
  font-size: 13px;
}

.detail-info-grid strong {
  color: #ffffff;
  font-size: 16px;
}

.player-section {
  border-radius: 26px;
  overflow: hidden;
  background: #000000;
  border: 1px solid rgba(51, 65, 85, 0.88);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
}

.video-shell {
  position: relative;
  background: #000000;
  overflow: hidden;
}

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

.play-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: radial-gradient(circle, rgba(2, 6, 23, 0.26), rgba(2, 6, 23, 0.68));
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.play-layer span {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 0 45px rgba(34, 211, 238, 0.42);
  font-size: 34px;
  padding-left: 6px;
}

.video-shell.playing .play-layer {
  opacity: 0;
  pointer-events: none;
}

.video-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 18px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.video-shell:hover .video-controls,
.video-shell:focus-within .video-controls {
  opacity: 1;
}

.video-controls button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.86);
  color: #ffffff;
  padding: 0 16px;
  font-weight: 700;
  cursor: pointer;
}

.video-error {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: #fecaca;
  background: rgba(0, 0, 0, 0.82);
  font-weight: 700;
}

.video-error[hidden] {
  display: none;
}

.article-card,
.content-card {
  padding: 30px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(51, 65, 85, 0.88);
}

.article-card h2,
.content-card h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 28px;
}

.article-card p,
.content-card p {
  color: #cbd5e1;
  line-height: 2;
  margin: 0 0 18px;
}

.content-card a {
  color: #22d3ee;
  font-weight: 800;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 56px 72px 1fr 170px 70px;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 18px;
}

.rank-no {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  font-weight: 900;
}

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

.rank-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.rank-title small {
  display: block;
  margin-top: 6px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
}

.rank-meta {
  color: #94a3b8;
}

.site-footer {
  border-top: 1px solid rgba(51, 65, 85, 0.78);
  background: linear-gradient(180deg, #0f172a, #000000);
  color: #94a3b8;
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 34px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

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

.site-footer h3 {
  color: #ffffff;
  margin: 0 0 14px;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: #94a3b8;
}

.site-footer a:hover {
  color: #22d3ee;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 34px;
  border-top: 1px solid rgba(51, 65, 85, 0.58);
  color: #64748b;
  font-size: 14px;
}

@keyframes slowZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.1);
  }
}

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

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

  .header-search {
    width: 220px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    padding: 12px 0;
  }

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

  .primary-nav {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0 4px;
    border-top: 1px solid rgba(51, 65, 85, 0.8);
  }

  .primary-nav.open {
    display: flex;
  }

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

  .hero-carousel {
    height: 78vh;
    min-height: 620px;
  }

  .hero-content {
    left: 20px;
    bottom: 78px;
    width: calc(100% - 40px);
  }

  .hero-dots {
    left: 20px;
    right: auto;
    bottom: 34px;
  }

  .compact-grid,
  .catalogue-grid,
  .feature-grid,
  .large-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .rank-row {
    grid-template-columns: 42px 58px 1fr 48px;
  }

  .rank-meta {
    display: none;
  }

  .rank-row img {
    width: 58px;
    height: 78px;
  }

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

@media (max-width: 560px) {
  .brand {
    font-size: 20px;
  }

  .page-shell {
    width: min(100% - 24px, 1180px);
  }

  .page-hero,
  .article-card,
  .content-card,
  .detail-hero,
  .category-section {
    padding: 22px;
    border-radius: 22px;
  }

  .compact-grid,
  .catalogue-grid,
  .feature-grid,
  .large-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .movie-list-card {
    grid-template-columns: 78px 1fr;
  }

  .movie-list-card img {
    width: 78px;
    height: 104px;
  }

  .movie-list-card strong {
    display: none;
  }

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

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