body {
  margin: 0;
  padding: 0;
  background-color: #0f0f0e;
  font-family: 'Georgia', serif;
  color: #e7d9cf;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  margin-top: 40px;
  font-size: 2.5em;
  color: #af7e62;
  text-align: center;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeIn 2s ease forwards;
  animation-delay: 2s;
}

.svg-container {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

svg {
  width: 90%;
  max-width: 500px;
  height: auto;
}

.cuerda {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  animation: dibujar 5s ease forwards;
}

.rosa {
  stroke: #f7c4d3;
}

.beige {
  stroke: #d8c3a5;
}

.blanco {
  stroke: white;
  filter: drop-shadow(0 0 6px #fff);
  animation: dibujar 5s ease forwards, brillar 3s ease-in-out infinite;
}

@keyframes dibujar {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes brillar {
  0%, 100% { filter: drop-shadow(0 0 6px #fff); }
  50% { filter: drop-shadow(0 0 12px #fff); }
}

.versiculo {
  margin-top: 30px;
  font-size: 1em;
  text-align: center;
  color: #d8c3a5;
  padding: 0 20px;
  font-style: italic;
  opacity: 0;
  animation: fadeIn 2s ease forwards;
  animation-delay: 3s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
