body {
  font-family: 'Montserrat', sans-serif;
  background-color: #050505;
  color: #ffffff;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a; 
}
::-webkit-scrollbar-thumb {
  background: #b266ff; 
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ff66cc; 
}

/* Glow Animations */
@keyframes neon-pulse {
  0%, 100% { box-shadow: 0 0 10px #ff66cc, 0 0 20px #ff66cc; }
  50% { box-shadow: 0 0 20px #66e0ff, 0 0 30px #66e0ff; }
}

.neon-text-gradient {
  background: linear-gradient(to right, #ff66cc, #b266ff, #66e0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Utilitários de Animação */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}