  .plans-container {
    background: #0a0a0a;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  .plans-title {
    font-size: 2.2rem;
    color: #ff2aa8;
    margin-bottom: 40px;
  }
  .plans-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .plan-card {
    background: #1a1a1a;
    border: 2px solid #ff2aa8;
    border-radius: 16px;
    padding: 30px;
    max-width: 320px;
    flex: 1 1 300px;
    transition: transform 0.3s;
  }
  .plan-card:hover {
    transform: scale(1.03);
  }
  .plan-card.highlight {
    background: #2a002a;
  }
  .plan-card h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .plan-card .price {
    font-size: 1.3rem;
    color: #ff69b4;
    margin-bottom: 20px;
  }
  .plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
  }
  .plan-card ul li {
    margin: 10px 0;
  }
  .btn-subscribe {
    background: #ff2aa8;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    font-weight: bold;
  }
  .btn-subscribe:hover {
    background: #ff1493;
  }
  .plan-card small {
  color: #bbb;
  font-size: 0.85em;
  font-style: italic;
  opacity: 0.8;
}

.plan-card.highlight {
  position: relative;
  background: radial-gradient(circle at center, #1a1a1a 70%, #2a002a 100%);
  border: 2px solid #ff2aa8;
  border-radius: 16px;
  color: #fff;
  z-index: 1;
  box-shadow: 0 0 25px rgba(255, 42, 168, 0.6);
}

.plan-card.highlight::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, #ff2aa8, #ff69b4, #ff2aa8);
  border-radius: 18px;
  z-index: -1;
  animation: borderFlow 6s linear infinite;
  background-size: 300% 300%;
  opacity: 0.6;
  filter: drop-shadow(0 0 10px #ff2aa8);
}

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