#torch-cursor {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-negro-contraste); /* see docs/style-guide.md */
  border-radius: 50%;
  box-shadow: 0 0 15px 5px rgba(var(--epic-gold-main-rgb),0.9); /* see docs/style-guide.md */
  transform: translate(-50%, -50%);
  z-index: 10000;
}

#torch-cursor::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(var(--epic-gold-main-rgb),0.6); /* see docs/style-guide.md */
  mix-blend-mode: lighten;
  filter: blur(20px);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

#torch-cursor.focus::after {
  background: rgba(var(--epic-purple-emperor-rgb),0.8); /* see docs/style-guide.md */
  width: 40px;
  height: 40px;
}
