#cursor-dot,
#cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  user-select: none;
}

#cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #00aaff;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.8);
  /* YAHAN CHANGE HAI: Transform se transition hata di taaki lag na kare */
  transition: opacity 0.3s ease;
}

#cursor-outline {
  width: 35px;
  height: 35px;
  border: 1.5px solid rgba(0, 170, 255, 0.6);
  background-color: rgba(0, 170, 255, 0.05);
  /* Outline thoda late hi achha lagta hai, isliye iska math JavaScript mein hai */
  transition:
    width 0.3s ease-out,
    height 0.3s ease-out,
    background-color 0.3s ease;
}

/* Hover: Dot hide and Ring expand */
#cursor-dot.hover-active {
  opacity: 0;
}

#cursor-outline.hover-active {
  width: 60px;
  height: 60px;
  border-color: #00aaff;
  background-color: rgba(0, 170, 255, 0.15);
}

@media (max-width: 768px) {
  #cursor-dot,
  #cursor-outline {
    display: none;
  }
}
