html, body {
  margin: 0;
  padding: 0;
  background: #0F0F0F;
  overflow: hidden;
}

canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  display: block;
}

/* Frase poética */
.quote {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  color: #F7CACA;
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  max-width: 90vw;
  line-height: 1.3em;
  letter-spacing: 0.02em;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-5px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.instructions {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(247, 202, 202, 0.75);
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.03em;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 3s ease forwards;
  animation-delay: 1.5s;
}
