body {
  background-color: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.card {
  background-color: #111;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(255,255,255,0.1);
}

.value {
  font-size: 2rem;
  font-weight: 600;
}

.status-ok {
  color: #22c55e;
  font-weight: bold;
}

.status-alert {
  color: #ef4444;
  font-weight: bold;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 2rem 0;
}

.section-title {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.greeting {
  font-size: 1.5rem;
  font-weight: 500;
}

.subtext {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.card-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

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

.dot-alert {
  background: #ef4444;
}
