:root {
  color-scheme: dark;
}

[hidden] {
  display: none !important;
}

html, body {
  margin: 0;
  height: 100%;
  background: #000;
  color: #fff;
  font-family: -apple-system, "Segoe UI", sans-serif;
}

.panel {
  width: 600px;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 24px;
  position: relative;
}

.state {
  font-size: 24px;
  text-align: center;
}

.screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.label {
  font-size: 16px;
  letter-spacing: 2px;
  color: #8fd6ff;
}

.hero {
  font-size: 110px;
  font-weight: 800;
  line-height: 1;
}

.sub {
  font-size: 22px;
  color: #ddd;
}

.row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 420px;
  font-size: 24px;
}

.row span:first-child {
  color: #8fd6ff;
}

.stale {
  font-size: 14px;
  color: #999;
  margin-top: 12px;
}

.dots {
  position: absolute;
  bottom: 24px;
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
}

.dot.active {
  background: #fff;
}
