
<script>
    document.addEventListener('DOMContentLoaded', () => {
        function enableHorizontalDragScroll(container) {
            let isDown = false;
            let startX;
            let scrollLeft;

            container.addEventListener('mousedown', (e) => {
                isDown = true;
                container.style.cursor = 'grabbing';
                startX = e.pageX - container.offsetLeft;
                scrollLeft = container.scrollLeft;
                e.preventDefault();
            });

            container.addEventListener('mouseleave', () => {
                isDown = false;
                container.style.cursor = 'grab';
            });

            container.addEventListener('mouseup', () => {
                isDown = false;
                container.style.cursor = 'grab';
            });

            container.addEventListener('mousemove', (e) => {
                if (!isDown) return;
                e.preventDefault();
                const x = e.pageX - container.offsetLeft;
                const walk = (x - startX) * 3; // Настройте скорость прокрутки
                container.scrollLeft = scrollLeft - walk;
            });
        }

        const myContainer = document.querySelector('.queenwinCategories');

        if (myContainer) {
            enableHorizontalDragScroll(myContainer);
        }
    });
</script><?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//queenwin-casino.it/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://queenwin-casino.it/post-sitemap.xml</loc>
		<lastmod>2025-03-25T15:54:23+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://queenwin-casino.it/page-sitemap.xml</loc>
		<lastmod>2025-03-26T16:37:52+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->