body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
  padding: 40px;
  background: #111827;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  width: 320px;
}

h1 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #60a5fa;
}

a {
  display: block;
  margin: 12px 0;
  padding: 12px;
  text-decoration: none;
  color: white;
  background: #2563eb;
  border-radius: 8px;
  transition: 0.2s;
  font-weight: bold;
}

#play-btn {
  margin-top: 20px;
}

a:hover {
  background: #1d4ed8;
  transform: scale(1.03);
}

.footer {
  margin-top: 15px;
  font-size: 12px;
  color: #94a3b8;
}

.online {
  color: #22c55e;
  font-weight: bold;
}

.offline {
  color: #ef4444;
  font-weight: bold;
}

.checking {
  color: #ffff00;
  font-weight: bold;
}