@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  color: #f8f8ff;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #0d0821 0%,
    #1a1030 25%,
    #2a1d42 50%,
    #1a1030 75%,
    #0d0821 100%
  );
  position: relative;
  overflow: hidden;
}
/* Partículas flotantes de fondo - removidas las animaciones */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(120, 81, 169, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(138, 69, 178, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(103, 58, 145, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.container {
  text-align: center;
  z-index: 10;
  padding: 2rem;
  background: rgba(20, 10, 35, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  border: 1px solid rgba(120, 81, 169, 0.25);
  box-shadow: 0 8px 32px rgba(120, 81, 169, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.greetings {
  font-size: 7rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.greetings > span {
  display: inline-block;
  animation: glow 5s ease-in-out infinite;
  transition: transform 0.5s ease;
}
.greetings > span:hover {
  transform: scale(1.2) rotateY(360deg);
}
@keyframes glow {
  0%,
  100% {
    color: #f5f3ff;
    text-shadow: 0 0 20px #7c51a9, 0 0 40px #8a45b8, 0 0 60px #a569bd,
      0 0 80px #673a91;
    transform: translateY(0);
  }
  20%,
  80% {
    color: #2a1d42;
    text-shadow: none;
    transform: translateY(0);
  }
  50% {
    color: #c8a8d8;
    text-shadow: 0 0 25px #7c51a9, 0 0 45px #8a45b8;
    transform: translateY(-8px);
  }
}
.greetings > span:nth-child(2) {
  animation-delay: 0.2s;
}
.greetings > span:nth-child(3) {
  animation-delay: 0.4s;
}
.greetings > span:nth-child(4) {
  animation-delay: 0.6s;
}
.greetings > span:nth-child(5) {
  animation-delay: 0.8s;
}
.greetings > span:nth-child(6) {
  animation-delay: 1s;
}
.description {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
  color: #c8a8d8;
  text-shadow: 0 2px 10px rgba(120, 81, 169, 0.4);
  animation: fadeInUp 2s ease-out;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.button-container {
  position: relative;
}
.botones {
  background: linear-gradient(45deg, #7c51a9, #8a45b8, #a569bd);
  background-size: 300% 300%;
  animation: gradientButton 6s ease-in-out infinite;
  border: none;
  border-radius: 50px;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(120, 81, 169, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}
.botones:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(120, 81, 169, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.botones::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}
.botones:hover::before {
  left: 100%;
}
.botones a {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 15px 40px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
@keyframes gradientButton {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
/* Efectos de partículas decorativas */
.sparkles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #a569bd;
  border-radius: 50%;
  animation: sparkle 5s linear infinite;
}
@keyframes sparkle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  15% {
    opacity: 1;
    transform: translateY(85vh) scale(1);
  }
  85% {
    opacity: 1;
    transform: translateY(15vh) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(0vh) scale(0);
  }
}
/* Responsive */
@media screen and (max-width: 768px) {
  .greetings {
    font-size: 4rem;
  }

  .description {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }

  .botones a {
    font-size: 1rem;
    padding: 12px 30px;
  }
  .container {
    margin: 1rem;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .greetings {
    font-size: 2.4rem;
  }

  .description {
    font-size: 1.2rem;
  }

  .botones a {
    padding: 10px 25px;
  }
}
