@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
}

#vanta-bg {
  z-index: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}
/* Quantum Trading Styles */
@keyframes quantum-glow {
  0% { text-shadow: 0 0 5px rgba(99, 102, 241, 0.5); }
  50% { text-shadow: 0 0 20px rgba(99, 102, 241, 0.9); }
  100% { text-shadow: 0 0 5px rgba(99, 102, 241, 0.5); }
}

.quantum-glow {
  animation: quantum-glow 3s ease-in-out infinite;
}

.text-profit {
  color: #10b981;
}

.text-loss {
  color: #ef4444;
}

.text-quantum-primary {
  color: #6366f1;
}

.text-quantum-secondary {
  color: #8b5cf6;
}

.trading-card {
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-item {
  transition: all 0.3s ease;
}

.signal-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.animate-pulse {
  animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

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

::-webkit-scrollbar-track {
  background: #1f2937;
}

::-webkit-scrollbar-thumb {
  background: #4b5563;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}
