/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

.bg-customgreen {
  background-color: #14A800;
}

.text-customgreen {
  color: #14A800;
}

.border-customgreen {
  border-color: #14A800;
}

.modern-bg {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #f3f4f6 100%);
}

.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.movie-card {
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.movie-card:hover {
  border-color: #37a000;
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(55, 160, 0, 0.2);
}

.movie-card.active {
  border-color: #37a000;
  box-shadow: 0 8px 25px rgba(55, 160, 0, 0.25);
}

.status-indicator {
  position: relative;
  overflow: hidden;
}

.status-indicator::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.gradient-text {
  background: linear-gradient(135deg, #37a000, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

/* Video navigation styles */
#video-navigation button.show {
  opacity: 1 !important;
  pointer-events: auto !important;
}

#video-info-overlay.show {
  opacity: 1 !important;
}

/* Video list item styles */
.video-item {
  transition: all 0.2s ease;
}

.video-item:hover {
  background-color: #f3f4f6;
}

.video-item.current {
  background-color: #dcfce7;
  border-color: #37a000;
}
