#heroSection {
  background-image: linear-gradient(135deg, #e2c038ff 0%, #a2674bff 100%);
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.animate-spin {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.animate-bounce {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translateY(0);
  }
  40%,
  43% {
    transform: translateY(-30px);
  }
  70% {
    transform: translateY(-15px);
  }
}
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

#movieBackdrop {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#movieBackdrop .bg-black.bg-opacity-50 {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

#trailerModal {
  background-color: rgba(0, 0, 0, 0.75) !important;
}
