/* 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, #0f1f5c, #3730a3);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-family: 'Inter', system-ui, sans-serif;
  box-shadow: 0 4px 15px rgba(15, 31, 92, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.paywall-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 31, 92, 0.45);
  opacity: 0.9;
  color: white;
}
