/* Premium Border Animation */
.premium-content-wrapper {
  position: relative;
  padding: 30px;
  margin: 40px 0;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.premium-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 15px;
}

.premium-border::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent, 
    rgba(255, 107, 0, 0.1), 
    rgba(255, 107, 0, 0.3), 
    rgba(76, 175, 80, 0.3), 
    rgba(76, 175, 80, 0.1), 
    transparent
  );
  animation: rotate 4s linear infinite;
}

.premium-border::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: white;
  border-radius: 13px;
  z-index: 1;
}

.premium-content {
  position: relative;
  z-index: 2;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .premium-content-wrapper {
    padding: 20px;
    margin: 20px 0;
  }
}