/* TRADE NINJA Custom Cyber Styles */

:root {
  color-scheme: dark;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: #070a0f;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #00f5a0;
}

/* Glow effects */
.glow-neon-green {
  box-shadow: 0 0 25px rgba(0, 245, 160, 0.35);
}

.glow-neon-blue {
  box-shadow: 0 0 25px rgba(36, 161, 222, 0.4);
}

.text-gradient-cyan-green {
  background: linear-gradient(135deg, #00d2ff 0%, #00f5a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card {
  background: rgba(13, 19, 31, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card-hover:hover {
  border-color: rgba(0, 245, 160, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(0, 245, 160, 0.2);
}

/* Ticker tape animation */
@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.animate-ticker {
  display: flex;
  width: max-content;
  animation: ticker 25s linear infinite;
}

.animate-ticker:hover {
  animation-play-state: paused;
}
