.subscription-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  border: 1px solid rgba(80, 240, 255, 0.2);
  box-shadow: 0 0 30px rgba(80, 240, 255, 0.2);
  transform: translateZ(0);
  margin-top: 3rem;
}

.subscription-section::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(80, 240, 255, 0.2) 0%, transparent 50%);
  top: -50%;
  left: -50%;
  animation: rotateGradientSlow 15s linear infinite;
  pointer-events: none;
  z-index: -1;
}

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

.benefits-box {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  backdrop-filter: blur(5px);
  animation: glowPulseBox 3s infinite alternate;
}

@keyframes glowPulseBox {
  from { box-shadow: 0 0 10px rgba(80, 240, 255, 0.3); }
  to { box-shadow: 0 0 25px rgba(80, 240, 255, 0.6); }
}

.benefits-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(80, 240, 255, 0.08),
    rgba(74, 142, 255, 0.08)
  );
  animation: gradientMoveFast 4s linear infinite;
  pointer-events: none;
}

@keyframes gradientMoveFast {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 200%; }
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.subscription-section .section-title {
  background: linear-gradient(90deg, #50f0ff, #4a8eff, #50f0ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 3s linear infinite;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

@keyframes textShine {
  to { background-position: 200% center; }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.benefit-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.2rem 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
  height: 100%;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(80, 240, 255, 0.5);
  box-shadow: 0 10px 25px rgba(80, 240, 255, 0.2), 0 0 15px rgba(80, 240, 255, 0.2);
  z-index: 2;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(
    circle at center,
    rgba(80, 240, 255, 0.15) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0.8);
  z-index: -1;
}

.benefit-card:hover::before {
  opacity: 1;
  transform: scale(1);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.benefit-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.2) translateY(-5px);
  animation: iconFloat 2s ease infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) scale(1.2); }
  50% { transform: translateY(-10px) scale(1.2); }
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: white;
  text-shadow: 0 0 10px rgba(80, 240, 255, 0.5);
  transition: all 0.3s ease;
}

.benefit-card:hover h3 {
  color: #50f0ff;
  transform: scale(1.1);
  letter-spacing: 1px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.benefit-card:hover p {
  color: white;
}

.benefit-card.special {
  border: 2px solid rgba(80, 240, 255, 0.3);
  background: linear-gradient(135deg,
    rgba(80, 240, 255, 0.15),
    rgba(74, 142, 255, 0.15)
  );
  animation: borderPulse 2s infinite alternate;
}

@keyframes borderPulse {
  from { border-color: rgba(80, 240, 255, 0.3); }
  to { border-color: rgba(80, 240, 255, 0.8); }
}

.benefit-card.special::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    rgba(80, 240, 255, 0.05) 0%,
    rgba(74, 142, 255, 0.05) 25%, 
    rgba(80, 240, 255, 0.05) 50%, 
    rgba(74, 142, 255, 0.05) 75%, 
    rgba(80, 240, 255, 0.05) 100%
  );
  background-size: 400% 400%;
  animation: specialGradient 3s linear infinite;
  pointer-events: none;
  z-index: -1;
}

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

.coming-soon {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(80, 240, 255, 0.2);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  color: rgba(80, 240, 255, 1);
  text-shadow: 0 0 5px rgba(80, 240, 255, 0.5);
  font-weight: bold;
  box-shadow: 0 0 10px rgba(80, 240, 255, 0.2);
  animation: blinkSlow 2s infinite alternate;
  border: 1px solid rgba(80, 240, 255, 0.5);
  z-index: 2;
}

@keyframes blinkSlow {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

.subscribe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: linear-gradient(45deg,
    rgba(80, 240, 255, 0.4),
    rgba(74, 142, 255, 0.4)
  );
  border: 2px solid rgba(80, 240, 255, 0.5);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(80, 240, 255, 0.8);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(80, 240, 255, 0.2);
  animation: buttonGlow 3s infinite alternate;
}

@keyframes buttonGlow {
  from { box-shadow: 0 0 20px rgba(80, 240, 255, 0.2); }
  to { box-shadow: 0 0 30px rgba(80, 240, 255, 0.5); }
}

.subscribe-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  transform: translate(-100%, -100%);
  transition: transform 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.subscribe-button::after {
  content: 'CLICK NOW!';
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #50f0ff;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease, bottom 0.3s ease;
  text-shadow: 0 0 10px rgba(80, 240, 255, 0.5);
}

.subscribe-button:hover {
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(45deg,
    rgba(80, 240, 255, 0.6),
    rgba(74, 142, 255, 0.6)
  );
  box-shadow: 0 10px 30px rgba(80, 240, 255, 0.4);
  letter-spacing: 2px;
}

.subscribe-button:hover::before {
  transform: translate(0, 0);
}

.subscribe-button:hover::after {
  opacity: 1;
  bottom: -1.5rem;
}

.subscribe-button svg {
  transition: transform 0.3s ease;
}

.subscribe-button:hover svg {
  transform: translateX(10px);
  animation: arrowBounce 1s infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.exclusive-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff3a3a, #ff6b6b);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(255, 58, 58, 0.5);
  z-index: 10;
  animation: scaleAndPulse 2s infinite alternate;
}

@keyframes scaleAndPulse {
  0% { transform: translateX(-50%) scale(1); }
  100% { transform: translateX(-50%) scale(1.1); }
}

.limited-spots {
  background: linear-gradient(45deg, #ff3a3a, #ff6b6b);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
  animation: flashHot 1.5s infinite alternate;
  box-shadow: 0 0 15px rgba(255, 58, 58, 0.5);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

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

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-card {
    padding: 1.2rem;
  }
  
  .subscribe-button {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
  }

  .exclusive-tag {
    font-size: 0.8rem;
  }
  
  .subscription-section .section-title {
    font-size: 1.8rem;
  }
  
  .limited-spots {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .benefit-card {
    padding: 1rem;
  }
  
  .benefit-icon {
    font-size: 1.8rem;
  }
  
  .benefit-card h3 {
    font-size: 1rem;
  }
  
  .benefit-card p {
    font-size: 0.8rem;
  }
  
  .subscription-section .section-title {
    font-size: 1.5rem;
  }
  
  .subscribe-button {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
  
  .limited-spots {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}