header.major:after{
	border: none;
	background: none;
}
/* Base dark card */
.iptv-plan-card.dark {
  max-width: 380px;
  margin: 24px auto;
  padding: 26px;
  border-radius: 18px;
  background: #1a1a1a;
  border: 1px solid #2b2b2b;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  font-family: system-ui, sans-serif;
  color: #eaeaea;
}

/* Headings */
.iptv-plan-card.dark h2 {
  margin: 0 0 4px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
}

/* Subheading */
.iptv-plan-card.dark .tagline {
  margin: 0 0 20px;
  font-size: 0.95rem;
  color: #a8a8a8;
}

/* Pricing section */
.iptv-plan-card.dark .price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.iptv-plan-card.dark .currency {
  font-size: 1.2rem;
  font-weight: 600;
}

.iptv-plan-card.dark .amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: #4ba3ff;
}

.iptv-plan-card.dark .period {
  font-size: 0.95rem;
  color: #aaaaaa;
}

.iptv-plan-card.dark .note {
  margin: 2px 0 18px;
  font-size: 0.85rem;
  color: #bdbdbd;
}

/* Feature list */
.iptv-plan-card.dark .features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 0.9rem;
}

.iptv-plan-card.dark .features li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.iptv-plan-card.dark .features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #4ba3ff;
  font-size: 0.75rem;
}

/* Guarantee box */
.iptv-plan-card.dark .guarantee {
  font-size: 0.9rem;
  color: #e4e4e4;
  background: rgba(75, 163, 255, 0.08);
  border: 1px solid rgba(75, 163, 255, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 22px;
}

/* Button */
.iptv-plan-card.dark .btn-subscribe {
  width: 100%;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #4ba3ff;
  color: #0f0f0f;
  transition: 0.25s;
}

.iptv-plan-card.dark .btn-subscribe:hover {
  background: #6bb7ff;
}