// ... (আপনার আগের প্লাগিন কোডের ভার্সন ২.০ এর সব কিছু একই থাকবে, শুধু নিচের JavaScript অংশটি আপডেট করে দিন)

        <script>
            // BULLETPROOF TIMEZONE & COUNTRY NAME SCANNER
            if (typeof window.wcjLiveMatchInit === 'undefined') {
                window.wcjLiveMatchInit = true;
                
                function updateAllWcjInfo() {
                    var timeNodes = document.querySelectorAll('.wcj-match-time:not(.wcj-converted)');
                    for (var i = 0; i < timeNodes.length; i++) {
                        var el = timeNodes[i];
                        var utcStr = el.getAttribute('data-utc-time');
                        if (utcStr && utcStr.trim() !== '') {
                            var dateObj = new Date(utcStr);
                            if (!isNaN(dateObj.getTime())) {
                                // ১. সময় কনভার্ট করা
                                el.innerHTML = dateObj.toLocaleString('en-US', { weekday: 'short', month: 'short', day: 'numeric', hour: 'numeric', minute: '2-digit', hour12: true });
                                el.className += ' wcj-converted';
                                
                                // ২. টাইমজোন এবং দেশের নাম বের করা
                                var wrapper = el.closest('.wcj-match-card-wrapper');
                                if (wrapper) {
                                    var tzEl = wrapper.querySelector('.wcj-local-tz-name');
                                    if (tzEl) {
                                        try {
                                            // ব্রাউজার থেকে টাইমজোন স্ট্রিং নেওয়া (যেমন: "Bangladesh Standard Time")
                                            var timeZoneStr = Intl.DateTimeFormat().resolvedOptions().timeZone;
                                            var parts = new Intl.DateTimeFormat('en-US', {timeZoneName: 'long'}).formatToParts(dateObj);
                                            var tzPart = parts.find(function(p){ return p.type === 'timeZoneName'; });
                                            
                                            if (tzPart && tzPart.value) {
                                                tzEl.innerHTML = tzPart.value; // এখানে সরাসরি দেশের নামসহ টাইমজোন বসবে
                                            }
                                        } catch(e) { tzEl.innerHTML = 'Local Time'; }
                                    }
                                }
                            }
                        }
                    }
                }
                
                updateAllWcjInfo();
                document.addEventListener('DOMContentLoaded', updateAllWcjInfo);
                setInterval(updateAllWcjInfo, 1000); 
            }
        </script><?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//worldcupjournal.com/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://worldcupjournal.com/post-sitemap.xml</loc>
		<lastmod>2026-06-06T09:18:58+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://worldcupjournal.com/page-sitemap.xml</loc>
		<lastmod>2026-05-11T07:00:12+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://worldcupjournal.com/category-sitemap.xml</loc>
		<lastmod>2026-06-06T09:18:58+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://worldcupjournal.com/author-sitemap.xml</loc>
		<lastmod>2026-06-06T09:30:28+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://worldcupjournal.com/news-sitemap.xml</loc>
		<lastmod>2026-06-06T09:17:25+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://worldcupjournal.com/local-sitemap.xml</loc>
		<lastmod>2026-05-11T07:32:53+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->