/* ================================
   PREMIUM UNLOCK PAGE – BASE
================================ */

.premium-unlock-section {
  padding: 90px 20px 60px; /* ⬅ extra top padding to avoid navbar cut */
}

.premium-box {
  max-width: 1100px;
  margin: 0 auto;
  padding: 45px;
  border: 2px dashed #f1c40f;
  border-radius: 18px;
  background: linear-gradient(135deg, #0b1220, #0e1628);
  color: #ffffff;
  position: relative;
}

.premium-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.premium-icon {
  font-size: 34px;
}

.premium-title {
  font-size: 28px;
  color: #ffd700;
}

.premium-desc {
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.premium-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 26px;
}

.premium-list li {
  margin-bottom: 8px;
}

.premium-note {
  margin-top: 28px;
  font-size: 14px;
  opacity: 0.75;
}

/* ================================
   PRICING BLOCK
================================ */

.premium-box .pricing-wrapper {
  margin: 30px 0 10px;
  display: flex;
  gap: 22px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.premium-box .price-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed #f1c40f;
  border-radius: 16px;
  padding: 26px 22px 22px;
  min-width: 180px;
  text-align: center;
  position: relative;
}

.premium-box .price-title {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 6px;
}

.premium-box .price-amount {
  font-size: 28px;
  font-weight: 700;
  color: #ffd700;
}

.premium-box .price-sub {
  font-size: 13px;
  opacity: 0.75;
  margin-top: 6px;
}

.premium-box .price-card.highlight {
  border: 2px solid #ffd700;
  background: rgba(255, 215, 0, 0.08);
}

/* 🔥 COMING SOON BADGE (IMPROVED) */
.premium-box .badge {
  position: absolute;
  top: -22px;              /* ⬅ floats above card */
  left: 50%;
  transform: translateX(-50%);
  background: #ffcc00;
  color: #000;
  font-size: 14px;         /* ⬅ bigger */
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

/* ================================
   RESPONSIVE SAFETY
================================ */

@media (max-width: 768px) {
  .premium-box {
    padding: 30px 22px;
  }

  .premium-box .pricing-wrapper {
    justify-content: center;
  }
}
