html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #05060c;
  overscroll-behavior: none;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  font-family: Georgia, 'Times New Roman', serif;
}

#stage {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

#game {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: crosshair;
}

#hud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

#hint {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 84%;
  max-width: 560px;
  text-align: center;
  color: rgba(255, 214, 160, 0.85);
  font-size: 16px;
  letter-spacing: 0.16em;
  text-shadow: 0 0 18px rgba(255, 150, 40, 0.35);
  transition: opacity 1.4s ease;
}

#hint.fade-out { opacity: 0; }

#depth {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 214, 160, 0.6);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-align: right;
  text-shadow: 0 0 12px rgba(0,0,0,0.6);
  transition: opacity 0.8s ease;
}

#verdict {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84%;
  max-width: 600px;
  text-align: center;
  color: #ffe0b0;
  font-size: 26px;
  letter-spacing: 0.2em;
  line-height: 1.6;
  text-shadow: 0 0 30px rgba(255, 160, 40, 0.5);
  transition: opacity 1.4s ease;
}

#verdict .sub {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: rgba(255, 214, 160, 0.6);
}

.hidden { opacity: 0; }
