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

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #1a1a2e;
  color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem 5rem;
}

h1 {
  font-size: 1.4rem;
  font-weight: 400;
  color: #a0a0c0;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
}

#direction {
  font-size: 5rem;
  font-weight: 700;
  color: #4ecca3;
  line-height: 1;
  letter-spacing: 0.05em;
}

#angle {
  font-size: 1.6rem;
  color: #a0c4e0;
}

#tension {
  font-size: 1.2rem;
  color: #8080a0;
}

#rose {
  width: 200px;
  height: 200px;
  margin: 1rem 0;
}

#rose text {
  font-size: 13px;
  fill: #8090a8;
  font-family: system-ui, sans-serif;
}

#timestamp {
  font-size: 0.85rem;
  color: #606080;
}

#status {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.status-ok {
  background: #1a3a2e;
  color: #4ecca3;
  border: 1px solid #4ecca355;
}

.status-error {
  background: #3a1a1a;
  color: #e06060;
  border: 1px solid #e0606055;
}
