
/* --- Matrix Background --- */
#matrix-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2; /* Behinds everything, even the bg-gradients */
  opacity: 0.04; /* Very subtle! */
  pointer-events: none; /* Don't block clicks */
}

/* --- Custom Cursor --- */
body {
  /* cursor: none; - keeping default cursor as backup, but the user wants custom animation */
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-glow);
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
}

.cursor-glow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(14, 165, 233, 0.4);
  background: rgba(14, 165, 233, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.2s, height 0.2s, background 0.2s;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.2);
}

/* When hovering over clickable elements */
.cursor-hover .cursor-glow {
  width: 60px;
  height: 60px;
  background: rgba(14, 165, 233, 0.2);
  border-color: rgba(14, 165, 233, 0.8);
}
