:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: rgba(15, 23, 42, 0.72);
  --panel-deep: #111827;
  --border: rgba(148, 163, 184, 0.16);
  --border-strong: rgba(148, 163, 184, 0.28);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --cyan: #22d3ee;
  --cyan-deep: #0891b2;
  --orange: #fb923c;
  --green: #34d399;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(2, 8, 23, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(34, 211, 238, 0.12), transparent 28rem),
    radial-gradient(circle at 80% 0%, rgba(251, 146, 60, 0.08), transparent 24rem),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.75));
  z-index: -1;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.94);
  border-bottom: 1px solid rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(1240px, calc(100% - 32px));
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.12);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.28);
}

.brand strong,
.footer-brand {
  display: block;
  color: #ffffff;
  font-size: 1.18rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--soft);
  font-size: 0.95rem;
}

.main-nav a,
.nav-dropdown > button {
  color: var(--soft);
  border: 0;
  padding: 0;
  background: transparent;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.nav-dropdown > button:hover,
.brand:hover strong {
  color: #ffffff;
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  width: 190px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.dropdown-panel a:hover {
  color: #ffffff;
  background: rgba(51, 65, 85, 0.72);
}

.top-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-search input,
.large-search input {
  width: 260px;
  border: 1px solid rgba(51, 65, 85, 0.95);
  border-radius: 12px;
  color: #ffffff;
  background: rgba(30, 41, 59, 0.84);
  outline: none;
  padding: 10px 14px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.top-search input:focus,
.mobile-search input:focus,
.large-search input:focus {
  border-color: rgba(34, 211, 238, 0.82);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}

.top-search button,
.mobile-search button,
.large-search button {
  border: 0;
  border-radius: 12px;
  padding: 10px 15px;
  color: #ffffff;
  background: #06b6d4;
}

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

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

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

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

.mobile-search input {
  width: 100%;
}

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

.mobile-panel nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--soft);
  background: rgba(30, 41, 59, 0.5);
}

.hero-carousel {
  position: relative;
}

.hero-stage {
  position: relative;
  height: 85vh;
  min-height: 620px;
  overflow: hidden;
  background: #000000;
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.72) 43%, rgba(2, 6, 23, 0.12) 100%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.72), transparent 56%);
}

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

.hero-pill,
.detail-tags a,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 30px;
  border-radius: 999px;
  padding: 5px 12px;
  color: #67e8f9;
  background: rgba(8, 145, 178, 0.22);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.18);
}

.hero-content h1,
.hero-content h2 {
  margin: 22px 0 18px;
  color: #ffffff;
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 720px;
  margin: 0 0 24px;
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.8;
}

.hero-meta,
.detail-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--muted);
}

.hero-meta span,
.detail-meta-line span {
  padding-right: 12px;
  border-right: 1px solid rgba(148, 163, 184, 0.25);
}

.hero-meta span:last-child,
.detail-meta-line span:last-child {
  border-right: 0;
}

.primary-btn,
.section-more,
.hero-link-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 14px;
  color: #ffffff;
  background: #06b6d4;
  padding: 0 22px;
  font-weight: 700;
  box-shadow: 0 14px 38px rgba(8, 145, 178, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

.primary-btn:hover,
.section-more:hover,
.hero-link-row a:hover {
  transform: translateY(-2px);
  background: #22d3ee;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  font-size: 2rem;
  line-height: 1;
  transition: background 0.2s ease;
}

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

.hero-control.prev {
  left: 22px;
}

.hero-control.next {
  right: 22px;
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  transition: 0.25s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: var(--cyan);
}

.content-wrap {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.home-sections,
.page-main,
.detail-main {
  padding-top: 70px;
  padding-bottom: 80px;
}

.home-sections {
  display: grid;
  gap: 80px;
}

.content-section {
  position: relative;
}

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

.eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title h2,
.page-hero h1,
.detail-title-block h1,
.detail-block h2,
.side-card h2,
.category-overview-head h2,
.search-heading h2 {
  margin: 0;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.35rem);
}

.section-more {
  min-height: 38px;
  padding: 0 16px;
  background: rgba(34, 211, 238, 0.14);
  box-shadow: none;
  color: #67e8f9;
}

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

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 54px rgba(2, 8, 23, 0.26);
  transition: transform 0.22s ease, border 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.32);
  box-shadow: 0 26px 70px rgba(2, 8, 23, 0.46);
}

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

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(2, 6, 23, 0.86));
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(8, 145, 178, 0.86);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: 0.22s ease;
}

.movie-card:hover .play-mark {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.rank-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #06b6d4, #fb923c);
  font-style: normal;
  font-weight: 800;
}

.card-body {
  padding: 14px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.card-meta a {
  color: #67e8f9;
}

.card-body h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.35;
}

.card-body h3 a:hover {
  color: #67e8f9;
}

.card-body p {
  display: -webkit-box;
  min-height: 3.1em;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag-row span {
  max-width: 100%;
  overflow: hidden;
  border-radius: 999px;
  padding: 4px 8px;
  color: #cbd5e1;
  background: rgba(51, 65, 85, 0.72);
  font-size: 0.74rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.horizontal-card {
  display: grid;
  grid-template-columns: 128px 1fr;
}

.horizontal-card .poster-link {
  aspect-ratio: 1 / 1.35;
}

.horizontal-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.glow-panel,
.cinema-panel,
.category-overview-card,
.page-hero,
.detail-block,
.side-card,
.player-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.72));
  box-shadow: var(--shadow);
}

.glow-panel,
.cinema-panel {
  padding: clamp(24px, 4vw, 46px);
}

.cinema-panel {
  overflow: hidden;
}

