body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #111;
  color: #fff;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.status-box {
  text-align: center;
  padding: 30px 40px;
  border-radius: 12px;
  background: #1c1c1c;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  min-width: 320px;
}

h1 {
  margin: 0 0 20px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #4caf50;
}

.online {
  color: #4caf50;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.offline {
  color: #f44336;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.players {
  margin-top: 8px;
  font-size: 1rem;
  color: #ccc;
}

.motd {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #999;
}
