:root {
  --brand-bg: #000;
  --brand-primary: #C4FCF0;
  --brand-secondary: #F02671;
  --brand-white: #fff;
}

html, body {
  height: 100%;
}

body {
  background: var(--brand-bg);
  color: var(--brand-white);
  min-height: 100vh;
}

.btn-brand {
  background: var(--brand-primary);
  color: var(--brand-bg);
  border-radius: 8px;
  padding: 10px 24px;
  border: none;
  font-weight: bold;
  transition: background 0.2s;
}

.btn-brand:hover {
  background: var(--brand-secondary);
  color: var(--brand-bg);
}

.btn-block {
  width: 100%;
}

.box {
  /* make the card slightly darker so it blends better on a black background */
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: 0 4px 24px #0003;
}

.table-hover tbody tr:hover {
  background: rgba(0,255,173,0.10);
}

.header-logo {
  height: 160px; /* doubled from 80px */
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Keep the header logo from being too large on small screens */
@media (max-width: 576px) {
  .header-logo {
    height: 100px;
  }
}

/* Pricing Section Styles */
.pricing-category {
  margin-bottom: 32px;
}

.pricing-category-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--brand-primary);
  margin-bottom: 8px;
}

.pricing-category-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.pricing-separator {
  border-color: rgba(196, 252, 240, 0.3);
  border-width: 2px;
}

/* Digital Plans Cards */
.pricing-card {
  background: rgba(196, 252, 240, 0.05);
  border: 1px solid rgba(196, 252, 240, 0.2);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  background: rgba(196, 252, 240, 0.1);
  border-color: rgba(196, 252, 240, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(196, 252, 240, 0.15);
}

.pricing-card-header {
  margin-bottom: 16px;
}

.pricing-plan-name {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
  color: var(--brand-primary);
}

.pricing-audience {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 4px 0 0 0;
}

.pricing-card-body {
  flex: 1;
  margin-bottom: 20px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.price-amount {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--brand-primary);
}

.price-period {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-setup {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-feature {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 0;
  border-bottom: 1px solid rgba(196, 252, 240, 0.1);
  padding-left: 16px;
  position: relative;
}

.pricing-feature:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: bold;
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-card-footer {
  margin-top: auto;
}

/* Premium Offerings Cards */
.premium-card {
  background: rgba(240, 38, 113, 0.05);
  border: 1px solid rgba(240, 38, 113, 0.2);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.premium-card:hover {
  background: rgba(240, 38, 113, 0.1);
  border-color: rgba(240, 38, 113, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(240, 38, 113, 0.15);
}

.premium-card-header {
  margin-bottom: 16px;
  border-bottom: 2px solid rgba(240, 38, 113, 0.3);
  padding-bottom: 12px;
}

.premium-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
  color: var(--brand-secondary);
}

.premium-card-body {
  flex: 1;
  margin-bottom: 20px;
}

.premium-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.premium-price .price-amount {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--brand-secondary);
}

.premium-price .price-period {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.premium-content {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.premium-card-footer {
  margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pricing-category-title {
    font-size: 1.5rem;
  }
  
  .pricing-card,
  .premium-card {
    padding: 16px;
  }
}

@media (max-width: 576px) {
  .price-amount {
    font-size: 1.5rem;
  }
  
  .pricing-category-desc {
    font-size: 0.9rem;
  }
}