* { box-sizing: border-box; margin: 0; padding: 0; }
body { overflow-x: hidden; }

@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 10px rgba(88,166,255,0.5), 0 0 20px rgba(88,166,255,0.3); }
  50% { text-shadow: 0 0 20px rgba(88,166,255,0.8), 0 0 40px rgba(88,166,255,0.5); }
}
@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}
@keyframes radar-sweep {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes count-up {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes scan-beam {
  0% { left: -10%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

.pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.fade-in-up { animation: fade-in-up 0.5s ease-out forwards; opacity: 0; }
.shimmer-bg {
  background: linear-gradient(90deg, transparent, rgba(88,166,255,0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.glow-border { box-shadow: 0 0 10px rgba(88,166,255,0.2), inset 0 0 10px rgba(88,166,255,0.05); }
.glow-border-green { box-shadow: 0 0 10px rgba(63,185,80,0.3); }
.glow-border-orange { box-shadow: 0 0 10px rgba(210,153,34,0.3); }
.glow-border-red { box-shadow: 0 0 10px rgba(248,81,73,0.3); }
.glow-border-purple { box-shadow: 0 0 10px rgba(188,140,255,0.3); }

.scan-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none; z-index: 100; overflow: hidden;
}
.scan-beam {
  position: absolute; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, transparent, rgba(88,166,255,0.8), transparent);
  box-shadow: 0 0 30px 10px rgba(88,166,255,0.3);
  animation: scan-beam 2s ease-in-out infinite;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0d1117; }
::-webkit-scrollbar-thumb { background: #30363d; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #484f58; }

.tree-item:hover { background: rgba(88,166,255,0.05); }
.nav-item-active { border-left: 3px solid #58a6ff; background: rgba(88,166,255,0.1); }

input:focus, textarea:focus { outline: none; }