/* ============================================================
   PremiumGate — Paywall overlay styles
   ============================================================ */

/* Container element that has been gated */
.premium-gated {
  position: relative;
  overflow: hidden;
}

/* Blur & disable all direct children except the overlay itself */
.premium-gated > *:not(.premium-gate-overlay) {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

/* Full-size overlay positioned over the blurred content */
.premium-gate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 11, 13, 0.75);
  z-index: 10;
  border-radius: inherit;
}

/* Centred card inside the overlay */
.premium-gate-content {
  text-align: center;
  padding: 24px;
}

/* Lock icon */
.premium-gate-icon {
  font-size: 2em;
  margin-bottom: 8px;
}

/* Feature title */
.premium-gate-title {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 6px;
}

/* Description text */
.premium-gate-desc {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.9em;
}

/* Upgrade CTA button */
.premium-gate-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--text-on-primary);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95em;
}

.premium-gate-btn:hover {
  background: var(--secondary);
}
