:root {
  --black: #030108;
  --grape-950: #3b0764;
  --grape-900: #581c87;
  --grape-850: #5b1593;
  --grape-800: #6b21a8;
  --grape-700: #7e22ce;
  --grape-600: #9333ea;
  --grape-500: #a855f7;
  --grape-400: #c084fc;
  --grape-300: #d8b4fe;
  --gold-500: #f59e0b;
  --gold-400: #fbbf24;
  --gold-300: #fcd34d;
  --ink: #f8f4ff;
  --muted: #c8ace8;
  --line: rgba(216, 180, 254, 0.16);
  --card: rgba(40, 8, 67, 0.78);
  --card-strong: rgba(58, 14, 96, 0.92);
  --shadow-purple: 0 0 28px rgba(168, 85, 247, 0.22);
  --shadow-gold: 0 0 24px rgba(251, 191, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 2%, rgba(168, 85, 247, 0.28), transparent 30rem),
    radial-gradient(circle at 88% 0%, rgba(251, 191, 36, 0.16), transparent 28rem),
    linear-gradient(180deg, #000000 0%, var(--grape-950) 48%, #000000 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(216, 180, 254, 0.14);
  background: linear-gradient(90deg, rgba(59, 7, 100, 0.96), rgba(88, 28, 135, 0.96), rgba(59, 7, 100, 0.96));
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

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

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.site-logo {
  font-size: 1.22rem;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  color: #1a0b08;
  background: linear-gradient(135deg, var(--gold-300), var(--grape-400));
  border-radius: 999px;
  box-shadow: var(--shadow-gold);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.22rem;
  margin-left: 0.4rem;
  overflow: hidden;
}

.nav-link,
.mobile-link {
  color: var(--grape-300);
  border-radius: 0.75rem;
  transition: 0.2s ease;
}

.nav-link {
  padding: 0.6rem 0.78rem;
  font-size: 0.94rem;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: #ffffff;
  background: rgba(126, 34, 206, 0.78);
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.18);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}

.header-search input,
.mobile-search input,
.library-filter input {
  color: #ffffff;
  border: 1px solid rgba(216, 180, 254, 0.22);
  outline: none;
  background: rgba(32, 6, 54, 0.72);
  transition: 0.2s ease;
}

.header-search input {
  width: clamp(9rem, 15vw, 16rem);
  padding: 0.65rem 0.9rem;
  border-radius: 0.85rem;
}

.header-search input:focus,
.mobile-search input:focus,
.library-filter input:focus {
  border-color: var(--grape-400);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.22);
}

.header-search button,
.mobile-search button,
.hero-actions a,
.hero-actions button,
.primary-button,
.secondary-button,
.library-filter button {
  border: 0;
  border-radius: 0.85rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button,
.mobile-search button,
.primary-button,
.library-filter button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--grape-600), var(--grape-700));
  box-shadow: var(--shadow-purple);
}

.header-search button {
  padding: 0.65rem 0.9rem;
}

.header-search button:hover,
.mobile-search button:hover,
.hero-actions a:hover,
.hero-actions button:hover,
.primary-button:hover,
.secondary-button:hover,
.library-filter button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  color: #ffffff;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
}

.mobile-panel {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 1rem;
}

.mobile-search {
  display: flex;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.mobile-search input {
  flex: 1;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
}

.mobile-search button {
  padding: 0.75rem 1rem;
}

.mobile-nav {
  display: grid;
  gap: 0.4rem;
}

.mobile-link {
  padding: 0.78rem 0.9rem;
}

.hero-carousel {
  position: relative;
  min-height: clamp(620px, 82vh, 860px);
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 180, 254, 0.12);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 1.2s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(24, 5, 38, 0.82) 38%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.08) 46%, rgba(0, 0, 0, 0.65) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 7rem 0 9rem;
}

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