.cinema-panel::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 18%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.12);
  filter: blur(60px);
}

.cinema-panel::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: -20%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(251, 146, 60, 0.1);
  filter: blur(60px);
}

.cinema-panel > * {
  position: relative;
  z-index: 1;
}

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

.category-tile {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  background: rgba(15, 23, 42, 0.72);
  transition: transform 0.2s ease, border 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.35);
}

.category-tile span {
  color: #67e8f9;
  font-weight: 800;
}

.category-tile strong {
  display: block;
  margin: 12px 0;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.35;
}

.category-tile small,
.category-overview-head p,
.page-hero p,
.detail-lead,
.detail-block p,
.side-card p {
  color: var(--muted);
  line-height: 1.8;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 44px;
  padding: clamp(32px, 6vw, 70px);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.13);
  filter: blur(48px);
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.hero-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-link-row a {
  min-height: 40px;
  background: rgba(34, 211, 238, 0.12);
  box-shadow: none;
  color: #67e8f9;
}

.overview-stack {
  display: grid;
  gap: 28px;
}

.category-overview-card {
  padding: clamp(22px, 4vw, 36px);
}

.category-overview-head {
  align-items: center;
}

.category-overview-head h2 {
  font-size: 1.7rem;
}

.category-overview-head p {
  max-width: 720px;
  margin: 8px 0 0;
}

.compact-grid .movie-card:nth-child(n + 7) {
  display: none;
}

.full-grid {
  align-items: start;
}

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

.ranking-list .horizontal-card {
  grid-template-columns: 120px 1fr;
}

.detail-main {
  padding-top: 28px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a:hover {
  color: #67e8f9;
}

.breadcrumb strong {
  color: #ffffff;
  font-weight: 600;
}

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

.detail-primary {
  display: grid;
  gap: 22px;
}

.player-card {
  overflow: hidden;
  padding: 0;
  border-radius: 24px;
  background: #000000;
}

.video-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.42));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-overlay span {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.92);
  box-shadow: 0 20px 60px rgba(8, 145, 178, 0.4);
  font-size: 2rem;
}

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

.detail-title-block,
.detail-block {
  padding: 30px;
}

.detail-title-block {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.62);
}

.detail-tags {
  margin-top: 0;
  margin-bottom: 18px;
}

.detail-tags span {
  color: #cbd5e1;
  background: rgba(51, 65, 85, 0.62);
  box-shadow: none;
}

.detail-title-block h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
}

.detail-lead {
  margin: 18px 0 18px;
  font-size: 1.08rem;
}

.detail-block h2,
.side-card h2 {
  margin-bottom: 16px;
  font-size: 1.36rem;
}

.detail-block p {
  margin: 0 0 14px;
}

.review-block {
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.16), rgba(15, 23, 42, 0.9));
}

.detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.side-card {
  overflow: hidden;
  padding: 22px;
}

.poster-side {
  padding: 0;
}

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

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  padding-bottom: 12px;
}

.info-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-list dt {
  color: var(--muted);
}

.info-list dd {
  margin: 0;
  color: #ffffff;
  text-align: right;
}

.related-section {
  margin-top: 58px;
}

.large-search {
  display: flex;
  gap: 10px;
  max-width: 620px;
  margin-top: 28px;
}

.large-search input {
  width: 100%;
}

.search-heading {
  margin-bottom: 24px;
}

.site-footer {
  border-top: 1px solid rgba(30, 41, 59, 0.96);
  background: rgba(15, 23, 42, 0.92);
}

.footer-grid {
  width: min(1240px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  margin: 0 auto;
  padding: 46px 0;
}

.footer-grid p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-grid h3 {
  margin: 0 0 16px;
  color: #ffffff;
}

.footer-grid a:not(.footer-brand) {
  display: block;
  margin: 9px 0;
  color: var(--muted);
}

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

.footer-bottom {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: 18px 0;
  color: #64748b;
  font-size: 0.88rem;
}

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

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

@media (max-width: 900px) {
  .main-nav,
  .top-search {
    display: none;
  }

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

  .hero-stage {
    height: 72vh;
    min-height: 540px;
  }

  .hero-content {
    bottom: 74px;
  }

  .hero-control {
    display: none;
  }

  .six-col,
  .four-col,
  .category-grid,
  .movie-list-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-side {
    position: static;
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .mobile-panel,
  .content-wrap,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 24px, 1240px);
  }

  .brand small {
    display: none;
  }

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

  .hero-content {
    left: 18px;
    bottom: 64px;
    width: calc(100% - 36px);
  }

  .hero-meta {
    gap: 8px;
    font-size: 0.9rem;
  }

  .home-sections,
  .page-main {
    padding-top: 42px;
    padding-bottom: 52px;
  }

  .home-sections {
    gap: 52px;
  }

  .section-title,
  .category-overview-head {
    display: block;
  }

  .section-more {
    margin-top: 14px;
  }

  .six-col,
  .four-col,
  .category-grid,
  .movie-list-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .full-grid {
    gap: 14px;
  }

  .card-body {
    padding: 12px;
  }

  .card-body p,
  .tag-row {
    display: none;
  }

  .horizontal-card {
    grid-template-columns: 96px 1fr;
  }

  .glow-panel,
  .cinema-panel,
  .category-overview-card,
  .page-hero,
  .detail-title-block,
  .detail-block {
    border-radius: 22px;
    padding: 22px;
  }

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

  .poster-side img {
    max-height: 420px;
  }

  .large-search {
    display: grid;
  }

  .player-overlay span {
    width: 62px;
    height: 62px;
    font-size: 1.6rem;
  }
}
