/**
 * Mouse Trail Effect Styling
 * Enhanced for greater visibility
 */

.mouse-trail-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 15; /* Increased from 10 */
  opacity: 1.0; /* Increased from 0.7 */
  mix-blend-mode: screen;
  filter: contrast(1.2) brightness(1.1); /* Added for more vibrancy */
}

.mouse-trail-container canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mouse-trail-container {
    opacity: 0.9; /* Increased from 0.5 */
    filter: contrast(1.1) brightness(1.05);
  }
} 