.hero-eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.2rem;
  color: var(--gold-300);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  max-width: 920px;
  margin: 0 0 1.2rem;
  font-size: clamp(2.4rem, 5.8vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy h2 {
  margin: 0 0 1rem;
  color: var(--grape-300);
  font-size: clamp(1.6rem, 3vw, 3rem);
}

.hero-copy p {
  max-width: 690px;
  margin: 0 0 1.6rem;
  color: #e8d8ff;
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-actions a,
.hero-actions button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  font-weight: 800;
}

.hero-actions a:first-child,
.primary-button {
  color: #190a02;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: var(--shadow-gold);
}

.hero-actions a:nth-child(2),
.secondary-button {
  color: #ffffff;
  border: 1px solid rgba(216, 180, 254, 0.28);
  background: rgba(74, 12, 114, 0.7);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.hero-tags span,
.tag-row span,
.detail-tag-row span,
.filter-chip {
  display: inline-flex;
  align-items: center;
  color: var(--grape-300);
  border: 1px solid rgba(216, 180, 254, 0.18);
  background: rgba(88, 28, 135, 0.46);
  border-radius: 999px;
}

.hero-tags span {
  padding: 0.42rem 0.75rem;
}

.hero-thumbs {
  position: absolute;
  right: max(1rem, calc((100vw - 1280px) / 2));
  bottom: 2rem;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
  width: min(680px, calc(100% - 2rem));
}

.hero-thumb {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0.65rem;
  align-items: center;
  min-width: 0;
  padding: 0.5rem;
  color: #ffffff;
  border: 1px solid rgba(216, 180, 254, 0.16);
  background: rgba(24, 5, 38, 0.7);
  border-radius: 1rem;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: 0.2s ease;
}

.hero-thumb img {
  width: 54px;
  height: 72px;
  border-radius: 0.7rem;
  object-fit: cover;
}

.hero-thumb span {
  display: block;
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-thumb small {
  color: var(--muted);
}

.hero-thumb.active,
.hero-thumb:hover {
  border-color: rgba(251, 191, 36, 0.68);
  box-shadow: var(--shadow-gold);
}

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

.section-head,
.page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-title,
.page-head h1,
.detail-title {
  margin: 0;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.page-head h1,
.detail-title {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.section-head p,
.page-head p {
  max-width: 720px;
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-link {
  color: var(--gold-300);
  font-weight: 800;
  white-space: nowrap;
}

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 180, 254, 0.13);
  background: linear-gradient(180deg, rgba(58, 14, 96, 0.9), rgba(24, 5, 38, 0.9));
  border-radius: 1.25rem;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.28);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 191, 36, 0.55);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34), var(--shadow-purple);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, rgba(59, 7, 100, 0.9), rgba(0, 0, 0, 0.9));
}

.poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.movie-card:hover .poster-link img {
  transform: scale(1.06);
  opacity: 0.78;
}

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.play-chip {
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
  color: #180703;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border-radius: 999px;
  box-shadow: var(--shadow-gold);
}

.rank-badge {
  left: 0.75rem;
  top: 0.75rem;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.45rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--grape-600), var(--grape-900));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.7rem;
}

.movie-card-body {
  padding: 1rem;
}

.movie-meta,
.detail-meta,
.breadcrumb,
.category-card p {
  color: var(--muted);
}

.movie-meta {
  margin: 0 0 0.5rem;
  font-size: 0.84rem;
}

.movie-card h3 {
  margin: 0 0 0.55rem;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.35;
}

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

.movie-desc {
  display: -webkit-box;
  min-height: 3.9em;
  margin: 0 0 0.85rem;
  overflow: hidden;
  color: #ded0f1;
  font-size: 0.92rem;
  line-height: 1.65;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.tag-row,
.detail-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag-row span {
  padding: 0.25rem 0.55rem;
  font-size: 0.78rem;
}

.feature-band {
  border-top: 1px solid rgba(216, 180, 254, 0.1);
  border-bottom: 1px solid rgba(216, 180, 254, 0.1);
  background: rgba(0, 0, 0, 0.24);
}

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

.category-card {
  min-height: 168px;
  padding: 1.35rem;
  border: 1px solid rgba(216, 180, 254, 0.15);
  background:
    radial-gradient(circle at 80% 10%, rgba(251, 191, 36, 0.14), transparent 8rem),
    linear-gradient(135deg, rgba(88, 28, 135, 0.92), rgba(24, 5, 38, 0.88));
  border-radius: 1.35rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.24);
  transition: 0.22s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(251, 191, 36, 0.52);
  box-shadow: var(--shadow-purple);
}

.category-card strong {
  display: block;
  margin-bottom: 0.65rem;
  color: #ffffff;
  font-size: 1.4rem;
}

.category-card p {
  margin: 0;
  line-height: 1.75;
}

.library-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin: 1.5rem 0 2rem;
  padding: 1rem;
  border: 1px solid rgba(216, 180, 254, 0.13);
  background: rgba(24, 5, 38, 0.54);
  border-radius: 1rem;
}

.library-filter input {
  flex: 1;
  min-width: min(100%, 260px);
  padding: 0.86rem 1rem;
  border-radius: 0.9rem;
}

.library-filter button {
  padding: 0.86rem 1rem;
}

.filter-chip {
  padding: 0.5rem 0.85rem;
  cursor: pointer;
}

.filter-chip:hover,
.filter-chip.active {
  color: #190a02;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin: 1.6rem 0 1rem;
  font-size: 0.95rem;
}

.breadcrumb a:hover {
  color: var(--gold-300);
}

