:root {
  --accent-color: #d4af37;
}

* {
  cursor: none;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor-outline {
  width: 50px;
  height: 50px;
  border: 3px solid #fff;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  background: rgba(255, 255, 255, 0.95);
  transition:
    transform 0.15s ease,
    width 0.15s ease,
    height 0.15s ease;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
}

.cursor-outline.hover {
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
}

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

  * {
    cursor: auto;
  }
}
