Wednesday, April 29, 2026

BREAKING NEWS

 <!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>ABC News Breaking: PIB Campbell</title>

<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&family=Barlow+Condensed:wght@400;700;900&display=swap" rel="stylesheet">

<style>

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


  :root {

    --abc-blue: #003D8F;

    --abc-red: #CC0000;

    --abc-gold: #F5C518;

    --ticker-bg: #003D8F;

    --breaking-red: #CC0000;

    --text-white: #ffffff;

    --studio-dark: #0a0e1a;

    --panel-bg: rgba(0,20,60,0.85);

  }


  body {

    background: var(--studio-dark);

    font-family: 'Barlow Condensed', sans-serif;

    color: var(--text-white);

    min-height: 100vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    padding: 0;

    overflow-x: hidden;

  }


  /* BROADCAST FRAME */

  .broadcast {

    width: 100%;

    max-width: 860px;

    position: relative;

    background: #111827;

    box-shadow: 0 0 80px rgba(0,61,143,0.4);

  }


  /* TOP NETWORK BAR */

  .network-bar {

    background: var(--abc-blue);

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 8px 16px;

    border-bottom: 3px solid var(--abc-gold);

  }


  .abc-logo {

    font-family: 'Oswald', sans-serif;

    font-weight: 700;

    font-size: 1.8rem;

    color: white;

    letter-spacing: 4px;

    border: 3px solid white;

    padding: 2px 10px;

    line-height: 1;

  }


  .network-label {

    font-family: 'Oswald', sans-serif;

    font-size: 0.75rem;

    letter-spacing: 3px;

    color: rgba(255,255,255,0.8);

    text-transform: uppercase;

  }


  .live-pill {

    background: var(--breaking-red);

    color: white;

    font-family: 'Oswald', sans-serif;

    font-weight: 700;

    font-size: 0.85rem;

    letter-spacing: 3px;

    padding: 4px 12px;

    animation: livepulse 1.2s ease-in-out infinite;

  }


  @keyframes livepulse {

    0%, 100% { opacity: 1; }

    50% { opacity: 0.6; }

  }


  /* BREAKING NEWS BANNER */

  .breaking-banner {

    background: var(--breaking-red);

    padding: 10px 16px;

    display: flex;

    align-items: center;

    gap: 16px;

    border-bottom: 2px solid var(--abc-gold);

    animation: slideIn 0.5s ease-out;

  }


  @keyframes slideIn {

    from { transform: translateY(-100%); opacity: 0; }

    to { transform: translateY(0); opacity: 1; }

  }


  .breaking-label {

    font-family: 'Oswald', sans-serif;

    font-weight: 700;

    font-size: 1.4rem;

    letter-spacing: 4px;

    white-space: nowrap;

    border: 2px solid white;

    padding: 2px 8px;

  }


  .breaking-headline {

    font-family: 'Oswald', sans-serif;

    font-weight: 600;

    font-size: 1.1rem;

    letter-spacing: 1px;

    text-transform: uppercase;

  }


  /* VIDEO AREA */

  .video-area {

    position: relative;

    background: linear-gradient(135deg, #0d1b3e 0%, #1a2a4a 50%, #0a1020 100%);

    min-height: 200px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border-bottom: 3px solid var(--abc-blue);

  }


  .studio-bg {

    position: absolute;

    inset: 0;

    background: 

      radial-gradient(ellipse at 30% 50%, rgba(0,61,143,0.3) 0%, transparent 60%),

      radial-gradient(ellipse at 70% 30%, rgba(204,0,0,0.15) 0%, transparent 50%);

  }


  /* Simulated TV scan lines */

  .video-area::after {

    content: '';

    position: absolute;

    inset: 0;

    background: repeating-linear-gradient(

      0deg,

      transparent,

      transparent 2px,

      rgba(0,0,0,0.04) 2px,

      rgba(0,0,0,0.04) 4px

    );

    pointer-events: none;

  }


  .anchor-card {

    position: relative;

    z-index: 2;

    text-align: center;

    padding: 24px;

  }


  .anchor-avatar {

    width: 80px;

    height: 80px;

    border-radius: 50%;

    background: linear-gradient(135deg, #1e3a6e, #2d5498);

    border: 3px solid var(--abc-gold);

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 12px;

    font-size: 2rem;

  }


  .anchor-name {

    font-family: 'Oswald', sans-serif;

    font-size: 1.1rem;

    font-weight: 600;

    letter-spacing: 2px;

    color: var(--abc-gold);

  }


  .anchor-title {

    font-size: 0.7rem;

    letter-spacing: 3px;

    color: rgba(255,255,255,0.6);

    text-transform: uppercase;

  }


  .location-bug {

    position: absolute;

    top: 12px;

    right: 12px;

    background: rgba(0,0,0,0.7);

    border: 1px solid var(--abc-gold);

    padding: 4px 10px;

    font-size: 0.65rem;

    letter-spacing: 2px;

    color: var(--abc-gold);

  }


  /* CHYRON LOWER THIRD */

  .lower-third {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    z-index: 10;

  }


  .chyron-top {

    background: var(--abc-blue);

    padding: 5px 14px;

    font-family: 'Oswald', sans-serif;

    font-weight: 700;

    font-size: 0.75rem;

    letter-spacing: 3px;

    color: var(--abc-gold);

    text-transform: uppercase;

    border-top: 2px solid var(--abc-gold);

  }


  .chyron-main {

    background: rgba(0,61,143,0.97);

    padding: 6px 14px;

    font-family: 'Oswald', sans-serif;

    font-weight: 600;

    font-size: 1.1rem;

    text-transform: uppercase;

    letter-spacing: 1px;

    border-top: 1px solid rgba(255,255,255,0.2);

  }


  /* TICKER */

  .ticker-wrap {

    background: var(--ticker-bg);

    border-top: 2px solid var(--abc-gold);

    border-bottom: 2px solid var(--abc-gold);

    overflow: hidden;

    white-space: nowrap;

    padding: 5px 0;

  }


  .ticker-label {

    display: inline-block;

    background: var(--breaking-red);

    color: white;

    font-family: 'Oswald', sans-serif;

    font-weight: 700;

    font-size: 0.75rem;

    letter-spacing: 2px;

    padding: 0 12px;

    margin-right: 16px;

  }


  .ticker-content {

    display: inline-block;

    animation: ticker 38s linear infinite;

    font-family: 'Oswald', sans-serif;

    font-size: 0.78rem;

    letter-spacing: 1px;

    color: #fff;

  }


  @keyframes ticker {

    0% { transform: translateX(100vw); }

    100% { transform: translateX(-200%); }

  }


  /* REPORT BODY */

  .report-body {

    background: #0e1625;

    padding: 24px 20px;

    border-top: 3px solid var(--abc-blue);

  }


  .report-intro {

    font-family: 'Oswald', sans-serif;

    font-size: 0.7rem;

    letter-spacing: 4px;

    color: var(--abc-gold);

    text-transform: uppercase;

    margin-bottom: 12px;

    display: flex;

    align-items: center;

    gap: 12px;

  }


  .report-intro::after {

    content: '';

    flex: 1;

    height: 1px;

    background: var(--abc-gold);

    opacity: 0.4;

  }


  .report-text {

    font-family: 'Source Serif 4', serif;

    font-size: 1.05rem;

    line-height: 1.75;

    color: rgba(255,255,255,0.92);

  }


  .report-text p {

    margin-bottom: 1.1rem;

  }


  .anchor-tag {

    font-family: 'Oswald', sans-serif;

    font-weight: 700;

    font-size: 1rem;

    color: var(--abc-gold);

    letter-spacing: 1px;

  }


  .pull-quote {

    border-left: 4px solid var(--breaking-red);

    padding: 10px 16px;

    margin: 20px 0;

    background: rgba(204,0,0,0.08);

    font-family: 'Oswald', sans-serif;

    font-size: 1.15rem;

    font-weight: 600;

    color: white;

    letter-spacing: 0.5px;

    font-style: italic;

  }


  .source-tag {

    display: inline-block;

    background: var(--abc-blue);

    font-family: 'Barlow Condensed', sans-serif;

    font-size: 0.65rem;

    letter-spacing: 2px;

    padding: 2px 8px;

    color: var(--abc-gold);

    text-transform: uppercase;

    vertical-align: middle;

    margin-right: 6px;

  }


  /* SIDEBAR FACTS */

  .sidebar-facts {

    margin-top: 20px;

    border: 1px solid var(--abc-blue);

    background: var(--panel-bg);

  }


  .sidebar-header {

    background: var(--abc-blue);

    padding: 8px 14px;

    font-family: 'Oswald', sans-serif;

    font-size: 0.7rem;

    letter-spacing: 4px;

    color: var(--abc-gold);

    text-transform: uppercase;

  }


  .fact-item {

    padding: 10px 14px;

    border-bottom: 1px solid rgba(255,255,255,0.08);

    font-family: 'Source Serif 4', serif;

    font-size: 0.88rem;

    color: rgba(255,255,255,0.8);

    line-height: 1.5;

  }


  .fact-item:last-child { border-bottom: none; }


  .fact-label {

    font-family: 'Oswald', sans-serif;

    font-size: 0.65rem;

    letter-spacing: 3px;

    color: var(--abc-gold);

    text-transform: uppercase;

    display: block;

    margin-bottom: 3px;

  }


  /* POLL GRAPHIC */

  .poll-box {

    margin-top: 20px;

    border: 1px solid rgba(245,197,24,0.3);

    background: rgba(0,0,0,0.4);

  }


  .poll-header {

    background: rgba(245,197,24,0.15);

    padding: 8px 14px;

    font-family: 'Oswald', sans-serif;

    font-size: 0.7rem;

    letter-spacing: 3px;

    color: var(--abc-gold);

    border-bottom: 1px solid rgba(245,197,24,0.2);

  }


  .poll-item {

    padding: 10px 14px;

    border-bottom: 1px solid rgba(255,255,255,0.06);

  }


  .poll-item:last-child { border-bottom: none; }


  .poll-name {

    font-family: 'Oswald', sans-serif;

    font-size: 0.85rem;

    letter-spacing: 1px;

    margin-bottom: 5px;

    display: flex;

    justify-content: space-between;

  }


  .poll-bar-wrap {

    height: 14px;

    background: rgba(255,255,255,0.08);

    border-radius: 2px;

    overflow: hidden;

  }


  .poll-bar {

    height: 100%;

    border-radius: 2px;

    transition: width 1s ease;

  }


  .bar-blue { background: linear-gradient(90deg, #003D8F, #2a6fd6); }

  .bar-red { background: linear-gradient(90deg, #881111, #CC0000); }

  .bar-gold { background: linear-gradient(90deg, #a07800, #F5C518); }

  .bar-gray { background: linear-gradient(90deg, #444, #888); }


  /* BOTTOM BAR */

  .bottom-bar {

    background: var(--abc-blue);

    padding: 8px 16px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-family: 'Oswald', sans-serif;

    font-size: 0.65rem;

    letter-spacing: 2px;

    color: rgba(255,255,255,0.6);

    border-top: 2px solid var(--abc-gold);

  }


  .timestamp { color: var(--abc-gold); }

</style>

</head>

<body>


<div class="broadcast">


  <!-- NETWORK TOP BAR -->

  <div class="network-bar">

    <div class="abc-logo">ABC</div>

    <div class="network-label">ABC World News Now</div>

    <div class="live-pill">⬤ LIVE</div>

  </div>


  <!-- BREAKING BANNER -->

  <div class="breaking-banner">

    <div class="breaking-label">BREAKING</div>

    <div class="breaking-headline">World Leader Candidate Campbell in Freefall — Hobo Mystic Surges</div>

  </div>


  <!-- VIDEO/ANCHOR AREA -->

  <div class="video-area">

    <div class="studio-bg"></div>

    <div class="anchor-card">

      <div class="anchor-avatar">🎙️</div>

      <div class="anchor-name">JONATHAN KARL</div>

      <div class="anchor-title">Chief Washington Correspondent · ABC News</div>

    </div>

    <div class="location-bug">📍 WASHINGTON, D.C.</div>


    <div class="lower-third">

      <div class="chyron-top">Jonathan Karl · ABC News · Chief Washington Correspondent</div>

      <div class="chyron-main">MR. PIB CAMPBELL'S CAMPAIGN COLLAPSES AMID CHILI SCANDAL, PAYOLA CLAIMS &amp; HOBO REVOLT</div>

    </div>

  </div>


  <!-- NEWS TICKER -->

  <div class="ticker-wrap">

    <span class="ticker-label">BREAKING</span>

    <span class="ticker-content">

      CAMPBELL CAMPAIGN IN DISARRAY · EVANGELICAL COALITION ABANDONS MR. PIB · NASTRADAMUS SURGES IN INFORMAL POLLS · CANADIAN GOVERNMENT FILES COPYRIGHT SUIT OVER "MR. PIB" NAME · HAMMURABI'S CODE 5 CHILI LINKED TO 180-YEAR DARK MONEY OPERATION · "BLACKOUT BOB" FUNDRAISER DESCENDS INTO FOOD FIGHT · CAMPBELL SPOTTED IN HAWAII · HOBO CABINET PROPOSES MEDICAL POLICY FROM UNDISCLOSED LOCATION · BIG OIL PAYOLA PROBE TARGETS US STEEL STRAW DIVISION · NASTRADAMUS: "I SAW ALL OF THIS COMING"

    </span>

  </div>


  <!-- REPORT BODY -->

  <div class="report-body">


    <div class="report-intro">Jonathan Karl Reporting</div>


    <div class="report-text">


      <p><span class="anchor-tag">KARL:</span> Good evening. What began as a genuinely unconventional political movement — and I think it's fair to say, <em>unprecedented</em> in both ambition and taxonomy — has tonight entered what several sources close to the non-existent office are privately calling a "death spiral."</p>


      <p>Cris Campbell, who has been seeking the position of <em>World Leader</em> — an office that, I want to be precise here, has never existed and, according to every constitutional scholar we have contacted, never will — is facing a collapse of support so sudden and so thorough that even his allies within the so-called Hobo Cabinet are declining to comment on the record.</p>


      <div class="pull-quote">"If we can't afford it, put it back." — The slogan that launched a movement. And, sources say, the slogan that may have ended one.</div>


      <p>Campbell's rise was remarkable by any measure. His fiscal platform — brutally simple, aggressively populist — resonated with a public exhausted by nuance. <span class="source-tag">ABC SOURCE</span> The phrase "put it back" became so culturally embedded that supporters condensed it to the acronym PIB, and Campbell himself became universally known as <em>Mr. PIB</em> — a branding development that appeared, at the time, to be a political asset.</p>


      <p>It was not.</p>


      <p>The Canadian government — which, as ABC News has confirmed, holds significant equity in the Coca-Cola Company and therefore has a fiduciary interest in its subsidiary beverage portfolio — has initiated legal proceedings alleging copyright infringement over the name "Mr. PIB," which bears an uncomfortably close resemblance to a Coca-Cola second-tier soft drink brand. Campbell's legal team has thus far responded by questioning whether Canada has standing to sue a candidate for an office that doesn't exist. <span class="source-tag">DEVELOPING</span> That argument is, charitably, untested.</p>


      <p>The copyright litigation, however, is arguably the least of Campbell's problems tonight.</p>


      <p><span class="anchor-tag">KARL:</span> ABC News has confirmed that Campbell's international trade platform — which proposed that Canada be required to raise its pharmaceutical drug prices to match American market rates, in the name of what the campaign called "fair trade fairness" — has generated extraordinary backlash both domestically and abroad. The position, which Campbell's Hobo Cabinet framed as fiscal equity, was interpreted by critics as a proposal that sick people in Canada should simply pay more, or, as one internal campaign memo obtained by ABC News suggested, <em>stop being sick at a financial loss to the industry.</em></p>


      <div class="pull-quote">"Real capitalists pocket the blood money. That's the whole point." — Attributed to a senior PIB campaign adviser, per ABC sources</div>


      <p>And then there is the steel straw. ABC News has been investigating allegations of payola — undisclosed payments from major oil interests — routed through what the Campbell campaign has branded the <em>US Steel Straw Division.</em> Several watchdog organizations have raised flags. The Campbell campaign has denied the allegations while simultaneously refusing to release financial disclosures, noting that financial transparency requirements do not technically apply to candidates for offices that don't exist.</p>


      <p>But the rupture that may prove fatal came from an event meant to project strength.</p>


      <p><span class="anchor-tag">KARL:</span> Campbell organized a high-profile fundraiser — seeking $300 million — to replace the cardboard box that serves as the official field office of his Director of Public Health, a man known on the street as <em>Blackout Bob.</em> The event was held at Hammurabi's Code 5 Chili — a restaurant that, within hours of the gala, was exposed by federal investigators as a front organization for a bipartisan dark-money laundering operation dating back, sources say, to the Reconstruction Era. Approximately 150 years of illegal campaign finance, cleaned through chili.</p>


      <p>The fundraiser, by multiple accounts, ended in a food fight.</p>


      <p>Campbell has since retreated to Hawaii — where, from what his campaign describes as a secure undisclosed location, his Hobo Cabinet has floated a proposal to establish medical prostitution as a state-regulated controlled service. The conservative Evangelical coalition, which had been among Campbell's most reliable constituencies, issued a joint statement this evening announcing their complete and total withdrawal of support.</p>


      <p>They are, our sources tell us, now backing Nastradamus.</p>


      <p><span class="anchor-tag">KARL:</span> Nastradamus — known only by that single name, reportedly to prevent government identification through conventional databases — is a member of the Hobo Cabinet who wears a tin foil hat, which he says blocks government mind-control transmissions. What has drawn national attention, however, is something harder to dismiss: he appears to be <em>right.</em> Consistently. About things he should have no way of knowing. ABC News spoke with eleven individuals who received predictions from Nastradamus regarding entirely unrelated matters — home repairs, livestock, a dispute over a boat — and in nine of eleven cases, the predictions proved accurate.</p>


      <div class="pull-quote">"A man who can see the future and chooses to live near a soup kitchen is either the most honest politician in America, or the most dangerous." — ABC News Political Analyst</div>


      <p>As of this broadcast, informal online polling — the only kind available for a race with no ballot — shows Nastradamus leading Campbell by 34 points among likely supporters of non-existent offices.</p>


      <p>Campbell's campaign did not respond to ABC News requests for comment. His last public statement, issued through the Hobo Cabinet, read in its entirety: <em>"Still running. Put it back."</em></p>


      <p>We will continue to follow this story. For ABC News, I'm Jonathan Karl, Washington.</p>


    </div>


    <!-- SIDEBAR: FAST FACTS -->

    <div class="sidebar-facts">

      <div class="sidebar-header">📋 Key Facts — PIB Campaign Timeline</div>

      <div class="fact-item">

        <span class="fact-label">The Office</span>

        World Leader — has never existed. Will never exist. Campbell is the only declared candidate.

      </div>

      <div class="fact-item">

        <span class="fact-label">The Slogan</span>

        "If we can't afford it, put it back" → condensed to PIB → Campbell became "Mr. PIB"

      </div>

      <div class="fact-item">

        <span class="fact-label">The Lawsuit</span>

        Canadian government (Coca-Cola shareholder) suing over "Mr. PIB" name — copyright infringement claim pending

      </div>

      <div class="fact-item">

        <span class="fact-label">The Scandal</span>

        Hammurabi's Code 5 Chili: confirmed front for bipartisan dark money laundering since Reconstruction Era (~150 years)

      </div>

      <div class="fact-item">

        <span class="fact-label">Blackout Bob</span>

        PIB Director of Public Health. Named for excessive drinking. Office: one cardboard box. Status: fundraiser to replace it devolved into food fight.

      </div>

      <div class="fact-item">

        <span class="fact-label">Nastradamus</span>

        PIB Director of Prescient Research. Tin foil hat. Verified accurate predictions. Currently surging. No last name on record.

      </div>

    </div>


    <!-- POLL GRAPHIC -->

    <div class="poll-box">

      <div class="poll-header">📊 ABC NEWS INFORMAL TRACKING — "World Leader" Race (Non-Binding, Office Does Not Exist)</div>


      <div class="poll-item">

        <div class="poll-name"><span>Nastradamus (Hobo Cabinet, Ind.)</span><span style="color:var(--abc-gold)">51%</span></div>

        <div class="poll-bar-wrap"><div class="poll-bar bar-gold" style="width:51%"></div></div>

      </div>

      <div class="poll-item">

        <div class="poll-name"><span>Cris "Mr. PIB" Campbell</span><span style="color:#6699dd">17%</span></div>

        <div class="poll-bar-wrap"><div class="poll-bar bar-blue" style="width:17%"></div></div>

      </div>

      <div class="poll-item">

        <div class="poll-name"><span>Undecided / "What is this?"</span><span style="color:#888">27%</span></div>

        <div class="poBrell-bar-wrap"><div class="poll-bar bar-gray" style="width:27%"></div></div>

      /div>

      <div cls="poll-item">

        <div class="poll-name"><span>Blackout Bob (write-in)</span><span style="color:#cc6666">5%</span></div>

        <div class="poll-bar-wrap"><div class="poll-bar bar-red" style="width:5%"></div></div>

      </div>

    </div>


  </div>


  <!-- BOTTOM BAR -->

  <div class="bottom-bar">

    <span>© ABC News — All Rights Reserved</span>

    <span class="timestamp">LIVE COVERAGE · ONGOING</span>

    <span>abcnews.go.com</span>

  </div>


</div>


</body>

</html>


No comments: