:root {
  --color-primary: #0891b2;
  --color-primary-dark: #0369a1;
  --color-accent: #f97316;
  --color-red: #ef4444;
  --color-text: #1f2937;
  --color-muted: #64748b;
  --color-soft: #f8fafc;
  --color-line: #e2e8f0;
  --shadow-card: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.10);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: #f8fafc;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, #2563eb 0%, #06b6d4 100%);
  box-shadow: 0 10px 28px rgba(8, 47, 73, 0.20);
}

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

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

.brand__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #0891b2;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(8, 47, 73, 0.18);
}

.brand__text {
  font-size: 22px;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 68px;
  font-weight: 600;
  opacity: 0.92;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #cffafe;
  opacity: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__panel {
  position: absolute;
  top: 58px;
  left: 50%;
  width: 210px;
  padding: 10px;
  color: #334155;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__panel a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
}

.nav-dropdown__panel a:hover {
  color: #0369a1;
  background: #eff6ff;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input {
  width: 245px;
  padding: 10px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  outline: none;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.header-search button,
.mobile-search button {
  padding: 10px 15px;
  color: #0369a1;
  background: #ffffff;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 0;
  border-radius: 12px;
}

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

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

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.mobile-search input {
  flex: 1;
  width: auto;
}

.hero {
  position: relative;
  min-height: 520px;
  height: 70vh;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #0369a1 100%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}

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

.hero-slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__shade,
.detail-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.78) 0%, rgba(15, 23, 42, 0.54) 45%, rgba(15, 23, 42, 0.10) 100%);
}

.hero-slide__content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-copy {
  max-width: 680px;
  color: #ffffff;
}

.hero-kicker,
.page-hero span,
.section-title span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 14px;
  color: #ffffff;
  background: linear-gradient(90deg, #f97316 0%, #ef4444 100%);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero-copy h1 {
  margin: 20px 0 16px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 620px;
  margin: 0 0 22px;
  color: #e2e8f0;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}

.hero-meta span,
.detail-meta span {
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

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

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

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(90deg, #06b6d4 0%, #2563eb 100%);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.button-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-dots {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 36px;
  z-index: 4;
  display: flex;
  gap: 9px;
}

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

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

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

.section-soft {
  background: linear-gradient(135deg, #eff6ff 0%, #ecfeff 100%);
}

.section-warm {
  background: linear-gradient(135deg, #fff7ed 0%, #fefce8 100%);
}

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

.section-title--small {
  align-items: center;
  margin-bottom: 18px;
}

.section-title span {
  margin-bottom: 10px;
  color: #0369a1;
  background: #dffafe;
}

.section-title h2,
.section-title h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.section-title h3 {
  color: #334155;
  font-size: 20px;
  font-weight: 700;
}

.section-title a {
  color: #0891b2;
  font-weight: 800;
}

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.movie-card__cover {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #0891b2 100%);
}

.movie-card__cover img,
.detail-poster img,
.mini-card img,
.category-tile img,
.detail-hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.2s ease;
}

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

.movie-card__play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(8, 145, 178, 0.92);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(8, 145, 178, 0.28);
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
  border-radius: 12px;
  font-weight: 900;
}

.movie-card__body {
  padding: 16px;
}

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.3;
}

.movie-card h3 a:hover {
  color: var(--color-primary);
}

.movie-meta,
.movie-desc {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.movie-desc {
  display: -webkit-box;
  min-height: 44px;
  margin-top: 8px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.tag-row span {
  padding: 4px 8px;
  color: #0369a1;
  background: #e0f2fe;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.tag-row--large span {
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.category-tile {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a 0%, #0891b2 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.82) 100%);
}

.category-tile img {
  position: absolute;
  inset: 0;
  opacity: 0.42;
}

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

.category-tile span {
  font-size: 22px;
  font-weight: 900;
}

.category-section-list {
  display: grid;
  gap: 42px;
}

.category-strip {
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

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

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a 0%, #075985 50%, #0891b2 100%);
}

.page-hero--compact {
  padding: 72px 0;
}

.page-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
}

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

.breadcrumb {
  margin-bottom: 16px;
  color: #bae6fd;
  font-size: 14px;
}

.breadcrumb a {
  color: #ffffff;
  font-weight: 700;
}

.category-overview-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.category-overview-card__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.category-overview-card h2 {
  margin: 0;
  font-size: 24px;
}

.category-overview-card strong {
  padding: 6px 10px;
  color: #0369a1;
  background: #e0f2fe;
  border-radius: 999px;
}

.category-overview-card p {
  color: var(--color-muted);
}

.category-overview-card__samples {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.category-overview-card__samples span {
  padding: 8px 10px;
  background: #f8fafc;
  border-radius: 10px;
  color: #334155;
  font-size: 14px;
}

.catalog-toolbar,
.search-panel {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

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

.catalog-toolbar input,
.catalog-toolbar select,
.search-panel input {
  width: 100%;
  padding: 12px 14px;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  outline: none;
}

.catalog-toolbar input:focus,
.catalog-toolbar select:focus,
.search-panel input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.14);
}

.catalog-count {
  margin: 0 0 20px;
  color: var(--color-muted);
  font-weight: 700;
}

.ranking-list {
  display: grid;
  gap: 10px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.ranking-list li {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: 16px;
}

.ranking-list span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
  border-radius: 10px;
  font-weight: 900;
}

.ranking-list a {
  font-weight: 800;
}

.ranking-list em {
  color: var(--color-muted);
  font-style: normal;
}

.detail-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 70px 0;
}

.detail-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.34;
  filter: blur(2px);
}

.detail-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
  align-items: center;
}

