document.addEventListener("DOMContentLoaded", () => {

  const stage =
    document.querySelector(".hero-bowl-stage");

  if (!stage) return;

  /*
  ========================================
  FLOATING GOLD PARTICLES
  ========================================
  */

  function createParticle(){

    const particle =
      document.createElement("span");

    particle.classList.add(
      "hero-gold-particle"
    );

    particle.style.left =
      Math.random() * 100 + "%";

    particle.style.top =
      20 + Math.random() * 60 + "%";

    particle.style.width =
      4 + Math.random() * 12 + "px";

    particle.style.height =
      particle.style.width;

    particle.style.animationDuration =
      4 + Math.random() * 5 + "s";

    stage.appendChild(particle);

    setTimeout(() => {

      particle.remove();

    }, 9000);

  }

  setInterval(() => {

    createParticle();

  }, 300);

});<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://hustlersrecipe.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://hustlersrecipe.com/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://hustlersrecipe.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://hustlersrecipe.com/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://hustlersrecipe.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
