body {
  font-family: "Ubuntu", sans-serif;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* ANIMACIÓN FONDO */

.animate-bg-move {
  background-size: 200% 200%;
  background-repeat: repeat-x;
  animation: bgMove 10s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes bgMove {
  0% {
    background-position: 20% 50%;
  }
  50% {
    background-position: 80% 50%;
  }
  100% {
    background-position: 20% 50%;
  }
}


/* fin de ANIMACIÓN FONDO */

.bg-darkened {
  background: #0c0c0c !important;
  animation: none !important;
  filter: brightness(0.4) blur(2px);
}

.animate-paused {
  animation-play-state: paused !important;
}

#darkOverlay {
  transition: opacity 3s ease;
}

#backgroundWrapper {
  transition: opacity 3s ease;
}


#playButton {
  background: linear-gradient(to right, #ff0030, #b6005a);
  transition: background 2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  font-weight: 600;
  margin-top: 10vh;
}
#playButton::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: transparent;
  z-index: -1;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3),
    10px 10px 30px rgba(100, 255, 218, 0.25),
    -10px -10px 30px rgba(255, 128, 255, 0.25),
    0 0 40px rgba(128, 128, 255, 0.3);
  animation: GlowPulse 4s ease-in-out infinite;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none; 
}

#playButton.playing {
  position: relative;
  transition: background 2s ease;
  z-index: 1;
  box-shadow: none;
  color: white;
  overflow: visible;
  background: transparent !important;
}

#playButton.playing::before {
  opacity: 1;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: inherit;
  background: transparent;
  z-index: -1;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3),
     10px 10px 30px rgba(100, 255, 218, 0.25),
     -10px -10px 30px rgba(255, 128, 255, 0.25),
     0 0 40px rgba(128, 128, 255, 0.3); 
  animation: GlowPulse 4s ease-in-out infinite;
}

@keyframes GlowPulse {
  0%,
  100% {
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.15),
      10px 10px 20px rgba(100, 255, 218, 0.1),
      -10px -10px 20px rgba(255, 128, 255, 0.1),
      0 0 30px rgba(128, 128, 255, 0.15);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.4),
      10px 10px 40px rgba(100, 255, 218, 0.35),
      -10px -10px 40px rgba(255, 128, 255, 0.35),
      0 0 50px rgba(128, 128, 255, 0.4);
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

#playButton.playing #buttonText {
  background: linear-gradient(90deg, #ec4899, #8b5cf6, #06b6d4);
  background-size: 300% 300%;
  background-position: 0% 50%;
  animation: gradientFlow 2s linear infinite alternate;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.clip-polygon {
  clip-path: polygon(0% 100%, 20% 0%, 80% 0%, 100% 100%);
}

.clip-tab {
  clip-path: polygon(0 0, 0% 100%, 100% 100%, 100% 0, 85% 10%, 15% 10%);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

div.header-bar {
  box-shadow: 0 2px 9px 5px rgb(0 0 0 / 32%) !important;
}

.dark .dark\:text-white {
  color: white;
}

.info-box {
  max-width: 340px;
  margin: 1.3rem auto 0 auto;
  padding: 15px;
  border: 1px solid;
  border-radius: 1em;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
}

.info-titulo {
  font-weight: bold !important;
  font-size: 14px !important;
  text-transform: uppercase;
}

.subtitulo {
  padding: 2px;
  margin-top: 10px !important;
  margin: 0 auto;
  display: block;
  width: 180px;
  border-radius: 8px;
  background-color: rgba(102, 102, 102, 0.2);
}

footer {
  display: none;
}
