@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
  background-color: #09090b;
  color: #f4f4f5;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #09090b;
}
::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #00d769;
}

/* Animations */
@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

.animate-pulse-glow {
  animation: pulseGlow 4s infinite ease-in-out;
}

@keyframes bounceSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.animate-bounce-slow {
  animation: bounceSlow 2s infinite ease-in-out;
}

/* Wiapy button fallback styling */
.wiapy-fallback-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 576px;
  padding: 20px 24px;
  background-color: #00d769;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(0, 215, 105, 0.3);
  transition: all 0.2s ease-in-out;
  border: 1px solid rgba(52, 211, 153, 0.3);
  cursor: pointer;
}

.wiapy-fallback-btn:hover {
  background-color: #00b85a;
  transform: scale(1.02);
  box-shadow: 0 15px 30px -5px rgba(0, 215, 105, 0.4);
}

.wiapy-fallback-btn:active {
  transform: scale(0.98);
}

.wiapy-refusal-link {
  font-size: 14px;
  font-weight: 500;
  color: #9ca3af;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 8px;
  transition: opacity 0.2s ease;
}

.wiapy-refusal-link:hover {
  opacity: 0.8;
  color: #e4e4e7;
}
