
/* Custom Gradient Border CTA */
.gradient-border-wrap {
  position: relative;
  background: #050505;
  padding: 1px;
  border-radius: 0.5rem;
  overflow: hidden;
}
.gradient-border-wrap::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent, 
    rgba(255, 45, 85, 1), 
    transparent 30%, 
    rgba(0, 242, 255, 1), 
    transparent 60%
  );
  animation: rotate 4s linear infinite;
  z-index: 0;
}
.gradient-border-content {
  position: relative;
  z-index: 1;
  background: rgba(18, 18, 18, 0.9);
  border-radius: 0.5rem;
}
@keyframes rotate {
  100% { transform: rotate(1turn); }
}
