* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #080B12;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
}

.status-page {
  padding: 34px 18px;
  color: #fff;
}

.status-shell {
  width: min(640px, 100%);
}

.status-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.status-brand,
.status-state {
  font-weight: 700;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.status-brand {
  font-size: 22px;
}

.status-word {
  color: #fff;
}

.log-word {
  color: #FF6700;
}

.status-state {
  color: #777;
  font-size: 19px;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(5px);
  animation: status-state-in 420ms ease-out 120ms forwards;
}

.status-list {
  display: grid;
  gap: 14px;
}

.status-entry {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
}

.status-entry h1 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-entry p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0.12em;
}

@keyframes status-state-in {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@media (max-width: 420px) {
  .status-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
