/* ==================== Vocsy Notification Popup ==================== */

.vocsy-notif-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: vocsyNotifOverlayIn 0.3s ease;
}

@keyframes vocsyNotifOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.vocsy-notif-card {
  background: linear-gradient(145deg, #1a1f2b, #12182a);
  border: 1px solid #2a3140;
  border-radius: 24px;
  padding: 32px 28px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(162, 89, 255, 0.1);
  animation: vocsyNotifCardIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes vocsyNotifCardIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.vocsy-notif-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #7f8796;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.vocsy-notif-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.vocsy-notif-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  animation: vocsyNotifIconPulse 2s ease-in-out infinite;
}

@keyframes vocsyNotifIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.vocsy-notif-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
}

.vocsy-notif-message {
  font-size: 14px;
  color: #b6bdc5;
  line-height: 1.7;
  margin-bottom: 24px;
}

.vocsy-notif-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.vocsy-notif-btn {
  padding: 12px 28px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.vocsy-notif-btn-primary {
  background: linear-gradient(135deg, #a259ff, #6c63ff);
  color: #fff;
  box-shadow: 0 4px 16px rgba(162, 89, 255, 0.4);
}

.vocsy-notif-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(162, 89, 255, 0.5);
}

.vocsy-notif-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #b6bdc5;
}

.vocsy-notif-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Decorative glow */
.vocsy-notif-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, #a259ff33, transparent, #6c63ff33);
  z-index: -1;
  opacity: 0.5;
}
