/* ========================================
   Custom Cursor - BLANQ Digital
   ======================================== */

.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-primary);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid var(--text-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.2s ease;
  mix-blend-mode: difference;
}

.cursor.hover {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid var(--text-primary);
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
}

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  .cursor,
  .cursor-ring {
    display: none;
  }
}
