* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.15), transparent 30%),
    linear-gradient(135deg, #020617, #0f172a, #1e293b);
  color: #e5e7eb;
  padding: 30px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.hero {
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  font-size: 42px;
  margin: 0;
}

.hero p {
  color: #94a3b8;
  margin-bottom: 0;
}

.badge {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: bold;
  letter-spacing: 1px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.card h2 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #f8fafc;
}

.card p {
  margin: 8px 0;
}

.card small {
  color: #94a3b8;
}

.big {
  font-size: 36px;
  font-weight: bold;
}

.status-ok {
  color: #4ade80;
}

.status-warning {
  color: #facc15;
}

.status-alert {
  color: #fb923c;
}

.status-danger {
  color: #f87171;
}

.badge.status-ok {
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(74, 222, 128, 0.45);
}

.badge.status-warning {
  background: rgba(234, 179, 8, 0.14);
  border: 1px solid rgba(250, 204, 21, 0.45);
}

.badge.status-danger {
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(248, 113, 113, 0.45);
}

.bar {
  height: 14px;
  background: #334155;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 12px;
}

.bar div {
  height: 100%;
  border-radius: 999px;
}

.bar-ok {
  background: linear-gradient(90deg, #22c55e, #84cc16);
}

.bar-warning {
  background: linear-gradient(90deg, #eab308, #facc15);
}

.bar-alert {
  background: linear-gradient(90deg, #f97316, #fb923c);
}

.bar-danger {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.temp-scale {
  display: flex;
  justify-content: space-between;
  color: #64748b;
  font-size: 12px;
  margin-top: 15px;
}

.service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.service:last-child {
  border-bottom: none;
}

.legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #cbd5e1;
  margin-top: 10px;
  flex-wrap: wrap;
}

.dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-right: 6px;
}

.dot.ok {
  background: #22c55e;
}

.dot.warning {
  background: #eab308;
}

.dot.danger {
  background: #ef4444;
}

footer {
  text-align: center;
  color: #94a3b8;
  margin-top: 25px;
  font-size: 14px;
}

@media (max-width: 700px) {
  body {
    padding: 16px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .hero h1 {
    font-size: 34px;
  }
  .disk-item {
    margin-bottom: 22px;
}

  .disk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
     margin-bottom: 
   6px;
 }
}
