body {
  background: #020617;
  color: #e5e7eb;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

img {
  background: #111827;
}

.site-logo-mark {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed, #4c1d95);
  box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.18), 0 18px 45px rgba(76, 29, 149, 0.35);
}

.section-icon {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(88, 28, 135, 0.95));
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.28);
}

.hero-slide {
  pointer-events: none;
}

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

.movie-card img {
  display: block;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.75), rgba(2, 6, 23, 0.12));
  cursor: pointer;
  transition: opacity 0.25s ease;
  z-index: 5;
}

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

.player-button {
  display: inline-flex;
  width: 5rem;
  height: 5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 2rem;
  background: rgba(124, 58, 237, 0.92);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.45);
  padding-left: 0.25rem;
}

.ranking-number {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed, #312e81);
}

.search-empty {
  grid-column: 1 / -1;
  padding: 4rem 1rem;
  text-align: center;
  color: #94a3b8;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(51, 65, 85, 0.8);
  border-radius: 1rem;
}

@media (max-width: 768px) {
  .player-button {
    width: 4rem;
    height: 4rem;
    font-size: 1.5rem;
  }

  .ranking-number {
    width: 2.5rem;
    height: 2.5rem;
  }
}
