/* Animated Fire-Arrow Cursor */
body { cursor: none !important; }
a, button, .btn { cursor: none !important; }

.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999999;
  width: 54px; /* 36px * 1.5 = 54px */
  height: 54px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2l16 9-6 1.5-2 6z" fill="%23FF7000" stroke="%23A03000" stroke-width="1" stroke-linejoin="round" stroke-linecap="round" /></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.1s ease;
}
