/* Modern blur effect with glass-morphism */
.blurred-section {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blurred-content {
  filter: blur(12px);
  opacity: 0.4;
  user-select: none;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Hover CTA overlay - hidden by default */
.paywall-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 1rem;
  z-index: 5;
}

/* Show CTA on hover */
.blurred-section:hover .paywall-overlay {
  opacity: 1;
}

.paywall-overlay-content {
  text-align: center;
  padding: 2rem;
}

.paywall-cta-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.paywall-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  color: white;
}
