html, body {
  overflow: hidden;
}

#scene-container {
  position: fixed;
  inset: 0;
  z-index: 1;
}

#scene-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}

#labels-layer {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.body-label-3d {
  position: absolute;
  transform: translate(-50%, -170%);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(12, 9, 28, 0.72);
  border: 1px solid rgba(232, 200, 116, 0.28);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  white-space: nowrap;
  opacity: 0.9;
  transition: opacity 0.15s ease, color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.body-label-3d.visible {
  opacity: 1;
  color: var(--accent-gold);
  background: rgba(232, 200, 116, 0.14);
  border-color: rgba(232, 200, 116, 0.6);
}
