body {
  background-color: #020617;
  color: #f8fafc;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.cyber-grid {
  background-image: 
    linear-gradient(to right, rgba(14, 165, 233, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14, 165, 233, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.glass-effect {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.glow-border:hover {
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
  border-color: rgba(14, 165, 233, 0.5);
}
.scanline {
  width: 100%;
  height: 100px;
  background: linear-gradient(0deg, transparent 0%, rgba(14, 165, 233, 0.05) 50%, transparent 100%);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #020617;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}