/* Modern Motion-Animated Subscribe Button Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&display=swap');

.animated-subscribe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #047857 0%, #10b981 50%, #059669 100%);
  background-size: 200% auto;
  color: #ffffff !important;
  font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  z-index: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  outline: none;
}

/* Shining sweep reflection */
.animated-subscribe-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
  z-index: 2;
  animation: shine-sweep 3s infinite ease-in-out;
}

@keyframes shine-sweep {
  0% {
    left: -150%;
  }
  50% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

/* Pulsing outer accent ring */
.animated-subscribe-btn::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #10b981;
  border-radius: 50px;
  opacity: 0;
  transform: scale(0.95);
  animation: ring-pulse 2s infinite cubic-bezier(0.25, 0, 0, 1);
  pointer-events: none;
  z-index: -1;
}

@keyframes ring-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.animated-subscribe-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.6);
  background-position: right center;
}

.animated-subscribe-btn:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.animated-subscribe-btn i {
  font-size: 16px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
}

.animated-subscribe-btn:hover i {
  transform: scale(1.2) rotate(15deg);
}

/* Membership callout card layout styling */
.membership-info-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #1f0303 0%, #4a0505 50%, var(--primary-color, #b91b1c) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.membership-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(185, 27, 27, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
  animation: slow-rotate 20s linear infinite;
}

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

.benefit-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #f1f5f9;
}

.benefit-tag:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: #ffffff;
}

.benefit-tag i {
  font-size: 16px;
}
