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

.discount-progress {
  background: linear-gradient(90deg, #2C68F6 0%, #4F46E5 100%);
}
.payment-switch {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glassmorphism {
  backdrop-filter: blur(10px);
  background: rgba(33, 41, 54, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.video-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.video-card:hover {
  border-color: #2C68F6;
  transform: translateY(-2px);
}
.secure-badge {
  background: linear-gradient(135deg, #10B981, #059669);
}
.success-animation {
  animation: successPulse 2s ease-in-out infinite;
}
@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.gradient-text {
  background: linear-gradient(135deg, #2C68F6, #10B981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.download-button {
  background: linear-gradient(135deg, #2C68F6, #4F46E5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(44, 104, 246, 0.3);
}