/* CSS para estrellitas decorativas */
.little-stars {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.little-star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #ffd700;
  border-radius: 50%;
  animation: littleTwinkle 2s ease-in-out infinite;
}

.little-star::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  width: 3px;
  height: 6px;
  background: #ffd700;
  border-radius: 1.5px;
  transform: translateX(-50%);
}

.little-star::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -1px;
  width: 6px;
  height: 3px;
  background: #ffd700;
  border-radius: 1.5px;
  transform: translateY(-50%);
}

@keyframes littleTwinkle {
  0%, 100% {
    opacity: 0.4;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Posiciones específicas para estrellitas */
.little-star:nth-child(1) {
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}

.little-star:nth-child(2) {
  top: 25%;
  right: 30%;
  animation-delay: 0.5s;
}

.little-star:nth-child(3) {
  top: 45%;
  left: 10%;
  animation-delay: 1s;
}

.little-star:nth-child(4) {
  top: 65%;
  right: 15%;
  animation-delay: 1.5s;
}

.little-star:nth-child(5) {
  top: 85%;
  left: 40%;
  animation-delay: 2s;
}
