:root {
  color-scheme: light;
  --ink: #3a2d2a;
  --paper: #fbf4e6;
  --accent: #c0656f;
  --accent-soft: #f2c7b8;
  --shadow: rgba(84, 55, 50, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff2d9 0%, #f6d2c7 45%, #efb9c0 100%);
  min-height: 100vh;
  overflow: hidden;
}

.stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#scene {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--paper);
  touch-action: none;
}

.hud {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(255, 247, 236, 0.85);
  border: 1px solid #e3c3b4;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  box-shadow: 0 12px 30px rgba(90, 60, 50, 0.18);
}

.message {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 250, 242, 0.93);
  border: 2px solid #e2b5a3;
  border-radius: 22px;
  padding: 18px 26px;
  max-width: min(90vw, 560px);
  text-align: center;
  box-shadow: 0 18px 40px rgba(103, 72, 60, 0.2);
  font-family: "Cormorant Garamond", "Georgia", serif;
  letter-spacing: 0.2px;
  transition: opacity 0.4s ease;
}

.message.hidden {
  opacity: 0;
  pointer-events: none;
}

.message-text {
  margin: 0 0 8px;
  font-size: clamp(1.1rem, 2.3vw, 1.45rem);
  line-height: 1.4;
}

.message-sub {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9b6d5e;
}

.start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(248, 235, 223, 0.75);
  backdrop-filter: blur(6px);
}

.start-card {
  background: var(--paper);
  border: 2px solid #e2b5a3;
  border-radius: 28px;
  padding: 28px 36px 32px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(96, 64, 54, 0.2);
  max-width: 340px;
}

.start-title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.7rem;
  margin: 0 0 8px;
}

.start-subtitle {
  margin: 0 0 18px;
  font-size: 0.95rem;
  color: #7d5148;
}

.start-button {
  border: none;
  background: var(--accent);
  color: #fff6ee;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(199, 105, 107, 0.35);
}

.start-button:focus-visible {
  outline: 3px solid #f3c9b9;
  outline-offset: 4px;
}

@media (max-width: 720px) {
  .message {
    bottom: 24px;
  }

  .hud {
    width: calc(100% - 40px);
    justify-content: space-between;
  }
}
