.mt-trail-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, #7d1226 0%, #7d1226 40%, #c8a24b 100%);
  opacity: 0.9;
  animation: mtTrailFade 0.6s forwards;
  z-index: 9999;
}

@keyframes mtTrailFade {
  from { transform: scale(1); opacity: 0.9; }
  to { transform: scale(0.2); opacity: 0; }
}
