I need to increase the current date in Moscow time by 1 day every time the clock is 15:00 and more. I did it at local time, but I can’t do it according to Moscow time (UTC + 3)
  function date() {
  const today = new Date();
  const t = today.getHours();
  const dtfRU = new Intl.DateTimeFormat('ru', {
    month: 'long', day: '2-digit',
  });
  if (t >= 15) {
    today.setDate(today.getDate() + 1);
    document.querySelector('.date').innerHTML = dtfRU.format(today);
  } else document.querySelector('.date').innerHTML = dtfRU.format(today);
}
document.addEventListener("DOMContentLoaded", date);
 
    