/*
 * 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.
 */

.shadow-card-custom {
  box-shadow: 0 0.1875rem 0.75rem 0 rgba(19, 17, 32, 0.2) !important;
}
.gradient-brand-text {
  background: linear-gradient(135deg, #7c3aed, #ec4899, #06b6d4) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text !important;
}

/* AI Award Animation */
@keyframes slideUpFade {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

@keyframes slideDownFade {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Video Show Page Styles */
.line-clamp-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@keyframes bar-pulse {
  0%, 100% {
    height: 40%;
  }
  50% {
    height: 100%;
  }
}

.bar-1 {
  animation: bar-pulse 1s ease-in-out infinite;
  animation-delay: 0s;
}

.bar-2 {
  animation: bar-pulse 1s ease-in-out infinite;
  animation-delay: 0.15s;
}

.bar-3 {
  animation: bar-pulse 1s ease-in-out infinite;
  animation-delay: 0.3s;
}

.bar-4 {
  animation: bar-pulse 1s ease-in-out infinite;
  animation-delay: 0.45s;
}

/* Preparing status animation - shimmer effect */
@keyframes preparing-shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-preparing {
  background: linear-gradient(
    90deg,
    currentColor 0%,
    currentColor 40%,
    oklch(0.7 0.15 250) 50%,
    currentColor 60%,
    currentColor 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: preparing-shimmer 2s ease-in-out infinite;
}