<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Wezabet &#8211; World Cup 2026 Fixtures, Results &amp; Kenya Time | PULSER</title>
	<atom:link href="https://pulser.ke/author/wezabet/feed/" rel="self" type="application/rss+xml" />
	<link>https://pulser.ke</link>
	<description>Follow World Cup 2026 fixtures, results, group standings, knockout brackets and match times in Kenya and East Africa.</description>
	<lastBuildDate>Sat, 13 Jun 2026 13:38:22 +0000</lastBuildDate>
	<language>zh-TW</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.2</generator>

<image>
	<url>https://pulser.ke/wp-content/uploads/2026/04/cropped-favicon-32x32.png</url>
	<title>Wezabet &#8211; World Cup 2026 Fixtures, Results &amp; Kenya Time | PULSER</title>
	<link>https://pulser.ke</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>league_scores_Ligue-1</title>
		<link>https://pulser.ke/league_scores_ligue-1-2/</link>
					<comments>https://pulser.ke/league_scores_ligue-1-2/#respond</comments>
		
		<dc:creator><![CDATA[Wezabet]]></dc:creator>
		<pubDate>Sat, 13 Jun 2026 08:06:18 +0000</pubDate>
				<category><![CDATA[league_scores_system]]></category>
		<guid isPermaLink="false">https://pulser.ke/?p=6246</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<section class="schedule_05" id="slider-ligue1">
  <div class="schedule_05-inner">
    <button class="schedule_05-navBtn schedule_05-prev" type="button" aria-label="Previous schedule">
      <div class="schedule_05-arrow"></div>
    </button>
    <button class="schedule_05-navBtn schedule_05-next" type="button" aria-label="Next schedule">
      <div class="schedule_05-arrow"></div>
    </button>
    <div class="schedule_05-trackWrap">
      <ul class="schedule_05-list"></ul>
    </div>
  </div>
</section>

<script>
  window.addEventListener('DOMContentLoaded', function () {
    (async function () {
      const root = document.querySelector("#slider-ligue1");
      if (!root) return;

      const list = root.querySelector(".schedule_05-list");
      const wrap = root.querySelector(".schedule_05-trackWrap");
      const prevBtn = root.querySelector(".schedule_05-prev");
      const nextBtn = root.querySelector(".schedule_05-next");

      const jsonUrl = "https://pulser.ke/api-cache/live-all.json?v=" + new Date().getTime();

      const shortNameMap = {
        "Paris Saint-Germain": "PSG", "Olympique de Marseille": "Marseille", "Olympique Lyonnais": "Lyon",
        "AS Monaco": "Monaco", "LOSC Lille": "Lille", "Stade Rennais FC": "Rennes", "OGC Nice": "Nice",
        "RC Lens": "Lens", "Clermont Foot": "Clermont", "Manchester United": "Man Utd", 
        "Manchester City": "Man City", "Tottenham Hotspur": "Tottenham", "Atletico Madrid": "Atletico"
      };

      function getShortName(teamName) {
        return shortNameMap[teamName] || teamName; 
      }

      try {
        const response = await fetch(jsonUrl);
        const allMatches = await response.json();

        const leagueMatches = allMatches.filter(match => match.league_id === 61);

        if (leagueMatches.length === 0) {
          list.innerHTML = '<li class="schedule_05-card"><div class="schedule_05-header">No matches scheduled</div></li>';
          return;
        }

        list.innerHTML = leagueMatches.map(match => {
          let centerScore = (match.status === "NS") ? (match.time.split(" ")[1] || match.time) : (match.score_full !== "- : -" ? match.score_full : match.time);
          let centerStatus = (match.status !== "NS") ? `<div style="font-size: 11px; color: #ffcc00; font-weight: bold; margin-top: 4px;">${match.status}</div>` : "";

          return `
            <li class="schedule_05-card is-scheduled">
              <div class="schedule_05-header">
                <div class="schedule_05-topRow">
                  <span class="schedule_05-league">${match.league_name}</span>
                  <span class="schedule_05-date">${match.match_date}</span>
                </div>
                <span class="schedule_05-subInfo">${match.venue || "TBD"}</span>
              </div>
              <div class="schedule_05-matchArea">
                <div class="schedule_05-team">
                  <img decoding="async" class="schedule_05-teamLogo" src="${match.home_logo}" alt="${match.home}" loading="lazy" onerror="this.onerror=null; this.src='/wp-content/uploads/2026/04/icon_soccer.svg';"/>
                  <span class="schedule_05-teamName" title="${match.home}">${getShortName(match.home)}</span>
                </div>
                <div class="schedule_05-scoreBox" style="display: flex; flex-direction: column; align-items: center; justify-content: center;">
                  <span class="schedule_05-statusText">${centerScore}</span>
                  ${centerStatus}
                </div>
                <div class="schedule_05-team">
                  <img decoding="async" class="schedule_05-teamLogo" src="${match.away_logo}" alt="${match.away}" loading="lazy" onerror="this.onerror=null; this.src='/wp-content/uploads/2026/04/icon_soccer.svg';"/>
                  <span class="schedule_05-teamName" title="${match.away}">${getShortName(match.away)}</span>
                </div>
              </div>
            </li>
          `;
        }).join("");

        let currentTranslate = 0;
        function move(direction) {
          const card = list.querySelector(".schedule_05-card");
          if (!card) return;
          const gap = parseFloat(window.getComputedStyle(list).columnGap || window.getComputedStyle(list).gap || 12);
          const moveDistance = card.offsetWidth + gap;
          const maxTranslate = Math.max(0, list.scrollWidth - wrap.offsetWidth);
          currentTranslate += (direction === "next") ? -moveDistance : moveDistance;
          if (currentTranslate > 0) currentTranslate = 0;
          if (Math.abs(currentTranslate) > maxTranslate) currentTranslate = -maxTranslate;
          list.style.transform = "translateX(" + currentTranslate + "px)";
        }

        nextBtn.addEventListener("click", () => move("next"));
        prevBtn.addEventListener("click", () => move("prev"));
        window.addEventListener("resize", () => {
          const maxTranslate = Math.max(0, list.scrollWidth - wrap.offsetWidth);
          if (Math.abs(currentTranslate) > maxTranslate) {
            currentTranslate = -maxTranslate;
            list.style.transform = "translateX(" + currentTranslate + "px)";
          }
        });
      } catch (error) { console.error("Live match data failed to load", error); }
    })();
  });
