:root {
  --neon-green: #6ee38c;
  --bg-dark: #0a0f0a;
}

body {
  background-color: var(--bg-dark);
  color: white;
  font-family: var(--font-mono);
}

.agent-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.agent-card:hover {
  transform: translateY(-4px) scale(1.02);
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-pulse-soft {
  animation: pulse-soft 2s infinite;
}
