body {
  background: linear-gradient(135deg, #140030, #000428);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 30px;
}
h1 {
  font-size: 2em;
  background: linear-gradient(45deg,#ff00c8,#00e0ff);
  -webkit-background-clip:text;
  color:transparent;
}
.bot-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.bot {
  background: rgba(10,10,30,0.85);
  border: 1px solid #00e0ff55;
  border-radius: 16px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 0 20px #00e0ff33;
}
.status {
  font-weight: bold;
  color: #0f0;
}
.status.off { color: #f33; }
.status.warn { color: #ff9a00; }
.footer { margin-top: 50px; font-size: 0.9em; color: #999; }
