/* Custom Hollow Circle Cursor — Cinematic Gold */
* {
  cursor: none !important;
}

.cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  border: 1.5px solid #d4a853;
  border-radius: 50%;
  pointer-events: none;
  background: transparent;
  z-index: 9999;
  transition: transform 0.12s ease, opacity 0.12s ease;
  mix-blend-mode: difference;
}

.cursor.hover {
  transform: scale(1.6);
  border-width: 1px;
  opacity: 0.75;
}

/* Hide default cursor */
body {
  cursor: none;
}

/* Restore cursor on touch / mobile devices */
@media (pointer: coarse) {
  * {
    cursor: auto !important;
  }

  .cursor {
    display: none !important;
  }
}
