/* Cursor Parallax Effect Styles */

.cursor-shape {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* Left bottom shape - gradient blob */
.cursor-shape-left {
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgba(208, 242, 137, 0.3) 0%,
    rgba(161, 198, 153, 0.15) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(60px);
}

/* Right bottom shape - darker gradient */
.cursor-shape-right {
  bottom: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 10, 10, 0.2) 0%,
    rgba(50, 50, 50, 0.1) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(50px);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .cursor-shape {
    display: none;
  }
}
