/* Cursor Chase Effect Styles */
.cursor-chase-active {
  transition: transform 0.05s ease-out;
}

/* Special glow effect when elements are being chased */
.trinkatitle-layer.cursor-chase-active {
  filter: brightness(1.1);
}

.portal-element.cursor-chase-active {
  filter: drop-shadow(0 0 5px rgba(42, 255, 247, 0.5));
}

/* Different behaviors */
[data-cursor-effect="chase"].cursor-chase-active {
  filter: drop-shadow(0 0 8px rgba(106, 0, 255, 0.6));
}

[data-cursor-effect="flee"].cursor-chase-active {
  filter: drop-shadow(0 0 8px rgba(255, 0, 106, 0.6));
}

[data-cursor-effect="hover"].cursor-chase-active {
  filter: drop-shadow(0 0 8px rgba(42, 255, 247, 0.6));
}

/* 
 * Cursor effect toggle notifications
 */
.cursor-effects-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(42, 255, 247, 0.2);
  color: #ACABBB;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: calc(var(--z-a5-takeover, 5900) + 2);
  pointer-events: none;
  border: 1px solid rgba(42, 255, 247, 0.3);
  box-shadow: 0 0 10px rgba(42, 255, 247, 0.2);
}

.cursor-effects-toggle.visible {
  opacity: 1;
  transform: translateY(0);
}

.particle-toggle {
  bottom: 60px;
}