.detail-poster {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #0891b2 100%);
  border: 6px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.detail-info h1 {
  margin: 10px 0 16px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
}

.detail-one-line {
  max-width: 850px;
  margin: 0 0 24px;
  color: #dbeafe;
  font-size: 20px;
}

.player-section {
  padding: 56px 0 28px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  background: #020617;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 10px;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(8, 145, 178, 0.24), rgba(2, 6, 23, 0.72));
  border: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-overlay span {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
  border-radius: 50%;
  box-shadow: 0 20px 45px rgba(8, 145, 178, 0.35);
  font-size: 28px;
}

.player-overlay strong {
  font-size: 20px;
}

.player-status {
  margin: 0;
  padding: 12px 16px;
  color: #cbd5e1;
  background: #0f172a;
  font-size: 14px;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 30px;
  padding: 28px 0 64px;
}

.detail-article,
.related-panel {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.detail-article h2,
.related-panel h2 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 24px;
}

.detail-article p {
  margin: 0 0 24px;
  color: #334155;
  font-size: 17px;
}

.info-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
}

.info-list div {
  padding: 12px;
  background: #f8fafc;
  border-radius: 12px;
}

.info-list dt {
  color: var(--color-muted);
  font-size: 13px;
}

.info-list dd {
  margin: 2px 0 0;
  font-weight: 800;
}

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

.mini-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: #f8fafc;
  border-radius: 16px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.mini-card:hover {
  transform: translateX(4px);
  background: #e0f2fe;
}

.mini-card img {
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f172a 0%, #0891b2 100%);
}

.mini-card strong {
  display: block;
  color: #0f172a;
  line-height: 1.3;
}

.mini-card strong span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 6px;
  color: #ffffff;
  background: #f97316;
  border-radius: 8px;
  font-size: 12px;
}

.mini-card small {
  display: block;
  margin-top: 5px;
  color: var(--color-muted);
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, #1f2937 0%, #0f172a 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 46px 0;
}

.footer-brand {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 22px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 18px;
}

.site-footer p {
  margin: 0;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: #67e8f9;
}

.footer-bottom {
  padding: 16px;
  text-align: center;
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.poster-img.is-missing {
  opacity: 0;
}

.movie-card__cover:has(.poster-img.is-missing)::after,
.category-tile:has(.poster-img.is-missing)::after,
.detail-poster:has(.poster-img.is-missing)::after,
.mini-card:has(.poster-img.is-missing)::after {
  content: "";
}

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

@media (max-width: 1100px) {
  .header-search {
    display: none;
  }

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

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

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

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

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

  .mobile-menu-button {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .site-header__inner {
    height: 62px;
  }

  .brand__text {
    font-size: 19px;
  }

  .hero {
    height: 76vh;
    min-height: 560px;
  }

  .hero-slide__shade {
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.42) 0%, rgba(2, 6, 23, 0.88) 100%);
  }

  .hero-copy {
    padding-top: 90px;
  }

  .hero-dots {
    left: 24px;
    right: auto;
  }

  .section-title {
    display: grid;
  }

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

  .catalog-toolbar,
  .search-panel {
    grid-template-columns: 1fr;
  }

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

  .detail-poster {
    width: min(260px, 74vw);
  }

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

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

  .ranking-list li {
    grid-template-columns: 42px 1fr;
  }

  .ranking-list em {
    grid-column: 2;
  }
}

@media (max-width: 540px) {
  .container,
  .site-header__inner,
  .mobile-nav {
    width: min(100% - 22px, 1180px);
  }

  .movie-grid,
  .movie-grid--six,
  .movie-grid--ranking,
  .ranking-home,
  .category-tile-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .movie-card {
    display: grid;
    grid-template-columns: 42% 1fr;
    border-radius: 18px;
  }

  .movie-card__cover {
    min-height: 100%;
  }

  .movie-card__body {
    padding: 14px;
  }

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

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