body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: #e2e8f0;
}

header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border-bottom: 1px solid #334155;
}

header h1 {
  margin: 0;
  font-size: 40px;
}

header p {
  margin-top: 10px;
  color: #94a3b8;
}

main {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.card {
  background: #1e293b;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #334155;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.card h2 {
  margin-top: 0;
  color: #60a5fa;
}

ol {
  padding-left: 20px;
}

li {
  margin: 8px 0;
}

footer {
  text-align: center;
  padding: 20px;
  color: #64748b;
  border-top: 1px solid #334155;
}

.status-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.2s;
}

.status-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

.status-page {
  background: radial-gradient(circle at top, #1e293b, #0f172a);
}

.status-container {
  max-width: 850px;
  margin: auto;
  padding: 30px;
}

.status-header {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #1e293b;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #334155;
  margin-bottom: 18px;
}

.status-header img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
}

.status-header h1 {
  margin: 0;
  font-size: 26px;
}

.status-header p {
  margin: 5px 0 0 0;
  color: #94a3b8;
}

.status-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.status-text {
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.online {
  color: #22c55e;
  text-shadow: 0 0 10px rgba(34,197,94,0.4);
}

.offline {
  color: #ef4444;
  text-shadow: 0 0 10px rgba(239,68,68,0.4);
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  text-align: center;
}

.status-grid h3 {
  margin: 0;
  font-size: 14px;
  color: #94a3b8;
}

.status-grid p {
  margin: 6px 0 0 0;
  font-size: 18px;
  font-weight: bold;
}

.status-card p {
  margin: 6px 0;
  color: #cbd5e1;
}

.status-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: bold;
}

.status-card:last-child {
  margin-bottom: 0;
}