/* ==========================================================================
   User-Provided Spatial Master Stylesheet
   ========================================================================== */

/* Toast Styling */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #00E5FF;
  color: #000;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 9999;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Accordion Item Dynamics */
.accordion-header {
  cursor: pointer;
}
.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: #00E5FF;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Cursor Trail & Dot */
.cursor-trail {
  position: fixed;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.5) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out, opacity 0.3s ease;
}
.cursor-trail-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00E5FF;
  pointer-events: none;
  z-index: 9996;
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease-out;
  box-shadow: 0 0 10px #00E5FF;
}
