#ctws-cursor-dot,
#ctws-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  pointer-events: none;
  border-radius: 50%;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.2s ease;
}

#ctws-cursor-dot {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: var(--coral, #e8552e);
}

#ctws-cursor-ring {
  width: 38px;
  height: 38px;
  margin: -19px 0 0 -19px;
  border: 1.5px solid var(--teal, #3fb39c);
  transition: opacity 0.2s ease, width 0.25s ease, height 0.25s ease, margin 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

body.ctws-cursor-ready #ctws-cursor-dot,
body.ctws-cursor-ready #ctws-cursor-ring {
  opacity: 1;
}

#ctws-cursor-ring.is-hovering {
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  background: rgba(232, 85, 46, 0.08);
  border-color: var(--coral, #e8552e);
}

@media (pointer: coarse) {
  #ctws-cursor-dot,
  #ctws-cursor-ring {
    display: none;
  }
}
