/* Comentario: estilos mínimos — la protagonista es la cámara, no la interfaz */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow: hidden;
  background: #0e0e0e;
}

#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #0e0e0e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.loading-content h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.loading-content p {
  opacity: 0.7;
  font-size: 0.95rem;
}

#hint-message {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 500;
  backdrop-filter: blur(4px);
}

#error-message {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #c0392b;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  z-index: 900;
  max-width: 85%;
  text-align: center;
}

.hidden {
  display: none !important;
}
