Powerade Sweepstakes at 7-Eleven: Win a Trip to the FIFA World Cup
#powerade-box1 .wrap{
background:#fbfdff;
color:#0b1b2b;
border-radius:22px;
padding:20px 20px 14px;
box-shadow:0 12px 28px rgba(0,0,0,.12);
border:1px solid rgba(0,27,43,.12);
position:relative;
overflow:hidden;
}
#powerade-box1 .brandbar{
height:6px;
border-radius:6px;
/* 7-Eleven + POWERADE feel */
background:linear-gradient(90deg,#ea1c2d 0%,#f47721 20%,#007a33 40%,#00a3e0 60%,#111 80%,#00a3e0 100%);
margin-bottom:14px;
}
#powerade-box1 h3{
margin:2px 0 10px;
font-size:21px;
line-height:1.25;
font-weight:900;
text-transform:uppercase;
color:#00a3e0;
letter-spacing:.2px;
}
#powerade-box1 .meta{
font-size:14px;
opacity:.9;
margin-bottom:14px;
color:#0b1b2b;
}
#powerade-box1 .timer{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:12px;
margin:10px 0 8px;
}
#powerade-box1 .cell{
background:#f0f7fd;
border:1px solid rgba(0,27,43,.15);
border-radius:14px;
padding:12px 8px;
text-align:center;
box-shadow:0 4px 10px rgba(0,27,43,.08);
}
#powerade-box1 .num{
font-size:30px;
font-weight:900;
letter-spacing:.5px;
color:#0b1b2b;
font-variant-numeric:tabular-nums;
}
#powerade-box1 .lbl{
font-size:12px;
opacity:.85;
text-transform:uppercase;
letter-spacing:.6px;
margin-top:2px;
}
#powerade-box1 .note{
font-size:12px;
color:#38556f;
margin-top:12px;
}
POWERADE® Sweepstakes at 7-Eleven — Time Left to Enter
(function(){
// Ends Oct 28, 2025 11:59:59 PM CT = 2025-10-29T04:59:59Z
var end = new Date(“2025-10-29T04:59:59Z”).getTime();
var ids = {d:”pow-d”,h:”pow-h”,m:”pow-m”,s:”pow-s”};
function pad(n){ return n<10?"0"+n:n; }
function tick(){
var now=Date.now(), t=end-now;
if(t<0){t=0;}
var sec=Math.floor(t/1000);
var d=Math.floor(sec/86400); sec-=d*86400;
var h=Math.floor(sec/3600); sec-=h*3600;
var m=Math.floor(sec/60); sec-=m*60;
var s=sec;
document.getElementById(ids.d).textContent=pad(d);
document.getElementById(ids.h).textContent=pad(h);
document.getElementById(ids.m).textContent=pad(m);
document.getElementById(ids.s).textContent=pad(s);
}
tick(); setInterval(tick,1000);
})();
#powerade-box2 .card{
position:relative;
background:#ffffff;
border:2px solid #00a3e0;
border-radius:22px;
padding:22px;
box-shadow:0 12px 28px rgba(0,0,0,.12);
overflow:hidden;
text-align:center;
}
#powerade-box2 .ribbon{
position:absolute;
inset:auto -40px 14px auto;
transform:rotate(-8deg);
background:#111;
color:#fff;
font-weight:900;
padding:6px 46px;
border-radius:10px;
box-shadow:0 6px 14px rgba(0,0,0,.25);
font-size:15px;
letter-spacing:.6px;
text-transform:uppercase;
}
#powerade-box2 h3{
margin:6px 0 12px;
font-size:22px;
line-height:1.25;
color:#00a3e0;
font-weight:900;
text-transform:uppercase;
}
#powerade-box2 .sub{
font-size:15px;
margin-bottom:12px;
color:#0b1b2b;
opacity:.9;
}
#powerade-box2 .cta{
display:inline-block;
margin-top:12px;
text-align:center;
background:linear-gradient(90deg,#00a3e0,#111);
color:#fff;
text-decoration:none;
border-radius:16px;
padding:16px 36px;
font-weight:800;
font-size:18px;
border:none;
cursor:pointer;
box-shadow:0 8px 24px rgba(0,0,0,.25);
transition:transform .25s ease;
text-transform:uppercase;
letter-spacing:.6px;
}
#powerade-box2 .cta:hover{ transform:scale(1.04); }
/* Center popup */
#powerade-popup{
display:none;
position:fixed;
top:50%;left:50%;
transform:translate(-50%,-50%);
background:#ffffff;
padding:24px 28px;
border-radius:18px;
box-shadow:0 0 32px rgba(0,27,43,.25);
z-index:9999;
font-size:18px;
font-weight:800;
color:#0b1b2b;
max-width:520px;
width:88%;
text-align:center;
}
/* Confetti from SIDES */
#powerade-confetti{
pointer-events:none;
position:fixed;
inset:0;
overflow:hidden;
z-index:9998;
display:none;
}
#powerade-confetti .piece{
position:fixed;
top:var(–top,10vh);
width:10px;height:14px;
opacity:.95;
border-radius:2px;
background:var(–c,#00a3e0);
transform:translateX(0) translateY(0) rotate(0deg);
animation:var(–anim,shootR) var(–dur,2.2s) linear forwards;
}
@keyframes shootR { to { transform:translateX(110vw) rotate(540deg); } }
@keyframes shootL { to { transform:translateX(-110vw) rotate(-540deg); } }
Ready to Enter the POWERADE® Sweepstakes at 7-Eleven?
// Accurate facts for on-scroll popups
const powFacts = [
“No purchase necessary. 50 U.S./D.C., 18+ & age of majority.”,
“Limit 35 entries per person/email per day (all methods combined).”,
“Ends Oct 28, 2025 at 11:59 PM CT. Drawing on or about Oct 29, 2025.”
];
function poweradeShowPopup(msg){
const el=document.getElementById(“powerade-popup”);
if(!el) return;
el.innerHTML = msg;
el.style.display=”block”;
clearTimeout(poweradeShowPopup._t);
poweradeShowPopup._t=setTimeout(()=>{ el.style.display=”none”; }, 3600);
}
function poweradeFireConfettiSides(){
const conf=document.getElementById(“powerade-confetti”);
conf.style.display=’block’;
const colors=[‘#00a3e0′,’#111′,’#f47721′,’#007a33′,’#ea1c2d’,’#ffffff’];
const pieces=140; // 70 from each side
const h=window.innerHeight;
for(let i=0;is.remove(),3500);
}
setTimeout(()=>{ conf.style.display=’none’; },2200);
}
// Smooth scroll (~10s) with popups + confetti into Box 3
function poweradeStartScroll(){
const box3=document.getElementById(“powerade-entryBox”);
if(!box3){ console.error(“Box 3 (#powerade-entryBox) not found.”); return; }
poweradeFireConfettiSides();
const startY=window.scrollY;
const targetY=box3.getBoundingClientRect().top+window.scrollY-8;
const duration=10000; // ~10 seconds
let startT=null;
[1000,5000,8000].forEach((ms,i)=>{
setTimeout(()=>{ poweradeShowPopup(powFacts[i]); }, ms);
});
setTimeout(()=>{
poweradeShowPopup(“You’re at the entry box — follow the line under the picture to enter without purchase.”);
poweradeFireConfettiSides();
}, duration-600);
function step(ts){
if(!startT) startT=ts;
const prog=ts-startT;
const pct=Math.min(prog/duration,1);
window.scrollTo(0,startY+(targetY-startY)*pct);
if(prog<duration) requestAnimationFrame(step);
}
requestAnimationFrame(step);
}
What if grabbing a Big Gulp or a Slurpee could score you a trip to the FIFA World Cup™? That’s exactly what’s on the line in the new POWERADE Sweepstakes at 7-Eleven. With prizes totaling over $24,000, including VIP trips to the 2026 FIFA World Cup, game tickets, and exclusive soccer gear, this promotion is more than just hype—it’s one of the most exciting branded sweepstakes of the season.
The grand prize isn’t just game tickets—it’s a full travel package for you and a guest, complete with airfare, hotel, $1,000 in spending money, and even a chance for your teen guest to become an official Flag Bearer at the match. Whether you’re a die-hard soccer fan, a casual sports lover, or just someone who wants to experience the cultural phenomenon that is the FIFA World Cup™, this sweepstakes is worth your attention.
And here’s the best part: you can rack up 35 entries per day without spending a dime.
Prize Breakdown
Grand Prizes (2 Winners)
• A four-day, three-night trip for two to a 2026 FIFA World Cup™ game
• Roundtrip airfare, hotel stay, and $250 for ground transportation
• Two event tickets
• $1,000 in spending money (digital gift card)
• Optional Flag Bearer experience if your guest is between 13-17 years old
Approximate Retail Value (ARV): $7,250 each
First Prizes (25 Winners)
• Two tickets to a FIFA World Cup™ 2026 match
• No travel included (tickets only)
ARV: $300 each
Second Prizes (50 Winners)
• FIFA Gear Pack including:
– One POWERADE squeeze bottle
– One official soccer ball
ARV: $45 each
Total Prize Pool: $24,250
What You Can Do With the Prize if You Win
Imagine this: you’re sitting in a packed stadium as the world’s biggest soccer tournament unfolds before your eyes. If you snag a Grand Prize trip, you’re not just getting into the game—you’re immersing yourself in the full World Cup experience. Your hotel and flights are covered, your spending cash is in hand, and you might even get to watch your teenager carry a flag onto the field in front of thousands of fans. That’s a memory that sticks for life.
Not a grand prize winner? The First Prize tickets still mean front-row bragging rights to one of the most iconic sporting events in history. Even if you have to cover your own travel, being in the stands for a World Cup match is something most fans can only dream of.
And the FIFA Gear Pack? While it’s the smallest prize on paper, it’s the perfect way to bring the hype home. A FIFA-branded ball and official POWERADE bottle scream collector’s item energy. Whether you kick it around at the park, display it in your living room, or save it as sports memorabilia, it’s a tangible connection to the global event.
Q&A
Is this legitimate?
Yes. This sweepstakes is sponsored by BA Sports Nutrition, LLC (POWERADE’s parent under Coca-Cola) and run with 7-Eleven and Speedway. It’s administered by Don Jagoda Associates, a long-established sweepstakes administrator. You can always read the full official rules at powerade.com/soccer.
How many entries are allowed?
You can enter up to 35 times per person/email per day. That’s a huge volume compared to many sweepstakes.
Are there bonus entries?
Yes. Each purchase of a participating product with your 7REWARDS or Speedy Rewards account earns 7 entries. But if you use the website entry method (via QR code or directly at the link), you’ll score 35 entries in one shot—no purchase necessary.
How many prizes can you win?
The limit is one prize per person. So even if you hit the jackpot with entries, you can only take home one prize package.
#powerade-entryBox .shell{
background:#f5f9ff;
border:2px solid #00a3e0;
border-radius:22px;
padding:20px;
box-shadow:0 10px 28px rgba(0,0,0,.08);
}
#powerade-entryBox h3{
margin:6px 0 14px;
font-size:21px;
line-height:1.25;
color:#0b1b2b;
font-weight:900;
}
#powerade-entryBox .cta{
display:block;
text-align:center;
background:#00a3e0;
color:#fff;
text-decoration:none;
border-radius:14px;
padding:14px 18px;
font-weight:900;
border:2px solid #0b1b2b;
margin:16px auto;
max-width:420px;
}
#powerade-entryBox .cta:hover{ filter:brightness(1.05); }
#powerade-entryBox .grid{display:grid;grid-template-columns:1fr;gap:16px}
#powerade-entryBox .recap,
#powerade-entryBox .prizes{
background:#fff;
border:1px solid #e2e8f8;
border-radius:14px;
padding:14px;
}
#powerade-entryBox .prizes{ border-style:dashed; }
#powerade-entryBox .recap dl{
display:grid;
grid-template-columns:minmax(160px,220px) 1fr;
gap:8px 14px;
margin:6px 0;
}
#powerade-entryBox .recap dt{font-weight:800;color:#00a3e0}
#powerade-entryBox .recap dd{margin:0}
#powerade-entryBox .heroimg{
width:100%;
aspect-ratio:16/9;
border-radius:16px;
border:1px solid #d8e6fb;
background:radial-gradient(circle at 30% 30%, #e8f4ff, #d9ecff 45%, #cfe6ff 70%, #eaf4ff);
display:flex;align-items:center;justify-content:center;
color:#0b1b2b;font-weight:800;letter-spacing:.2px;
text-transform:uppercase;
}
#powerade-entryBox .fine{
font-size:12px; color:#3a5873; opacity:.95; margin-top:8px;
}
POWERADE® Sweepstakes at 7-Eleven — Official Entry
To enter without making a purchase, click below the picture where it says
“To enter without making a purchase, click here.”
CLICK HERE TO ENTER
Prize Breakdown
- Grand Prizes (2): Trip for winner + 1 to a Sponsor-specified FIFA World Cup™ 2026 game, incl. round-trip airfare, 3 nights hotel (dbl occ), $250 ground transportation digital gift card, two game tickets, and $1,000 spending money (digital gift card). Optional Flag Bearer experience for a guest age 13–17. ARV: $7,250 each.
- First Prizes (25): Two tickets to a Sponsor-specified FIFA World Cup™ 2026 game. No travel included. ARV: $300 each.
- Second Prizes (50): FIFA Gear Pack including one POWERADE squeeze bottle and one soccer ball. ARV: $45 each.
- Total Prize Pool ARV: $24,250.
Giveaway Recap
- Sponsor
- BA Sports Nutrition, LLC
- Administrator
- Don Jagoda Associates, Inc.
- Eligibility
- 50 U.S. & D.C.; 18+ and legal age of majority in state/jurisdiction
- Sweepstakes Period
- Aug 27, 2025 (12:00:01 am CT) – Oct 28, 2025 (11:59:59 pm CT)
- Entry Limit
- Up to 35 entries per person/email per day, regardless of method
- Methods
- No-purchase Website Method: complete the form at powerade.com/soccer for 35 entries/day. 7REWARDS/Speedy Rewards Purchase: buy any size Big Gulp® or Slurpee® (including POWERADE flavors) using your account to earn 7 entries/transaction.
- Prize Limit
- Limit one (1) prize per person
- Drawing
- On or about Oct 29, 2025; odds depend on number of eligible entries received
- Winner Notification
- Via email; Grand Prize winners must complete required documents within stated timeframes; First Prize tickets sent via email 1–3 days before game; Second Prizes ship in 4–6 weeks after verification
- Taxes
- Winners are responsible for taxes; Grand Prize winners will receive a 1099 for prize value
- Official Rules
- Review the Official Rules
Entry Tips
- Max your odds: use the no-purchase website method daily to grab the full 35 entries.
- Purchase entries count too: scan your 7REWARDS/Speedy Rewards with Big Gulp® or Slurpee® to add 7 entries per transaction.
- Keep an eye on email after Oct 29, 2025 for winner notifications.
Helpful Freebie Mom Guides
Keep going