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

body {
  background: #0a0a0f;
  color: #c8c8d4;
  font-family: 'Georgia', serif;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  cursor: default;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#reconstruction {
  position: fixed;
  z-index: 10;
  pointer-events: none;
  max-width: 480px;
  padding: 24px 28px;
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0ea;
  opacity: 0;
  transition: opacity 0.8s ease;
  letter-spacing: 0.01em;
}

#reconstruction.visible {
  opacity: 1;
}

#reconstruction.fading {
  opacity: 0;
  transition: opacity 2.5s ease;
}

#reconstruction p {
  margin-bottom: 0.6em;
}

#reconstruction .source-trace {
  font-size: 12px;
  color: #666680;
  font-style: italic;
  margin-top: 12px;
  border-top: 1px solid #222240;
  padding-top: 8px;
}

#hint {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: #444460;
  z-index: 5;
  transition: opacity 1.5s ease;
  font-family: system-ui, -apple-system, sans-serif;
  letter-spacing: 0.04em;
}

#hint.hidden {
  opacity: 0;
}

#title {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #333348;
  z-index: 5;
  font-family: system-ui, -apple-system, sans-serif;
}
