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

body {
  background: #1a1205;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  font-family: 'Georgia', serif;
}

#ui {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
  white-space: nowrap;
}

#title {
  color: #ffd84a;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.btn {
  background: rgba(255, 220, 80, 0.15);
  color: #ffd84a;
  border: 1px solid rgba(255, 220, 80, 0.4);
  padding: 7px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.btn:hover {
  background: rgba(255, 220, 80, 0.28);
}

#status {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 220, 80, 0.55);
  font-size: 12px;
  letter-spacing: 0.08em;
  z-index: 10;
  white-space: nowrap;
}