/* ── ASAKAI Freemium Gate Styles ─────────────────────────────────────── */

/* Locked content blur */
.freemium-locked {
  filter: blur(6px) !important;
  pointer-events: none !important;
  user-select: none !important;
  position: relative;
}

/* Transition for unlock */
[data-freemium-locked] {
  transition: filter 0.4s ease;
}

/* Inline paywall banner animation */
.freemium-paywall {
  animation: freemiumFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

/* Badge pulse */
.freemium-badge {
  animation: freemiumPulse 3s ease-in-out infinite;
}

@keyframes freemiumPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Lock icon overlay for blurred sections */
.freemium-locked::after {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}
