:root {
  color-scheme: dark;
  --bg: #0f172a;
  --bg-soft: #172033;
  --panel: rgba(30, 41, 59, 0.62);
  --panel-strong: rgba(15, 23, 42, 0.92);
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #cbd5e1;
  --accent: #10b981;
  --accent-2: #14b8a6;
  --gold: #facc15;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.18), transparent 36rem),
    radial-gradient(circle at bottom right, rgba(20, 184, 166, 0.12), transparent 32rem);
  z-index: -1;
}

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

button,
a,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1280px, calc(100% - 2rem));
  height: 4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 18px 40px rgba(16, 185, 129, 0.22);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #34d399, #2dd4bf);
  -webkit-background-clip: text;
  color: transparent;
}

.brand-text small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.35rem;
  min-width: 0;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--muted-2);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover {
  color: #34d399;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--muted-2);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.5rem 0 1rem;
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  display: block;
  padding: 0.7rem 0;
}

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

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

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.05)),
    linear-gradient(0deg, rgba(15, 23, 42, 0.92), transparent 45%);
}

.hero-content {
  position: absolute;
  inset: 0;
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1280px;
  padding-top: 2rem;
}

.hero-content > * {
  max-width: 42rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #34d399;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin: 1rem 0;
  font-size: clamp(2.35rem, 7vw, 4.9rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero p,
.page-hero p {
  margin: 0;
  color: #e2e8f0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-meta span,
.detail-meta span {
  padding: 0.36rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.66);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #e2e8f0;
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.45rem;
  border-radius: 0.72rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-button {
  color: white;
  background: linear-gradient(135deg, #10b981, #14b8a6);
  box-shadow: 0 18px 38px rgba(16, 185, 129, 0.24);
}

.ghost-button {
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(226, 232, 240, 0.2);
}

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

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
  left: 1rem;
}

.hero-next {
  right: 1rem;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

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

.hero-dot.is-active {
  width: 2rem;
  background: var(--accent);
}

.content-section,
.home-search-section {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0 0;
}

.panel-section,
.home-search-section {
  margin-top: 4rem;
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(30, 41, 59, 0.36);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  margin: 0;
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
}

.section-heading p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.section-heading.space-between {
  justify-content: space-between;
}

.section-heading.space-between > span {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.heading-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.75rem;
  background: rgba(16, 185, 129, 0.14);
  color: #34d399;
  flex: 0 0 auto;
}

.section-link {
  color: #34d399;
  font-weight: 700;
}

.filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.search-field {
  flex: 1;
  min-width: 15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.1rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.62);
}

.search-field span {
  color: #34d399;
  font-weight: 800;
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
}

.search-field input::placeholder {
  color: #64748b;
}

.filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-pill,
.filter-select {
  min-height: 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.62);
  color: var(--muted-2);
  padding: 0 0.95rem;
  cursor: pointer;
}

.filter-pill.is-active,
.filter-pill:hover,
.filter-select:hover {
  color: white;
  border-color: rgba(16, 185, 129, 0.46);
  background: rgba(16, 185, 129, 0.16);
}

.empty-state {
  color: var(--muted);
  padding: 1.5rem;
  border: 1px dashed var(--line);
  border-radius: 1rem;
  text-align: center;
}

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

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

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

.movie-card {
  min-width: 0;
}

.movie-card[hidden],
.rank-card[hidden] {
  display: none;
}

.movie-card-link {
  display: block;
  height: 100%;
}

.movie-poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

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

.movie-poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card-link:hover .movie-poster-wrap img {
  transform: scale(1.1);
}

.movie-card-link:hover .movie-poster-wrap::after,
.movie-card-link:hover .play-hover {
  opacity: 1;
}

.rating-badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.25rem 0.45rem;
  border-radius: 0.42rem;
  color: white;
  font-size: 0.78rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.play-hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  color: white;
  font-size: 2.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card-body {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.85rem;
}

.movie-title {
  color: white;
  font-size: 1rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.movie-card-link:hover .movie-title {
  color: #34d399;
}

.movie-meta,
.movie-genre {
  color: var(--muted);
  font-size: 0.82rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-one-line {
  margin: 0.25rem 0 0;
  color: #cbd5e1;
  font-size: 0.88rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

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

.category-tile {
  position: relative;
  min-height: 12rem;
  overflow: hidden;
  border-radius: 1.2rem;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid var(--line);
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 0.45s ease, opacity 0.25s ease;
}

.category-tile:hover img {
  transform: scale(1.06);
  opacity: 0.85;
}

.category-tile span {
  position: absolute;
  inset: auto 0 0;
  padding: 1.2rem;
  display: grid;
  gap: 0.35rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent);
}

.category-tile strong {
  font-size: 1.2rem;
  color: white;
}

.category-tile em {
  color: #cbd5e1;
  font-style: normal;
  font-size: 0.86rem;
  line-height: 1.5;
}

.rank-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

.rank-card a {
  position: relative;
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1rem;
  min-height: 6.25rem;
  padding: 0.75rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--line);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-card a:hover {
  background: rgba(30, 41, 59, 0.88);
  transform: translateY(-2px);
}

.rank-card img {
  width: 4rem;
  height: 5.6rem;
  object-fit: cover;
  border-radius: 0.7rem;
}

.rank-no {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #0f172a;
  background: #facc15;
  font-size: 0.75rem;
  font-weight: 900;
  z-index: 2;
}

.rank-card-text {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 0.35rem;
}

.rank-card-text strong {
  color: white;
  font-size: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-card-text em {
  color: #cbd5e1;
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.rank-card-text span {
  color: var(--muted);
  font-size: 0.8rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 2rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(15, 23, 42, 0.2));
  border-bottom: 1px solid var(--line);
}

.page-hero > div,
.detail-inner {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
}

.small-page-hero h1 {
  font-size: clamp(2rem, 6vw, 3.8rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumb a:hover {
  color: #34d399;
}

.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.category-overview-card a {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 1.25rem;
  background: rgba(30, 41, 59, 0.42);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-overview-card a:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 185, 129, 0.42);
}

.category-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.25rem;
  padding: 0.25rem;
}

.category-preview img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 0.65rem;
}

.category-overview-text {
  padding: 1.2rem;
}

.category-overview-text h2 {
  margin: 0 0 0.5rem;
  color: white;
  font-size: 1.25rem;
}

.category-overview-text p {
  margin: 0 0 1rem;
  color: #cbd5e1;
  line-height: 1.7;
}

.category-overview-text span {
  color: #34d399;
  font-weight: 800;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3rem;
}

.detail-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(28px) saturate(1.1);
  transform: scale(1.08);
  opacity: 0.35;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72), #0f172a 92%);
}

.detail-layout {
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.detail-cover img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.detail-copy h1 {
  font-size: clamp(2rem, 6vw, 4rem);
}

.detail-one-line {
  max-width: 52rem;
  color: #e2e8f0;
  font-size: 1.16rem;
  line-height: 1.8;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.4rem 0 1.8rem;
}

.tag-row span {
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.72);
  border: 1px solid var(--line);
  color: #cbd5e1;
  font-size: 0.86rem;
}

.detail-section {
  padding-top: 2.5rem;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  background: black;
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  aspect-ratio: 16 / 9;
}

.movie-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: black;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  color: white;
  background: black;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 3;
}

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.28), rgba(0, 0, 0, 0.58));
}

