/*
 * Trinkaspace Notifications Styling
 * Provides styles for notifications and toasts
 */

/* Basic notification */
.cursor-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(42, 42, 51, 0.85);
  color: var(--neoncyan, #2AFFF7);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  z-index: calc(var(--z-a5-takeover, 5900) + 2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 1px #2AFFF7;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(42, 255, 247, 0.3);
  animation: notificationFadeIn 0.3s ease forwards;
  pointer-events: none;
}

/* Fading out animation */
.cursor-notification.fade-out {
  animation: notificationFadeOut 0.5s ease forwards;
}

/* Toggling messages */
.cursor-effects-toggle {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background-color: rgba(42, 42, 51, 0.85);
  color: var(--neoncyan, #2AFFF7);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  z-index: calc(var(--z-a5-takeover, 5900) + 2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 1px #2AFFF7;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(42, 255, 247, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.cursor-effects-toggle.visible {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.cursor-effects-toggle.particle-toggle {
  bottom: 75px;
}

/* Animation keyframes */
@keyframes notificationFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes notificationFadeOut {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
}
