/* Custom styles */
body {
  font-family: "Inter", sans-serif;
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6, #d946ef, #10b981);
  background-size: 200% 200%;
  animation: gradient 3s ease infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.glass-effect {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.dark .glass-effect {
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid rgba(75, 85, 99, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-pattern {
  background-image: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(217, 70, 239, 0.1) 0%, transparent 50%);
}

.floating-button {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 50;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
}

@media (min-width: 768px) {
  .floating-button {
    display: none;
  }
}

.detector-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dark .detector-badge {
  background: linear-gradient(135deg, #374151, #4b5563);
  border-color: #6b7280;
  color: #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.detector-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.detector-badge i {
  margin-right: 8px;
  font-size: 1rem;
}

.payment-card {
  display: flex;
  align-items: center;
  padding: 16px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dark .payment-card {
  background: linear-gradient(135deg, #374151, #4b5563);
  border-color: #6b7280;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.payment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dark .payment-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.submit-button {
  background: linear-gradient(135deg, #3b82f6, #d946ef);
  background-size: 200% 200%;
  animation: gradient 3s ease infinite;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.whatsapp-link {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.whatsapp-link:hover {
  color: #059669;
  text-decoration: underline;
}

.dark .whatsapp-link {
  color: #34d399;
}

.dark .whatsapp-link:hover {
  color: #10b981;
}

.dataTable {
  width: 100% !important;
}

.btlr-7 {
  border-top-left-radius: 7px !important;
}

.btrr-7 {
  border-top-right-radius: 7px !important;
}

tr.border-b {
  border-bottom: 2px red solid !important;
}

/* Messages animations and responsive design */
@media (max-width: 640px) {
  #messages-container {
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

.message-alert {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 20px 48px rgba(0, 0, 0, 0.1);
}

.message-alert:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 25px 55px rgba(0, 0, 0, 0.15);
}

.progress-bar {
  animation: none;
}

/* Responsive container for larger screens */
@media (min-width: 1280px) {
  .container-xl {
    max-width: 1200px;
  }
}

@media (min-width: 1536px) {
  .container-xl {
    max-width: 1400px;
  }
}
