@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 Colors */
:root {
  --quantum-primary: #6366f1;
  --quantum-secondary: #10b981;
  --quantum-buy: #10b981;
  --quantum-sell: #ef4444;
  --quantum-profit: #10b981;
  --quantum-loss: #ef4444;
  --quantum-glow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.quantum-glow {
  text-shadow: var(--quantum-glow);
}

.text-quantum-primary {
  color: var(--quantum-primary);
}

.text-quantum-secondary {
  color: var(--quantum-secondary);
}

.text-buy {
  color: var(--quantum-buy);
}

.text-sell {
  color: var(--quantum-sell);
}

.text-profit {
  color: var(--quantum-profit);
}

.text-loss {
  color: var(--quantum-loss);
}

.bg-buy {
  background-color: var(--quantum-buy);
}

.bg-sell {
  background-color: var(--quantum-sell);
}

/* Trading Card */
.trading-card {
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.trading-card:hover {
  border-color: var(--quantum-primary);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
}

/* 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;
}