.sep {
  color: rgba(216, 180, 254, 0.36);
}

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

.detail-main,
.detail-sidebar,
.text-panel {
  border: 1px solid rgba(216, 180, 254, 0.13);
  background: rgba(24, 5, 38, 0.64);
  border-radius: 1.35rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
}

.detail-main {
  padding: clamp(1rem, 3vw, 1.8rem);
}

.detail-sidebar {
  padding: 1rem;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(216, 180, 254, 0.18);
  background: linear-gradient(135deg, rgba(59, 7, 100, 0.8), rgba(0, 0, 0, 0.9));
  border-radius: 1.1rem;
  box-shadow: var(--shadow-purple);
}

.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-meta {
  margin: 0.7rem 0 1rem;
  line-height: 1.8;
}

.detail-tag-row span {
  padding: 0.38rem 0.68rem;
}

.player-section {
  margin: 1.6rem 0;
}

.player-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(216, 180, 254, 0.16);
  background: #000000;
  border-radius: 1.15rem;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.4);
}

.player-frame video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 0.8rem;
  padding: 2rem;
  color: #ffffff;
  border: 0;
  background: radial-gradient(circle at center, rgba(147, 51, 234, 0.32), rgba(0, 0, 0, 0.72));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon-large {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  color: #1b0702;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border-radius: 999px;
  box-shadow: var(--shadow-gold);
  font-size: 2rem;
}

.player-overlay strong {
  font-size: clamp(1.2rem, 2.6vw, 2.2rem);
  text-align: center;
}

.text-panel {
  margin-top: 1.2rem;
  padding: 1.35rem;
}

.text-panel h2,
.detail-sidebar h2 {
  margin: 0 0 0.8rem;
  color: #ffffff;
  font-size: 1.35rem;
}

.text-panel p {
  margin: 0;
  color: #e6d8f7;
  line-height: 2;
}

.related-list {
  display: grid;
  gap: 0.85rem;
}

.related-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.6rem;
  border: 1px solid rgba(216, 180, 254, 0.11);
  background: rgba(88, 28, 135, 0.28);
  border-radius: 0.9rem;
  transition: 0.2s ease;
}

.related-item:hover {
  border-color: rgba(251, 191, 36, 0.48);
  transform: translateX(3px);
}

.related-item img {
  width: 76px;
  height: 102px;
  object-fit: cover;
  border-radius: 0.7rem;
}

.related-item strong {
  display: block;
  color: #ffffff;
  line-height: 1.35;
}

.related-item span {
  display: block;
  margin-top: 0.38rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.no-result {
  display: none;
  padding: 3rem 1rem;
  color: var(--muted);
  text-align: center;
  border: 1px solid rgba(216, 180, 254, 0.12);
  background: rgba(24, 5, 38, 0.48);
  border-radius: 1.1rem;
}

.no-result.show {
  display: block;
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(216, 180, 254, 0.13);
  background: linear-gradient(180deg, rgba(24, 5, 38, 0.92), rgba(0, 0, 0, 0.98));
}

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

.footer-logo {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  line-height: 1.8;
}

.site-footer a:hover {
  color: var(--gold-300);
}

.footer-links,
.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  align-content: start;
}

.copyright {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 1.6rem;
  color: rgba(216, 180, 254, 0.56);
  font-size: 0.9rem;
}

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

  .menu-toggle {
    display: block;
  }

  .header-search {
    margin-left: auto;
  }

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

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

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

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

  .hero-carousel {
    min-height: 760px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 12vw, 4.2rem);
  }

  .hero-thumbs {
    left: 1rem;
    right: 1rem;
    grid-template-columns: 1fr;
    width: auto;
  }

  .hero-thumb {
    grid-template-columns: 42px 1fr;
  }

  .hero-thumb img {
    width: 42px;
    height: 54px;
  }

  .section-head,
  .page-head {
    display: block;
  }

  .section-link {
    display: inline-block;
    margin-top: 0.8rem;
  }

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

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

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

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

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

@media (max-width: 520px) {
  .header-inner,
  .main-section,
  .page-section,
  .mobile-panel,
  .footer-inner,
  .copyright {
    width: min(100% - 1rem, 1280px);
  }

  .site-logo {
    font-size: 1rem;
  }

  .logo-mark {
    width: 2rem;
    height: 2rem;
  }

  .movie-grid.large-grid,
  .movie-grid {
    grid-template-columns: 1fr 1fr;
  }

  .movie-card-body {
    padding: 0.78rem;
  }

  .movie-desc {
    display: none;
  }

  .tag-row span:nth-child(n+3) {
    display: none;
  }

  .player-overlay {
    padding: 1rem;
  }

  .play-icon-large {
    width: 4rem;
    height: 4rem;
  }
}
