@media (hover: hover) and (pointer: fine) {
  html,
  body,
  a,
  button,
  [role="button"],
  input,
  textarea,
  select,
  label {
    cursor: none !important;
  }

  .ciicyeo-orb {
    --orb-size: 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2147483647;
    width: var(--orb-size);
    height: var(--orb-size);
    pointer-events: none;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background:
      radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95) 0 5%, rgba(255, 255, 255, 0.24) 14%, transparent 35%),
      radial-gradient(circle at 65% 72%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03) 58%, rgba(0, 0, 0, 0.08));
    box-shadow:
      inset -4px -5px 10px rgba(0, 0, 0, 0.16),
      inset 3px 3px 8px rgba(255, 255, 255, 0.3),
      0 4px 18px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(1.5px) saturate(1.35) contrast(1.08);
    -webkit-backdrop-filter: blur(1.5px) saturate(1.35) contrast(1.08);
    transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
    transition:
      width 240ms cubic-bezier(.2, .8, .2, 1),
      height 240ms cubic-bezier(.2, .8, .2, 1),
      opacity 180ms ease,
      background 240ms ease,
      border-color 240ms ease,
      box-shadow 240ms ease;
    will-change: transform, width, height;
  }

  .ciicyeo-orb.is-visible {
    opacity: 0.92;
  }

  .ciicyeo-orb.is-interactive {
    --orb-size: 58px;
    border-color: rgba(255, 255, 255, 0.94);
    background:
      radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.98) 0 4%, rgba(255, 255, 255, 0.22) 12%, transparent 34%),
      rgba(255, 255, 255, 0.1);
    box-shadow:
      inset -7px -8px 18px rgba(0, 0, 0, 0.18),
      inset 5px 5px 14px rgba(255, 255, 255, 0.36),
      0 6px 28px rgba(0, 0, 0, 0.18);
  }

  .ciicyeo-orb.is-media {
    --orb-size: 72px;
    background: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(0.5px) saturate(1.55) contrast(1.12);
    -webkit-backdrop-filter: blur(0.5px) saturate(1.55) contrast(1.12);
  }

  .ciicyeo-orb.is-pressed {
    --orb-size: 23px;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ciicyeo-orb {
    transition: opacity 100ms ease !important;
  }
}