.player-cover strong,
.big-play {
  position: relative;
  z-index: 1;
}

.big-play {
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #10b981, #14b8a6);
  box-shadow: 0 18px 40px rgba(16, 185, 129, 0.35);
  font-size: 2rem;
  margin-bottom: 0.85rem;
}

.player-cover strong {
  font-size: 1.05rem;
}

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

.two-column-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.text-panel {
  padding: 1.6rem;
  border-radius: 1.2rem;
  background: rgba(30, 41, 59, 0.42);
  border: 1px solid var(--line);
}

.text-panel h2 {
  margin: 0 0 1rem;
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
}

.text-panel p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.9;
  font-size: 1rem;
}

.site-footer {
  margin-top: 5rem;
  background: rgba(15, 23, 42, 0.92);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand p,
.site-footer li,
.footer-bottom {
  color: var(--muted);
  line-height: 1.7;
}

.site-footer h3 {
  margin: 0 0 1rem;
  color: white;
}

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

.site-footer a:hover {
  color: #34d399;
}

.footer-bottom {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

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

  .menu-button {
    display: block;
  }

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

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

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

@media (max-width: 760px) {
  .hero {
    min-height: 620px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 5rem;
  }

  .hero-control {
    display: none;
  }

  .filter-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-actions {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.2rem;
  }

  .movie-grid,
  .feature-grid,
  .catalog-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .category-grid,
  .category-overview-grid,
  .rank-list,
  .two-column-detail,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .detail-cover {
    max-width: 13rem;
  }

  .panel-section,
  .home-search-section {
    padding: 1.2rem;
    border-radius: 1.1rem;
  }

  .section-heading.space-between {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-text small {
    display: none;
  }
}

@media (max-width: 420px) {
  .movie-grid,
  .feature-grid,
  .catalog-grid,
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .movie-title {
    font-size: 0.94rem;
  }

  .movie-genre,
  .movie-one-line {
    display: none;
  }
}
