/* style.css - Folha de estilo base personalizada para o LiveShop Turbo */

body {
  font-family: 'Inter', sans-serif;
  background-color: #0f172a; /* slate-900 */
  color: #f8fafc; /* slate-50 */
  overflow-x: hidden;
  min-height: 100vh;
}

/* Custom Scrollbar for Textarea */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1e293b;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #00FF7F;
  border-radius: 4px;
  opacity: 0.5;
}

.glow-effect {
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.4);
  transition: all 0.3s ease;
}

.glow-effect:hover:not(:disabled) {
  box-shadow: 0 0 25px rgba(0, 255, 127, 0.8);
  transform: translateY(-2px);
}

.glow-effect:active:not(:disabled) {
  transform: translateY(1px);
}

.neon-text {
  text-shadow: 0 0 15px rgba(0, 255, 127, 0.5);
}

.bg-gradient-neon {
  background: linear-gradient(135deg, #00FF7F 0%, #10b981 100%);
}

.animate-spin-fast {
  animation: spin 0.3s linear infinite;
}

@keyframes pulse-neon {

  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(0, 255, 127, 0.5);
  }

  50% {
    opacity: 0.8;
    text-shadow: 0 0 5px rgba(0, 255, 127, 0.2);
  }
}

.pulse-neon-text {
  animation: pulse-neon 1.5s ease-in-out infinite;
}

.result-enter {
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
