/* ============================================
   PAYWALL MODAL
   ============================================ */

.cgf-paywall-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,15,26,0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cgf-paywall-modal {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 48px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: paywallSlideUp 0.4s var(--ease-out);
}

@keyframes paywallSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.cgf-paywall-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.cgf-paywall-close:hover {
  background: rgba(148,163,184,0.1);
}

.cgf-paywall-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.cgf-paywall-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.cgf-paywall-subtitle {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cgf-paywall-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.cgf-paywall-price span {
  font-size: 1.25rem;
  font-weight: 400;
}

.cgf-paywall-features {
  list-style: none;
  text-align: left;
  margin: 24px 0 32px;
  padding: 0;
}

.cgf-paywall-features li {
  padding: 10px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-subtle);
}

.cgf-paywall-features li:last-child {
  border-bottom: none;
}

.cgf-paywall-btn {
  width: 100%;
  font-size: 1.05rem;
}

.cgf-paywall-dismiss {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 16px;
  cursor: pointer;
  transition: color 0.2s;
}

.cgf-paywall-dismiss:hover {
  color: var(--text-white);
}
