/* Estilos para la vista home */
body {
  background: radial-gradient(circle at center, #1e1e2f, #0d0d17);
  color: white;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 2s ease;
}

.animated-hexagon {
  position: relative;
  width: 200px;
  height: 115px;
  background-color: transparent;
  margin: 40px auto;
  transform: rotate(0deg);
  animation: spin 10s linear infinite;
  filter: drop-shadow(0 0 20px rgba(163, 102, 255, 0.6));
}

.animated-hexagon::before,
.animated-hexagon::after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
}

.animated-hexagon::before {
  bottom: 100%;
  border-bottom: 58px solid rgba(163, 102, 255, 0.8);
}

.animated-hexagon::after {
  top: 100%;
  border-top: 58px solid rgba(163, 102, 255, 0.8);
}

.animated-hexagon {
  background: rgba(163, 102, 255, 0.6);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.hex-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  animation: pulse 3s ease-in-out infinite;
}

/* Título */
.home-title {
  font-size: 1.8rem;
  margin-top: 20px;
  color: #d0b3ff;
  text-shadow: 0 0 10px rgba(163, 102, 255, 0.5);
}

/* Animaciones */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
