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

body {
  background: #0a0806;
  color: #b8956a;
  font-family: 'Noto Serif', 'Garamond', serif;
  min-height: 100vh;
  overflow: hidden;
}

#chamber-wrap {
  position: relative;
  width: 100vw;
  height: 100vh;
}

/* Invisible clickable zones */
.zone {
  position: absolute;
  width: 40px;
  height: 40px;
  cursor: default;
  opacity: 0;
  z-index: 10;
}

.zone[data-state="awakened"] {
  opacity: 0.03;
  background: radial-gradient(circle, #d4a84711 0%, transparent 70%);
}

/* Stats + Form */
#offering-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90vw;
  max-width: 700px;
}

#trial-heading {
  font-size: 22px;
  font-weight: 400;
  color: #b8956a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

#trial-subtitle {
  font-size: 13px;
  font-style: italic;
  color: #7a654888;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

#live-stats {
  font-size: 13px;
  color: #b8956a;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  padding: 10px 16px;
  white-space: nowrap;
}

#offering {
  background: transparent;
  border: 1px solid #5c403366;
  color: #b8956a;
  width: 500px;
  max-width: 90vw;
  padding: 12px;
  font-family: inherit;
  font-size: 15px;
  resize: none;
  outline: none;
}

#offering::placeholder {
  color: #7a6548;
}

#offer-btn {
  display: block;
  margin: 12px auto 0;
  background: transparent;
  color: #5c4033;
  border: 1px solid #5c403355;
  padding: 8px 24px;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.5s ease;
}

#offer-btn:hover {
  border-color: #8b735555;
  color: #8b7355;
}

/* SSE whisper overlay */
#whisper {
  position: fixed;
  bottom: 30px;
  left: 30px;
  font-size: 11px;
  color: #5c403366;
  font-family: 'Courier New', monospace;
  max-width: 400px;
  pointer-events: none;
  transition: opacity 3s ease;
}

/* Offering response (dead-end feedback) */
#offering-response {
  margin: 16px auto 0;
  max-width: 500px;
  font-style: italic;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  color: #b8956a;
  opacity: 0;
  transition: opacity 1.5s ease;
  min-height: 24px;
}

#offering-response.visible {
  opacity: 1;
}

/* Attempt counter */
#attempt-counter {
  font-size: 11px;
  color: #b8956a55;
  font-style: italic;
  margin-top: 4px;
  transition: opacity 1s ease;
}

/* Hidden cartouche */
#_c {
  background: #8b735503;
}
