/* ============================================
   Paywall Styles
   ============================================ */

#paywall-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}

.paywall-card {
  max-width: 900px !important;
  width: 100%;
  margin: auto;
  text-align: center;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.pricing-plan {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.pricing-plan.recommended {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.recommended-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.pricing-plan h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.pricing-plan .price {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.pricing-plan .price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-tertiary);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
  text-align: left;
}

.plan-features li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.plan-features li svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary-color);
  margin-right: 8px;
  flex-shrink: 0;
}

.pricing-plan .btn {
  width: 100%;
}

.paywall-footer {
  text-align: center;
  font-size: 14px;
  color: var(--text-tertiary);
  margin-top: 24px;
}

.paywall-footer a {
  color: var(--text-secondary);
  text-decoration: underline;
  transition: color 0.2s;
}

.paywall-footer a:hover {
  color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-plans {
    grid-template-columns: 1fr;
  }
}
