:root {
  color-scheme: dark;
  --ice: #d7e7f6;
  --ink: #071018;
  --gold: #e8c27a;
  --fog: rgba(8, 16, 28, 0.62);
}

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

html, body {
  height: 100%;
  background: #061018;
  color: var(--ice);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

.stage {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

#sky {
  display: block;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}

.chrome {
  position: absolute;
  inset: 18px 18px auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: rgba(215, 231, 246, 0.72);
}

.meters { display: flex; gap: 14px; }

.panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(440px, calc(100% - 32px));
  transform: translate(-50%, -50%);
  padding: 28px 26px 24px;
  border: 1px solid rgba(232, 194, 122, 0.28);
  background: var(--fog);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.panel[data-mode="play"] { display: none; }

.kicker {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h1 {
  font-weight: 500;
  font-size: clamp(34px, 8vw, 56px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.lead, .hint {
  margin-top: 14px;
  color: rgba(215, 231, 246, 0.78);
  line-height: 1.5;
}

.hint { font-size: 13px; }

button {
  margin-top: 22px;
  border: 0;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

button:hover { filter: brightness(1.06); }
