/* Blob Cursor Styles - ReactBits Implementation */

.blob-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.blob-main {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
  user-select: none;
  cursor: default;
  filter: url(#blob-filter);
}

.blob {
  position: absolute;
  will-change: transform;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Blob sizes - visual indicators (optional, can be hidden) */
.blob-0 {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.15);
  opacity: 0;
}

.blob-1 {
  width: 125px;
  height: 125px;
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 0;
}

.blob-2 {
  width: 75px;
  height: 75px;
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 0;
}

/* Inner dots - hidden for cleaner look */
.inner-dot {
  display: none;
}

/* Show blobs when active - subtle visual feedback */
.blob-container.active .blob {
  opacity: 0.3;
}

/* Mobile: Hide blob container - use circular reveal instead */
@media (hover: none) and (pointer: coarse) {
  .blob-container {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .blob-container {
    display: none !important;
  }
}
