html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background: #000000;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-shadow:
    0 0 3px rgba(0, 0, 0, 0.8),
    0 0 6px rgba(0, 0, 0, 0.8);
}

.hidden {
  display: none !important;
}

body.cursor-hidden {
  cursor: none;
}

/* In fullscreen, always hide native cursor and use custom dot */
body.fs-cursor,
body.fs-cursor * {
  cursor: none !important;
}

#cursor-dot {
  position: fixed;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  pointer-events: none;
  z-index: 99999;
  opacity: 0.8;
  transition: opacity 1.5s ease-in-out;
  will-change: opacity, left, top;
}

#cursor-dot.faded {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

* {
  box-sizing: border-box;
}