</script>]]></content:encoded>
					
					<wfw:commentRss>https://pulser.ke/league_scores_ligue-1-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Module-TeamsByGroup</title>
		<link>https://pulser.ke/module-fifavenue-2/</link>
					<comments>https://pulser.ke/module-fifavenue-2/#respond</comments>
		
		<dc:creator><![CDATA[Wezabet]]></dc:creator>
		<pubDate>Mon, 08 Jun 2026 10:07:54 +0000</pubDate>
				<category><![CDATA[Module]]></category>
		<guid isPermaLink="false">https://pulser.ke/?p=5584</guid>

					<description><![CDATA[Group Stage Round of [&#8230;]]]></description>
										<content:encoded><![CDATA[<section class="TeamsByGroup_01" aria-label="FIFA World Cup 2026 Teams by Group">
  <div class="TeamsByGroup_01-inner">
    <nav class="TeamsByGroup_01-tabs" aria-label="Tournament rounds">
      <button type="button" class="TeamsByGroup_01-tab is-active" data-tbg01-jump="group-stage">Group Stage</button>
      <button type="button" class="TeamsByGroup_01-tab" data-tbg01-jump="round-32">Round of 32</button>
      <button type="button" class="TeamsByGroup_01-tab" data-tbg01-jump="round-16">Round of 16</button>
      <button type="button" class="TeamsByGroup_01-tab" data-tbg01-jump="quarter-finals">Quarter-finals</button>
      <button type="button" class="TeamsByGroup_01-tab" data-tbg01-jump="semi-finals">Semi-finals</button>
      <button type="button" class="TeamsByGroup_01-tab" data-tbg01-jump="final">Final</button>
    </nav>

    <div class="TeamsByGroup_01-accordion is-open" data-tbg01-section="group-stage">
      <button class="TeamsByGroup_01-accordionHead" type="button" aria-expanded="true" data-tbg01-toggle>
        <span class="TeamsByGroup_01-headLeft">
          <span class="TeamsByGroup_01-ballIcon"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26bd.png" alt="⚽" class="wp-smiley" style="height: 1em; max-height: 1em;" /></span>
          <span>Group Stage</span>
        </span>
        <span class="TeamsByGroup_01-chevron" aria-hidden="true"></span>
      </button>

      <div class="TeamsByGroup_01-accordionBody" data-tbg01-panel>
        <p class="TeamsByGroup_01-desc">
          Group winners, runners-up and the eight best third-placed teams will advance to the round of 32
        </p>

        <div class="TeamsByGroup_01-groupGrid" data-tbg01-groups>
          <div class="TeamsByGroup_01-message">Loading group standings&#8230;</div>
        </div>
      </div>
    </div>

    <div class="TeamsByGroup_01-accordion" data-tbg01-section="round-32">
      <button class="TeamsByGroup_01-accordionHead" type="button" aria-expanded="false" data-tbg01-toggle>
        <span class="TeamsByGroup_01-headLeft">
          <span class="TeamsByGroup_01-ballIcon"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26bd.png" alt="⚽" class="wp-smiley" style="height: 1em; max-height: 1em;" /></span>
          <span>Round of 32</span>
        </span>
        <span class="TeamsByGroup_01-chevron" aria-hidden="true"></span>
      </button>

      <div class="TeamsByGroup_01-accordionBody" data-tbg01-panel>
        <p class="TeamsByGroup_01-desc">Select your winners for all 16 matches</p>
        <div class="TeamsByGroup_01-matchGrid" data-tbg01-round="round-32">
          <div class="TeamsByGroup_01-message">Loading matches&#8230;</div>
        </div>
      </div>
    </div>

    <div class="TeamsByGroup_01-accordion" data-tbg01-section="round-16">
      <button class="TeamsByGroup_01-accordionHead" type="button" aria-expanded="false" data-tbg01-toggle>
        <span class="TeamsByGroup_01-headLeft">
          <span class="TeamsByGroup_01-ballIcon"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26bd.png" alt="⚽" class="wp-smiley" style="height: 1em; max-height: 1em;" /></span>
          <span>Round of 16</span>
        </span>
        <span class="TeamsByGroup_01-chevron" aria-hidden="true"></span>
      </button>

      <div class="TeamsByGroup_01-accordionBody" data-tbg01-panel>
        <p class="TeamsByGroup_01-desc">Select your winners for all eight matches</p>
        <div class="TeamsByGroup_01-matchGrid" data-tbg01-round="round-16">
          <div class="TeamsByGroup_01-message">Loading matches&#8230;</div>
        </div>
      </div>
    </div>

    <div class="TeamsByGroup_01-accordion" data-tbg01-section="quarter-finals">
      <button class="TeamsByGroup_01-accordionHead" type="button" aria-expanded="false" data-tbg01-toggle>
        <span class="TeamsByGroup_01-headLeft">
          <span class="TeamsByGroup_01-ballIcon"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26bd.png" alt="⚽" class="wp-smiley" style="height: 1em; max-height: 1em;" /></span>
          <span>Quarter-finals</span>
        </span>
        <span class="TeamsByGroup_01-chevron" aria-hidden="true"></span>
      </button>

      <div class="TeamsByGroup_01-accordionBody" data-tbg01-panel>
        <p class="TeamsByGroup_01-desc">Select your winners for the quarter-finals</p>
        <div class="TeamsByGroup_01-matchGrid" data-tbg01-round="quarter-finals">
          <div class="TeamsByGroup_01-message">Loading matches&#8230;</div>
        </div>
      </div>
    </div>

    <div class="TeamsByGroup_01-accordion" data-tbg01-section="semi-finals">
      <button class="TeamsByGroup_01-accordionHead" type="button" aria-expanded="false" data-tbg01-toggle>
        <span class="TeamsByGroup_01-headLeft">
          <span class="TeamsByGroup_01-ballIcon"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26bd.png" alt="⚽" class="wp-smiley" style="height: 1em; max-height: 1em;" /></span>
          <span>Semi-finals</span>
        </span>
        <span class="TeamsByGroup_01-chevron" aria-hidden="true"></span>
      </button>

      <div class="TeamsByGroup_01-accordionBody" data-tbg01-panel>
        <p class="TeamsByGroup_01-desc">Select your winners for both semi-finals</p>
        <div class="TeamsByGroup_01-matchGrid TeamsByGroup_01-matchGrid--two" data-tbg01-round="semi-finals">
          <div class="TeamsByGroup_01-message">Loading matches&#8230;</div>
        </div>
      </div>
    </div>

    <div class="TeamsByGroup_01-accordion" data-tbg01-section="final">
      <button class="TeamsByGroup_01-accordionHead" type="button" aria-expanded="false" data-tbg01-toggle>
        <span class="TeamsByGroup_01-headLeft">
          <span class="TeamsByGroup_01-ballIcon"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26bd.png" alt="⚽" class="wp-smiley" style="height: 1em; max-height: 1em;" /></span>
          <span>Final</span>
        </span>
        <span class="TeamsByGroup_01-chevron" aria-hidden="true"></span>
      </button>

      <div class="TeamsByGroup_01-accordionBody" data-tbg01-panel>
        <p class="TeamsByGroup_01-desc">Championship match</p>
        <div class="TeamsByGroup_01-matchGrid TeamsByGroup_01-matchGrid--one" data-tbg01-round="final">
          <div class="TeamsByGroup_01-message">Loading matches&#8230;</div>
        </div>
      </div>
    </div>
  </div>
</section>]]></content:encoded>
					
					<wfw:commentRss>https://pulser.ke/module-fifavenue-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Module-FifaVenue</title>
		<link>https://pulser.ke/module-fifavenue/</link>
					<comments>https://pulser.ke/module-fifavenue/#respond</comments>
		
		<dc:creator><![CDATA[Wezabet]]></dc:creator>
		<pubDate>Fri, 05 Jun 2026 06:12:33 +0000</pubDate>
				<category><![CDATA[Module]]></category>
		<guid isPermaLink="false">https://pulser.ke/?p=4934</guid>

					<description><![CDATA[HOST CITIES &#38; ST [&#8230;]]]></description>
										<content:encoded><![CDATA[<section class="FifaVenue_01" aria-label="2026 FIFA Host Cities and Stadiums">
  <div class="FifaVenue_01-panel">
    <div class="FifaVenue_01-left">
      <div class="FifaVenue_01-head">
        <div>
          <div class="FifaVenue_01-titleLine">
            <span class="FifaVenue_01-titleIcon" aria-hidden="true">
              <img decoding="async" src="/wp-content/uploads/2026/06/icon_nav04.svg" alt="" class="FifaVenue_01-titleIconImg">
            </span>
            <h2 class="FifaVenue_01-title">HOST CITIES &amp; STADIUMS</h2>
          </div>
          <p class="FifaVenue_01-subtitle">16 host cities across Canada, Mexico &amp; USA</p>
        </div>

        <button type="button" class="FifaVenue_01-topLink" data-fifavenue01-open>
          VIEW ALL VENUES
        </button>
      </div>

      <div class="FifaVenue_01-tabs" aria-label="Country filter">
        <button type="button" class="FifaVenue_01-tab is-active" data-fifavenue01-country="usa">
          UNITED STATES (11)
        </button>
        <button type="button" class="FifaVenue_01-tab" data-fifavenue01-country="mexico">
          MEXICO (3)
        </button>
        <button type="button" class="FifaVenue_01-tab" data-fifavenue01-country="canada">
          CANADA (2)
        </button>
      </div>

      <div class="FifaVenue_01-list">
        <!-- USA -->
        <article class="FifaVenue_01-card" data-fifavenue01-main-card data-country="usa">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_venue-metlife.webp" alt="MetLife Stadium"
            class="FifaVenue_01-cardImg">
          <div class="FifaVenue_01-cardBody">
            <h3>MetLife Stadium</h3>
            <p>East Rutherford, New Jersey</p>
          </div>
          <div class="FifaVenue_01-cardMeta">
            <span class="FifaVenue_01-badge FifaVenue_01-badgeBlue">FINAL</span>
            <span class="FifaVenue_01-capacity">82,500</span>
          </div>
        </article>

        <article class="FifaVenue_01-card" data-fifavenue01-main-card data-country="usa">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_AT-T-Stadium.webp" alt="AT&amp;T Stadium"
            class="FifaVenue_01-cardImg">
          <div class="FifaVenue_01-cardBody">
            <h3>AT&amp;T Stadium</h3>
            <p>Arlington, Texas</p>
          </div>
          <div class="FifaVenue_01-cardMeta">
            <span class="FifaVenue_01-badge FifaVenue_01-badgePurple">SEMI-FINAL</span>
            <span class="FifaVenue_01-capacity">80,000</span>
          </div>
        </article>

        <article class="FifaVenue_01-card" data-fifavenue01-main-card data-country="usa">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_SoFi-Stadium.webp" alt="SoFi Stadium" class="FifaVenue_01-cardImg">
          <div class="FifaVenue_01-cardBody">
            <h3>SoFi Stadium</h3>
            <p>Inglewood, California</p>
          </div>
          <div class="FifaVenue_01-cardMeta">
            <span class="FifaVenue_01-badge FifaVenue_01-badgeBlue">HOST VENUE</span>
            <span class="FifaVenue_01-capacity">70,240</span>
          </div>
        </article>

        <article class="FifaVenue_01-card" data-fifavenue01-main-card data-country="usa">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_Mercedes-Benz-Stadium.webp" alt="Mercedes-Benz Stadium"
            class="FifaVenue_01-cardImg">
          <div class="FifaVenue_01-cardBody">
            <h3>Mercedes-Benz Stadium</h3>
            <p>Atlanta, Georgia</p>
          </div>
          <div class="FifaVenue_01-cardMeta">
            <span class="FifaVenue_01-badge FifaVenue_01-badgePurple">SEMI-FINAL</span>
            <span class="FifaVenue_01-capacity">71,000</span>
          </div>
        </article>

        <article class="FifaVenue_01-card" data-fifavenue01-main-card data-country="usa" hidden>
          <img decoding="async" src="/wp-content/uploads/2026/06/img_Gillette-Stadium.webp" alt="Gillette Stadium"
            class="FifaVenue_01-cardImg">
          <div class="FifaVenue_01-cardBody">
            <h3>Gillette Stadium</h3>
            <p>Foxborough, Massachusetts</p>
          </div>
          <div class="FifaVenue_01-cardMeta">
            <span class="FifaVenue_01-badge FifaVenue_01-badgeDark">HOST VENUE</span>
            <span class="FifaVenue_01-capacity">65,878</span>
          </div>
        </article>

        <article class="FifaVenue_01-card" data-fifavenue01-main-card data-country="usa" hidden>
          <img decoding="async" src="/wp-content/uploads/2026/06/img_NRG-Stadium.webp" alt="NRG Stadium" class="FifaVenue_01-cardImg">
          <div class="FifaVenue_01-cardBody">
            <h3>NRG Stadium</h3>
            <p>Houston, Texas</p>
          </div>
          <div class="FifaVenue_01-cardMeta">
            <span class="FifaVenue_01-badge FifaVenue_01-badgeDark">HOST VENUE</span>
            <span class="FifaVenue_01-capacity">72,220</span>
          </div>
        </article>

        <article class="FifaVenue_01-card" data-fifavenue01-main-card data-country="usa" hidden>
          <img decoding="async" src="/wp-content/uploads/2026/06/img_Gillette-Stadium.webp" alt="Arrowhead Stadium"
            class="FifaVenue_01-cardImg">
          <div class="FifaVenue_01-cardBody">
            <h3>Arrowhead Stadium</h3>
            <p>Kansas City, Missouri</p>
          </div>
          <div class="FifaVenue_01-cardMeta">
            <span class="FifaVenue_01-badge FifaVenue_01-badgeDark">HOST VENUE</span>
            <span class="FifaVenue_01-capacity">76,416</span>
          </div>
        </article>

        <article class="FifaVenue_01-card" data-fifavenue01-main-card data-country="usa" hidden>
          <img decoding="async" src="/wp-content/uploads/2026/06/img_Hard-Rock-Stadium.webp" alt="Hard Rock Stadium"
            class="FifaVenue_01-cardImg">
          <div class="FifaVenue_01-cardBody">
            <h3>Hard Rock Stadium</h3>
            <p>Miami Gardens, Florida</p>
          </div>
          <div class="FifaVenue_01-cardMeta">
            <span class="FifaVenue_01-badge FifaVenue_01-badgeDark">HOST VENUE</span>
            <span class="FifaVenue_01-capacity">65,326</span>
          </div>
        </article>

        <article class="FifaVenue_01-card" data-fifavenue01-main-card data-country="usa" hidden>
          <img decoding="async" src="/wp-content/uploads/2026/06/img_Lincoln-Financial-Field.webp" alt="Lincoln Financial Field"
            class="FifaVenue_01-cardImg">
          <div class="FifaVenue_01-cardBody">
            <h3>Lincoln Financial Field</h3>
            <p>Philadelphia, Pennsylvania</p>
          </div>
          <div class="FifaVenue_01-cardMeta">
            <span class="FifaVenue_01-badge FifaVenue_01-badgeDark">HOST VENUE</span>
            <span class="FifaVenue_01-capacity">69,176</span>
          </div>
        </article>

        <article class="FifaVenue_01-card" data-fifavenue01-main-card data-country="usa" hidden>
          <img decoding="async" src="/wp-content/uploads/2026/06/img_Levis-Stadium.webp" alt="Levi's Stadium"
            class="FifaVenue_01-cardImg">
          <div class="FifaVenue_01-cardBody">
            <h3>Levi&#8217;s Stadium</h3>
            <p>Santa Clara, California</p>
          </div>
          <div class="FifaVenue_01-cardMeta">
            <span class="FifaVenue_01-badge FifaVenue_01-badgeDark">HOST VENUE</span>
            <span class="FifaVenue_01-capacity">68,500</span>
          </div>
        </article>

        <article class="FifaVenue_01-card" data-fifavenue01-main-card data-country="usa" hidden>
          <img decoding="async" src="/wp-content/uploads/2026/06/img_Lumen-Field.webp" alt="Lumen Field" class="FifaVenue_01-cardImg">
          <div class="FifaVenue_01-cardBody">
            <h3>Lumen Field</h3>
            <p>Seattle, Washington</p>
          </div>
          <div class="FifaVenue_01-cardMeta">
            <span class="FifaVenue_01-badge FifaVenue_01-badgeDark">HOST VENUE</span>
            <span class="FifaVenue_01-capacity">68,740</span>
          </div>
        </article>

        <!-- Mexico -->
        <article class="FifaVenue_01-card" data-fifavenue01-main-card data-country="mexico" hidden>
          <img decoding="async" src="/wp-content/uploads/2026/06/img_Estadio-Azteca.webp" alt="Estadio Azteca"
            class="FifaVenue_01-cardImg">
          <div class="FifaVenue_01-cardBody">
            <h3>Estadio Azteca</h3>
            <p>Mexico City, Mexico</p>
          </div>
          <div class="FifaVenue_01-cardMeta">
            <span class="FifaVenue_01-badge FifaVenue_01-badgeGreen">OPENING MATCH</span>
            <span class="FifaVenue_01-capacity">87,523</span>
          </div>
        </article>

        <article class="FifaVenue_01-card" data-fifavenue01-main-card data-country="mexico" hidden>
          <img decoding="async" src="/wp-content/uploads/2026/06/img_AT-T-Stadium.webp" alt="Estadio Akron" class="FifaVenue_01-cardImg">
          <div class="FifaVenue_01-cardBody">
            <h3>Estadio Akron</h3>
            <p>Guadalajara, Mexico</p>
          </div>
          <div class="FifaVenue_01-cardMeta">
            <span class="FifaVenue_01-badge FifaVenue_01-badgeDark">HOST VENUE</span>
            <span class="FifaVenue_01-capacity">48,071</span>
          </div>
        </article>

        <article class="FifaVenue_01-card" data-fifavenue01-main-card data-country="mexico" hidden>
          <img decoding="async" src="/wp-content/uploads/2026/06/img_Estadio-BBVA.webp" alt="Estadio BBVA" class="FifaVenue_01-cardImg">
          <div class="FifaVenue_01-cardBody">
            <h3>Estadio BBVA</h3>
            <p>Monterrey, Mexico</p>
          </div>
          <div class="FifaVenue_01-cardMeta">
            <span class="FifaVenue_01-badge FifaVenue_01-badgeDark">HOST VENUE</span>
            <span class="FifaVenue_01-capacity">53,500</span>
          </div>
        </article>

        <!-- Canada -->
        <article class="FifaVenue_01-card" data-fifavenue01-main-card data-country="canada" hidden>
          <img decoding="async" src="/wp-content/uploads/2026/06/img_BMO-Field.webp" alt="BMO Field" class="FifaVenue_01-cardImg">
          <div class="FifaVenue_01-cardBody">
            <h3>BMO Field</h3>
            <p>Toronto, Canada</p>
          </div>
          <div class="FifaVenue_01-cardMeta">
            <span class="FifaVenue_01-badge FifaVenue_01-badgeRed">HOST VENUE</span>
            <span class="FifaVenue_01-capacity">30,000</span>
          </div>
        </article>

        <article class="FifaVenue_01-card" data-fifavenue01-main-card data-country="canada" hidden>
          <img decoding="async" src="/wp-content/uploads/2026/06/img_BC-Place.webp" alt="BC Place" class="FifaVenue_01-cardImg">
          <div class="FifaVenue_01-cardBody">
            <h3>BC Place</h3>
            <p>Vancouver, Canada</p>
          </div>
          <div class="FifaVenue_01-cardMeta">
            <span class="FifaVenue_01-badge FifaVenue_01-badgeRed">HOST VENUE</span>
            <span class="FifaVenue_01-capacity">54,500</span>
          </div>
        </article>
      </div>

      <button type="button" class="FifaVenue_01-allBtn" data-fifavenue01-open>
        <span>VIEW ALL 16 VENUES</span>
        <span class="FifaVenue_01-allArrow">›</span>
      </button>
    </div>

    <div class="FifaVenue_01-right">
      <div class="FifaVenue_01-mapBox">
        <div class="FifaVenue_01-mapStage">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_North-America-map.svg" alt="North America Map"
            class="FifaVenue_01-mapImg">

          <!-- Canada 2 -->
          <!-- Vancouver -->
          <span class="FifaVenue_01-mapPin FifaVenue_01-mapPinCanada" style="top: 36%; left: 34%;"></span>
          <!-- Toronto -->
          <span class="FifaVenue_01-mapPin FifaVenue_01-mapPinCanada" style="top: 38%; left: 72%;"></span>

          <!-- USA 11 -->
          <!-- Seattle -->
          <span class="FifaVenue_01-mapPin FifaVenue_01-mapPinUsa" style="top: 42%; left: 35%;"></span>
          <!-- San Francisco / Santa Clara -->
          <span class="FifaVenue_01-mapPin FifaVenue_01-mapPinUsa" style="top: 55%; left: 34%;"></span>
          <!-- Los Angeles / Inglewood -->
          <span class="FifaVenue_01-mapPin FifaVenue_01-mapPinUsa" style="top: 62%; left: 37%;"></span>
          <!-- Kansas City -->
          <span class="FifaVenue_01-mapPin FifaVenue_01-mapPinUsa" style="top: 55%; left: 56%;"></span>
          <!-- Dallas / Arlington -->
          <span class="FifaVenue_01-mapPin FifaVenue_01-mapPinUsa" style="top: 65%; left: 56%;"></span>
          <!-- Houston -->
          <span class="FifaVenue_01-mapPin FifaVenue_01-mapPinUsa" style="top: 70%; left: 60%;"></span>
          <!-- Atlanta -->
          <span class="FifaVenue_01-mapPin FifaVenue_01-mapPinUsa" style="top: 63%; left: 70%;"></span>
          <!-- Miami -->
          <span class="FifaVenue_01-mapPin FifaVenue_01-mapPinUsa" style="top: 76%; left: 77%;"></span>
          <!-- Philadelphia -->
          <span class="FifaVenue_01-mapPin FifaVenue_01-mapPinUsa" style="top: 50%; left: 79%;"></span>
          <!-- New York / New Jersey -->
          <span class="FifaVenue_01-mapPin FifaVenue_01-mapPinUsa" style="top: 47%; left: 81%;"></span>
          <!-- Boston -->
          <span class="FifaVenue_01-mapPin FifaVenue_01-mapPinUsa" style="top: 44%; left: 83%;"></span>

          <!-- Mexico 3 -->
          <!-- Monterrey -->
          <span class="FifaVenue_01-mapPin FifaVenue_01-mapPinMexico" style="top: 71%; left: 50%;"></span>
          <!-- Guadalajara -->
          <span class="FifaVenue_01-mapPin FifaVenue_01-mapPinMexico" style="top: 77%; left: 45%;"></span>
          <!-- Mexico City -->
          <span class="FifaVenue_01-mapPin FifaVenue_01-mapPinMexico" style="top: 80%; left: 51%;"></span>
        </div>

        <div class="FifaVenue_01-legend">
          <div class="FifaVenue_01-legendItem">
            <span class="FifaVenue_01-legendDot FifaVenue_01-legendUsa"></span>
            <strong>USA</strong>
            <em>11 Cities</em>
          </div>
          <div class="FifaVenue_01-legendItem">
            <span class="FifaVenue_01-legendDot FifaVenue_01-legendMexico"></span>
            <strong>Mexico</strong>
            <em>3 Cities</em>
          </div>
          <div class="FifaVenue_01-legendItem">
            <span class="FifaVenue_01-legendDot FifaVenue_01-legendCanada"></span>
            <strong>Canada</strong>
            <em>2 Cities</em>
          </div>
        </div>
      </div>
    </div>
  </div>

  <!-- Popup -->
  <div class="FifaVenue_01-modal" data-fifavenue01-modal aria-hidden="true">
    <div class="FifaVenue_01-modalBackdrop" data-fifavenue01-close aria-hidden="true"></div>

    <div class="FifaVenue_01-modalPanel" role="dialog" aria-modal="true" aria-labelledby="FifaVenue_01_modalTitle">
      <div class="FifaVenue_01-modalHead">
        <div>
          <p class="FifaVenue_01-modalLabel">2026 FIFA WORLD CUP</p>
          <h2 id="FifaVenue_01_modalTitle">ALL 16 HOST VENUES</h2>
        </div>
        <div class="FifaVenue_01-closeBtn" data-fifavenue01-close role="button" tabindex="0" aria-label="Close">
          ×
        </div>
      </div>

      <div class="FifaVenue_01-modalGrid">
        <article class="FifaVenue_01-popupCard">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_venue-metlife.webp" alt="MetLife Stadium">
          <div>
            <h3>MetLife Stadium</h3>
            <p>East Rutherford, New Jersey</p>
            <span>USA · 82,500</span>
          </div>
        </article>

        <article class="FifaVenue_01-popupCard">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_AT-T-Stadium.webp" alt="AT&amp;T Stadium">
          <div>
            <h3>AT&amp;T Stadium</h3>
            <p>Arlington, Texas</p>
            <span>USA · 80,000</span>
          </div>
        </article>

        <article class="FifaVenue_01-popupCard">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_SoFi-Stadium.webp" alt="SoFi Stadium">
          <div>
            <h3>SoFi Stadium</h3>
            <p>Inglewood, California</p>
            <span>USA · 70,240</span>
          </div>
        </article>

        <article class="FifaVenue_01-popupCard">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_Mercedes-Benz-Stadium.webp" alt="Mercedes-Benz Stadium">
          <div>
            <h3>Mercedes-Benz Stadium</h3>
            <p>Atlanta, Georgia</p>
            <span>USA · 71,000</span>
          </div>
        </article>

        <article class="FifaVenue_01-popupCard">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_Mercedes-Benz-Stadium.webp" alt="Gillette Stadium">
          <div>
            <h3>Gillette Stadium</h3>
            <p>Foxborough, Massachusetts</p>
            <span>USA · 65,878</span>
          </div>
        </article>

        <article class="FifaVenue_01-popupCard">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_NRG-Stadium.webp" alt="NRG Stadium">
          <div>
            <h3>NRG Stadium</h3>
            <p>Houston, Texas</p>
            <span>USA · 72,220</span>
          </div>
        </article>

        <article class="FifaVenue_01-popupCard">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_Gillette-Stadium.webp" alt="Arrowhead Stadium">
          <div>
            <h3>Arrowhead Stadium</h3>
            <p>Kansas City, Missouri</p>
            <span>USA · 76,416</span>
          </div>
        </article>

        <article class="FifaVenue_01-popupCard">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_Hard-Rock-Stadium.webp" alt="Hard Rock Stadium">
          <div>
            <h3>Hard Rock Stadium</h3>
            <p>Miami Gardens, Florida</p>
            <span>USA · 65,326</span>
          </div>
        </article>

        <article class="FifaVenue_01-popupCard">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_Lincoln-Financial-Field.webp" alt="Lincoln Financial Field">
          <div>
            <h3>Lincoln Financial Field</h3>
            <p>Philadelphia, Pennsylvania</p>
            <span>USA · 69,176</span>
          </div>
        </article>

        <article class="FifaVenue_01-popupCard">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_Levis-Stadium.webp" alt="Levi's Stadium">
          <div>
            <h3>Levi&#8217;s Stadium</h3>
            <p>Santa Clara, California</p>
            <span>USA · 68,500</span>
          </div>
        </article>

        <article class="FifaVenue_01-popupCard">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_Lumen-Field.webp" alt="Lumen Field">
          <div>
            <h3>Lumen Field</h3>
            <p>Seattle, Washington</p>
            <span>USA · 68,740</span>
          </div>
        </article>

        <article class="FifaVenue_01-popupCard">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_Estadio-Azteca.webp" alt="Estadio Azteca">
          <div>
            <h3>Estadio Azteca</h3>
            <p>Mexico City, Mexico</p>
            <span>Mexico · 87,523</span>
          </div>
        </article>

        <article class="FifaVenue_01-popupCard">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_AT-T-Stadium.webp" alt="Estadio Akron">
          <div>
            <h3>Estadio Akron</h3>
            <p>Guadalajara, Mexico</p>
            <span>Mexico · 48,071</span>
          </div>
        </article>

        <article class="FifaVenue_01-popupCard">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_Estadio-BBVA.webp" alt="Estadio BBVA">
          <div>
            <h3>Estadio BBVA</h3>
            <p>Monterrey, Mexico</p>
            <span>Mexico · 53,500</span>
          </div>
        </article>

        <article class="FifaVenue_01-popupCard">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_BMO-Field.webp" alt="BMO Field">
          <div>
            <h3>BMO Field</h3>
            <p>Toronto, Canada</p>
            <span>Canada · 30,000</span>
          </div>
        </article>

        <article class="FifaVenue_01-popupCard">
          <img decoding="async" src="/wp-content/uploads/2026/06/img_BC-Place.webp" alt="BC Place">
          <div>
            <h3>BC Place</h3>
            <p>Vancouver, Canada</p>
            <span>Canada · 54,500</span>
          </div>
        </article>
      </div>
    </div>
  </div>
</section>]]></content:encoded>
					
					<wfw:commentRss>https://pulser.ke/module-fifavenue/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Venues06</title>
		<link>https://pulser.ke/venues06/</link>
					<comments>https://pulser.ke/venues06/#respond</comments>
		
		<dc:creator><![CDATA[Wezabet]]></dc:creator>
		<pubDate>Thu, 04 Jun 2026 07:12:16 +0000</pubDate>
				<category><![CDATA[Venues]]></category>
		<category><![CDATA[Atalanta]]></category>
		<category><![CDATA[Inter Milan]]></category>
		<category><![CDATA[Marco Palestra]]></category>
		<category><![CDATA[Newcastle United]]></category>
		<category><![CDATA[Premier League]]></category>
		<category><![CDATA[Serie A Transfer News]]></category>
		<category><![CDATA[Transfer News]]></category>
		<guid isPermaLink="false">https://pulser.ke/?p=4630</guid>

					<description><![CDATA[Newcastle United have joined the race to sign Atalanta defender Marco Palestra. The 21-year-old Italian international is also wanted by Arsenal, Inter Milan and Manchester City.]]></description>
										<content:encoded><![CDATA[<h2>News Focus</h2><ul><li>Atalanta defender Marco Palestra attracts interest from four major European clubs</li><li>Newcastle United join Arsenal and Manchester City in monitoring the 21-year-old Italian</li><li>The wing-back currently plays on loan at Cagliari with a price tag of at least €45m</li><li>Inter Milan lead the chase from Serie A but must sell Denzel Dumfries first</li></ul><p>Newcastle United have joined the race to sign Atalanta defender Marco Palestra. The 21-year-old has attracted interest from several top clubs after strong performances on loan at Cagliari.</p><p>The young Italian can play as a right-back or in attacking positions. He has also played for the senior national team. Atalanta plan to sell him this summer for at least €45 million.</p><p>Inter Milan want to sign the player. However, they face strong competition from the Premier League. Arsenal and Manchester City have both shown interest in recent weeks. Reports now suggest City&#8217;s interest has cooled slightly.</p><p>Newcastle view Palestra as their next major Italian signing after Sandro Tonali. The club is working hard to sign him. Inter remain interested but need to sell Denzel Dumfries before they can afford the deal.</p>]]></content:encoded>
					
					<wfw:commentRss>https://pulser.ke/venues06/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Venues05</title>
		<link>https://pulser.ke/venues05/</link>
					<comments>https://pulser.ke/venues05/#respond</comments>
		
		<dc:creator><![CDATA[Wezabet]]></dc:creator>
		<pubDate>Thu, 04 Jun 2026 07:09:55 +0000</pubDate>
				<category><![CDATA[Venues]]></category>
		<category><![CDATA[Atalanta]]></category>
		<category><![CDATA[Inter Milan]]></category>
		<category><![CDATA[Marco Palestra]]></category>
		<category><![CDATA[Newcastle United]]></category>
		<category><![CDATA[Premier League]]></category>
		<category><![CDATA[Serie A Transfer News]]></category>
		<category><![CDATA[Transfer News]]></category>
		<guid isPermaLink="false">https://pulser.ke/?p=4625</guid>

					<description><![CDATA[Newcastle United have joined the race to sign Atalanta defender Marco Palestra. The 21-year-old Italian international is also wanted by Arsenal, Inter Milan and Manchester City.]]></description>
										<content:encoded><![CDATA[<h2>News Focus</h2><ul><li>Atalanta defender Marco Palestra attracts interest from four major European clubs</li><li>Newcastle United join Arsenal and Manchester City in monitoring the 21-year-old Italian</li><li>The wing-back currently plays on loan at Cagliari with a price tag of at least €45m</li><li>Inter Milan lead the chase from Serie A but must sell Denzel Dumfries first</li></ul><p>Newcastle United have joined the race to sign Atalanta defender Marco Palestra. The 21-year-old has attracted interest from several top clubs after strong performances on loan at Cagliari.</p><p>The young Italian can play as a right-back or in attacking positions. He has also played for the senior national team. Atalanta plan to sell him this summer for at least €45 million.</p><p>Inter Milan want to sign the player. However, they face strong competition from the Premier League. Arsenal and Manchester City have both shown interest in recent weeks. Reports now suggest City&#8217;s interest has cooled slightly.</p><p>Newcastle view Palestra as their next major Italian signing after Sandro Tonali. The club is working hard to sign him. Inter remain interested but need to sell Denzel Dumfries before they can afford the deal.</p>]]></content:encoded>
					
					<wfw:commentRss>https://pulser.ke/venues05/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Venues04</title>
		<link>https://pulser.ke/venues04/</link>
					<comments>https://pulser.ke/venues04/#respond</comments>
		
		<dc:creator><![CDATA[Wezabet]]></dc:creator>
		<pubDate>Thu, 04 Jun 2026 07:07:02 +0000</pubDate>
				<category><![CDATA[Venues]]></category>
		<category><![CDATA[Atalanta]]></category>
		<category><![CDATA[Inter Milan]]></category>
		<category><![CDATA[Marco Palestra]]></category>
		<category><![CDATA[Newcastle United]]></category>
		<category><![CDATA[Premier League]]></category>
		<category><![CDATA[Serie A Transfer News]]></category>
		<category><![CDATA[Transfer News]]></category>
		<guid isPermaLink="false">https://pulser.ke/?p=4623</guid>

					<description><![CDATA[Newcastle United have joined the race to sign Atalanta defender Marco Palestra. The 21-year-old Italian international is also wanted by Arsenal, Inter Milan and Manchester City.]]></description>
										<content:encoded><![CDATA[<h2>News Focus</h2><ul><li>Atalanta defender Marco Palestra attracts interest from four major European clubs</li><li>Newcastle United join Arsenal and Manchester City in monitoring the 21-year-old Italian</li><li>The wing-back currently plays on loan at Cagliari with a price tag of at least €45m</li><li>Inter Milan lead the chase from Serie A but must sell Denzel Dumfries first</li></ul><p>Newcastle United have joined the race to sign Atalanta defender Marco Palestra. The 21-year-old has attracted interest from several top clubs after strong performances on loan at Cagliari.</p><p>The young Italian can play as a right-back or in attacking positions. He has also played for the senior national team. Atalanta plan to sell him this summer for at least €45 million.</p><p>Inter Milan want to sign the player. However, they face strong competition from the Premier League. Arsenal and Manchester City have both shown interest in recent weeks. Reports now suggest City&#8217;s interest has cooled slightly.</p><p>Newcastle view Palestra as their next major Italian signing after Sandro Tonali. The club is working hard to sign him. Inter remain interested but need to sell Denzel Dumfries before they can afford the deal.</p>]]></content:encoded>
					
					<wfw:commentRss>https://pulser.ke/venues04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Venues03</title>
		<link>https://pulser.ke/venues03/</link>
					<comments>https://pulser.ke/venues03/#respond</comments>
		
		<dc:creator><![CDATA[Wezabet]]></dc:creator>
		<pubDate>Thu, 04 Jun 2026 07:05:41 +0000</pubDate>
				<category><![CDATA[Venues]]></category>
		<category><![CDATA[Atalanta]]></category>
		<category><![CDATA[Inter Milan]]></category>
		<category><![CDATA[Marco Palestra]]></category>
		<category><![CDATA[Newcastle United]]></category>
		<category><![CDATA[Premier League]]></category>
		<category><![CDATA[Serie A Transfer News]]></category>
		<category><![CDATA[Transfer News]]></category>
		<guid isPermaLink="false">https://pulser.ke/?p=4621</guid>

					<description><![CDATA[Newcastle United have joined the race to sign Atalanta defender Marco Palestra. The 21-year-old Italian international is also wanted by Arsenal, Inter Milan and Manchester City.]]></description>
										<content:encoded><![CDATA[<h2>News Focus</h2><ul><li>Atalanta defender Marco Palestra attracts interest from four major European clubs</li><li>Newcastle United join Arsenal and Manchester City in monitoring the 21-year-old Italian</li><li>The wing-back currently plays on loan at Cagliari with a price tag of at least €45m</li><li>Inter Milan lead the chase from Serie A but must sell Denzel Dumfries first</li></ul><p>Newcastle United have joined the race to sign Atalanta defender Marco Palestra. The 21-year-old has attracted interest from several top clubs after strong performances on loan at Cagliari.</p><p>The young Italian can play as a right-back or in attacking positions. He has also played for the senior national team. Atalanta plan to sell him this summer for at least €45 million.</p><p>Inter Milan want to sign the player. However, they face strong competition from the Premier League. Arsenal and Manchester City have both shown interest in recent weeks. Reports now suggest City&#8217;s interest has cooled slightly.</p><p>Newcastle view Palestra as their next major Italian signing after Sandro Tonali. The club is working hard to sign him. Inter remain interested but need to sell Denzel Dumfries before they can afford the deal.</p>]]></content:encoded>
					
					<wfw:commentRss>https://pulser.ke/venues03/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Venues02</title>
		<link>https://pulser.ke/venues02/</link>
					<comments>https://pulser.ke/venues02/#respond</comments>
		
		<dc:creator><![CDATA[Wezabet]]></dc:creator>
		<pubDate>Thu, 04 Jun 2026 07:00:01 +0000</pubDate>
				<category><![CDATA[Venues]]></category>
		<category><![CDATA[Atalanta]]></category>
		<category><![CDATA[Inter Milan]]></category>
		<category><![CDATA[Marco Palestra]]></category>
		<category><![CDATA[Newcastle United]]></category>
		<category><![CDATA[Premier League]]></category>
		<category><![CDATA[Serie A Transfer News]]></category>
		<category><![CDATA[Transfer News]]></category>
		<guid isPermaLink="false">https://pulser.ke/?p=4618</guid>

					<description><![CDATA[Newcastle United have joined the race to sign Atalanta defender Marco Palestra. The 21-year-old Italian international is also wanted by Arsenal, Inter Milan and Manchester City.]]></description>
										<content:encoded><![CDATA[<h2>News Focus</h2><ul><li>Atalanta defender Marco Palestra attracts interest from four major European clubs</li><li>Newcastle United join Arsenal and Manchester City in monitoring the 21-year-old Italian</li><li>The wing-back currently plays on loan at Cagliari with a price tag of at least €45m</li><li>Inter Milan lead the chase from Serie A but must sell Denzel Dumfries first</li></ul><p>Newcastle United have joined the race to sign Atalanta defender Marco Palestra. The 21-year-old has attracted interest from several top clubs after strong performances on loan at Cagliari.</p><p>The young Italian can play as a right-back or in attacking positions. He has also played for the senior national team. Atalanta plan to sell him this summer for at least €45 million.</p><p>Inter Milan want to sign the player. However, they face strong competition from the Premier League. Arsenal and Manchester City have both shown interest in recent weeks. Reports now suggest City&#8217;s interest has cooled slightly.</p><p>Newcastle view Palestra as their next major Italian signing after Sandro Tonali. The club is working hard to sign him. Inter remain interested but need to sell Denzel Dumfries before they can afford the deal.</p>]]></content:encoded>
					
					<wfw:commentRss>https://pulser.ke/venues02/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Venues01</title>
		<link>https://pulser.ke/venues01/</link>
					<comments>https://pulser.ke/venues01/#respond</comments>
		
		<dc:creator><![CDATA[Wezabet]]></dc:creator>
		<pubDate>Thu, 04 Jun 2026 06:57:18 +0000</pubDate>
				<category><![CDATA[Venues]]></category>
		<category><![CDATA[Atalanta]]></category>
		<category><![CDATA[Inter Milan]]></category>
		<category><![CDATA[Marco Palestra]]></category>
		<category><![CDATA[Newcastle United]]></category>
		<category><![CDATA[Premier League]]></category>
		<category><![CDATA[Serie A Transfer News]]></category>
		<category><![CDATA[Transfer News]]></category>
		<guid isPermaLink="false">https://pulser.ke/?p=4613</guid>

					<description><![CDATA[Newcastle United have joined the race to sign Atalanta defender Marco Palestra. The 21-year-old Italian international is also wanted by Arsenal, Inter Milan and Manchester City.]]></description>
										<content:encoded><![CDATA[<h2>News Focus</h2><ul><li>Atalanta defender Marco Palestra attracts interest from four major European clubs</li><li>Newcastle United join Arsenal and Manchester City in monitoring the 21-year-old Italian</li><li>The wing-back currently plays on loan at Cagliari with a price tag of at least €45m</li><li>Inter Milan lead the chase from Serie A but must sell Denzel Dumfries first</li></ul><p>Newcastle United have joined the race to sign Atalanta defender Marco Palestra. The 21-year-old has attracted interest from several top clubs after strong performances on loan at Cagliari.</p><p>The young Italian can play as a right-back or in attacking positions. He has also played for the senior national team. Atalanta plan to sell him this summer for at least €45 million.</p><p>Inter Milan want to sign the player. However, they face strong competition from the Premier League. Arsenal and Manchester City have both shown interest in recent weeks. Reports now suggest City&#8217;s interest has cooled slightly.</p><p>Newcastle view Palestra as their next major Italian signing after Sandro Tonali. The club is working hard to sign him. Inter remain interested but need to sell Denzel Dumfries before they can afford the deal.</p>]]></content:encoded>
					
					<wfw:commentRss>https://pulser.ke/venues01/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Module-Live-Stream</title>
		<link>https://pulser.ke/module-live-stream/</link>
					<comments>https://pulser.ke/module-live-stream/#respond</comments>
		
		<dc:creator><![CDATA[Wezabet]]></dc:creator>
		<pubDate>Wed, 03 Jun 2026 09:37:10 +0000</pubDate>
				<category><![CDATA[Module]]></category>
		<guid isPermaLink="false">https://pulser.ke/?p=4326</guid>

					<description><![CDATA[Where to Watch in Ke [&#8230;]]]></description>
										<content:encoded><![CDATA[<section class="Live_02" aria-label="Where to watch in Kenya">
  <div class="Live_02-inner">

    <header class="Live_02-head">
      <div class="Live_02-titleRow">
        <span class="Live_02-titleIcon" aria-hidden="true">
          <svg viewBox="0 0 48 48" fill="none">
            <rect x="9" y="15" width="30" height="22" rx="3" stroke="currentColor" stroke-width="3" />
            <path d="M20 25l8 5v-10l-8 5z" stroke="currentColor" stroke-width="3" stroke-linejoin="round" />
            <path d="M18 10l6 5 6-5" stroke="currentColor" stroke-width="3" stroke-linecap="round"
              stroke-linejoin="round" />
          </svg>
        </span>
        <h2 class="Live_02-title">Where to Watch in Kenya</h2>
      </div>
      <p class="Live_02-subtitle">All 104 matches live across TV &amp; streaming</p>
    </header>

    <div class="Live_02-grid">

      <!-- Card 1 -->
      <article class="Live_02-card">
        <div class="Live_02-cardInner">

          <div class="Live_02-brand">
            <!-- Logo 路徑可自行替換 -->
            <img loading="lazy" class="Live_02-logoImg" src="/wp-content/uploads/2026/06/Logo_eltaott-100.webp" width="100"
              height="100" alt="DStv SuperSport" decoding="async" loading="lazy">
          </div>

          <span class="Live_02-badge">Official Broadcaster</span>

          <ul class="Live_02-list">
            <li class="Live_02-listItem">
              <span class="Live_02-check" aria-hidden="true">
                <svg viewBox="0 0 24 24" fill="none">
                  <path d="M5 12.5l4.2 4.2L19 7" stroke="currentColor" stroke-width="2.4" stroke-linecap="round"
                    stroke-linejoin="round" />
                </svg>
              </span>
              <span>All 104 matches live</span>
            </li>

            <li class="Live_02-listItem">
              <span class="Live_02-check" aria-hidden="true">
                <svg viewBox="0 0 24 24" fill="none">
                  <path d="M5 12.5l4.2 4.2L19 7" stroke="currentColor" stroke-width="2.4" stroke-linecap="round"
                    stroke-linejoin="round" />
                </svg>
              </span>
              <span>Expert analysis &amp; highlights</span>
            </li>

            <li class="Live_02-listItem">
              <span class="Live_02-check" aria-hidden="true">
                <svg viewBox="0 0 24 24" fill="none">
                  <path d="M5 12.5l4.2 4.2L19 7" stroke="currentColor" stroke-width="2.4" stroke-linecap="round"
                    stroke-linejoin="round" />
                </svg>
              </span>
              <span>Available on all DStv packages</span>
            </li>
          </ul>

          <a class="Live_02-button" href="#" aria-label="View DStv Packages">
            <span class="Live_02-buttonText">View DStv Packages</span>
            <span class="Live_02-buttonArrow" aria-hidden="true">
              <svg viewBox="0 0 24 24" fill="none">
                <path d="M9 5l7 7-7 7" stroke="currentColor" stroke-width="2.3" stroke-linecap="round"
                  stroke-linejoin="round" />
              </svg>
            </span>
          </a>

        </div>
      </article>

      <!-- Card 2 -->
      <article class="Live_02-card">
        <div class="Live_02-cardInner">

          <div class="Live_02-brand">
            <!-- Logo 路徑可自行替換 -->
            <img loading="lazy" class="Live_02-logoImg" src="/wp-content/uploads/2026/06/Logo_sport-100.webp" width="100"
              height="100" alt="DStv SuperSport" decoding="async" loading="lazy">
          </div>

          <span class="Live_02-badge">Free-to-Air Partner</span>

          <ul class="Live_02-list">
            <li class="Live_02-listItem">
              <span class="Live_02-check" aria-hidden="true">
                <svg viewBox="0 0 24 24" fill="none">
                  <path d="M5 12.5l4.2 4.2L19 7" stroke="currentColor" stroke-width="2.4" stroke-linecap="round"
                    stroke-linejoin="round" />
                </svg>
              </span>
              <span>Selected matches free-to-air</span>
            </li>

            <li class="Live_02-listItem">
              <span class="Live_02-check" aria-hidden="true">
                <svg viewBox="0 0 24 24" fill="none">
                  <path d="M5 12.5l4.2 4.2L19 7" stroke="currentColor" stroke-width="2.4" stroke-linecap="round"
                    stroke-linejoin="round" />
                </svg>
              </span>
              <span>Available across Sub-Saharan Africa</span>
            </li>

            <li class="Live_02-listItem">
              <span class="Live_02-check" aria-hidden="true">
                <svg viewBox="0 0 24 24" fill="none">
                  <path d="M5 12.5l4.2 4.2L19 7" stroke="currentColor" stroke-width="2.4" stroke-linecap="round"
                    stroke-linejoin="round" />
                </svg>
              </span>
              <span>Check local listings</span>
            </li>
          </ul>

          <a class="Live_02-button" href="#" aria-label="View Broadcast Schedule">
            <span class="Live_02-buttonText">View Broadcast Schedule</span>
            <span class="Live_02-buttonArrow" aria-hidden="true">
              <svg viewBox="0 0 24 24" fill="none">
                <path d="M9 5l7 7-7 7" stroke="currentColor" stroke-width="2.3" stroke-linecap="round"
                  stroke-linejoin="round" />
              </svg>
            </span>
          </a>

        </div>
      </article>

    </div>
  </div>
</section>]]></content:encoded>
					
					<wfw:commentRss>https://pulser.ke/module-live-stream/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
