.server-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #444;
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
}

.light-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.light {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.neon-green {
  background: #0f0;
  box-shadow: 0 0 10px #0f0;
}

.neon-blue {
  background: #0ff;
  box-shadow: 0 0 10px #0ff;
}

.neon-red {
  background: #f00;
  box-shadow: 0 0 10px #f00;
}

.flicker {
  animation: chaoticFlicker 0.2s infinite;
}

@keyframes chaoticFlicker {
  0%   { opacity: 1; }
  20%  { opacity: 0.3; }
  40%  { opacity: 0.8; }
  60%  { opacity: 0.5; }
  80%  { opacity: 0.9; }
  100% { opacity: 1; }
}

.status {
  font-size: 1.2em;
}
