@keyframes psButtonPulse {
  0% {
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.7), 0 0 30px rgba(138, 43, 226, 0.5);
  }
  100% {
    box-shadow: 0 0 35px rgba(0, 210, 255, 1), 0 0 70px rgba(138, 43, 226, 0.8);
  }
}

.ps-button-container-center {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.ps-btn-styled {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  background: linear-gradient(90deg, #00d2ff 0%, #8a2be2 100%);
  color: #0a0a0a !important;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  animation: psButtonPulse 2s infinite alternate ease-in-out;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.ps-btn-styled:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
  color: #000000 !important;
}
