.subscription-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
  background-color: #ffffff;
}

.subscription-card {
  background: white;
  color: #000;
  border-radius: 20px;
  padding: 30px 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
  border: 2px solid transparent;
  transition: 0.4s ease;
  font-family: 'Orbitron', sans-serif;
  border-color: #ffc107;
}

.subscription-card h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.subscription-card .price {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffcc00; /* gold accent */
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.7);
}

.subscription-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.subscription-card ul li {
  margin: 10px 0;
}

.subscription-card .subscribe-btn {
  background: linear-gradient(90deg, #00f0ff, #ffcc00);
  border: none;
  color: #000;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.4s ease;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.subscription-card .subscribe-btn:hover {
  background: #00f0ff;
  color: #000;
  box-shadow: 0 0 25px #00f0ff, 0 0 15px #ffcc00;
  transform: scale(1.05);
}

.subscription-card:hover {
  border-color: #00f0ff;
  box-shadow: 0 0 30px #00f0ff, 0 0 20px #ffcc00;
  transform: translateY(-10px);
}

.subscribe-btn a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 1024px) {
  .subscription-section {
    flex-direction: column;
    align-items: center;
  }
}
