Zig-Zag 420 Sweepstakes: Win Free Uber Eats in 2025-2026
Countdown to Sweepstakes End
window.onload = function(){
const endDate = new Date(“April 19, 2026 23:59:59”).getTime();
const countdownEl = document.getElementById(“countdown”);
function updateCountdown(){
let now = new Date().getTime();
let distance = endDate – now;
if(distance < 0){
countdownEl.innerHTML = "Ended";
return;
}
let days = Math.floor(distance / (1000*60*60*24));
let hours = Math.floor((distance % (1000*60*60*24)) / (1000*60*60));
let minutes = Math.floor((distance % (1000*60*60)) / (1000*60));
let seconds = Math.floor((distance % (1000*60)) / 1000);
countdownEl.innerHTML = days + "d " + hours + "h " + minutes + "m " + seconds + "s ";
}
updateCountdown(); // run once instantly
setInterval(updateCountdown, 1000); // update every second
}
Zig-Zag 420 Sweepstakes
Enter once for a chance to win FREE Uber Eats ($42 daily) all year long.
const facts = [
“One entry covers the entire year!”,
“365 winners total — one each day.”,
“$42 Uber Eats code up for grabs daily.”,
“Limit one prize per household.”,
“Not instant win — daily drawings only.”,
“We are here… enter below!” // ✅ Final message
];
let factIndex = 0;
function showToast(msg){
let toast = document.getElementById(“toast”);
toast.innerHTML = msg;
toast.style.display = “block”;
setTimeout(()=>{ toast.style.display=”none”; }, 3000);
}
function startScroll(){
let box3 = document.getElementById(“box3”);
let target = box3.getBoundingClientRect().top + window.pageYOffset;
let start = window.pageYOffset;
let distance = target – start;
let duration = 20000; // ✅ 20 seconds
let startTime = null;
// Rotate facts every 4s
let popupInterval = setInterval(()=>{
if(factIndex < facts.length – 1){ // all but last
showToast(facts[factIndex]);
factIndex++;
} else {
clearInterval(popupInterval);
}
}, 4000);
function scrollAnim(currentTime){
if(!startTime) startTime=currentTime;
let timeElapsed = currentTime – startTime;
let progress = Math.min(timeElapsed / duration, 1);
// Ease for smoother feel
let ease = progress<0.5 ? 2*progress*progress : -1+(4-2*progress)*progress;
let run = start + distance * ease;
window.scrollTo(0, run);
if(timeElapsed < duration){
requestAnimationFrame(scrollAnim);
} else {
// ✅ Snap exactly to Box3
window.scrollTo({ top: target, behavior: "auto" });
// ✅ Show final toast
showToast("We are here… enter below!");
// ✅ Trigger confetti if available
if(typeof launchConfetti === "function"){ launchConfetti(); }
}
}
requestAnimationFrame(scrollAnim);
}
What if I told you Zig-Zag is giving away free Uber Eats every day for an entire year? That’s right — the Zig-Zag 420 Sweepstakes is here, and it’s loaded with food-money prizes that could turn your late-night cravings into guilt-free Uber Eats orders.
This isn’t just some random promo. It’s a legit sweepstakes running from April 20, 2025 to April 19, 2026, with a total prize pool worth $15,330. Every single day, one lucky winner gets a $42 Uber Eats code — just enough for tacos, pad thai, or that extra side of fries you usually skip.
But before you get hyped, let’s clear up the confusion: this is not an instant win game and it’s also not a daily entry sweepstakes. You only get one entry total for the entire period. If you’ve seen the flashy tagline saying “Free Food Every Day at 4:20PM,” that’s marketing, not the actual rules. The official sweepstakes documents spell out exactly how this works, and we’ve broken it down below so you know exactly what you’re signing up for.
Prize Breakdown
Here’s what’s on the table if you win the Zig-Zag 420 Sweepstakes:
- Grand Prize (Daily Winners): A $42 Uber Eats e-gift code delivered digitally via email or mobile.
- Number of Winners: Up to 365 winners total — one per day for an entire year.
- Prize Restrictions: Only one prize per household across the entire sweepstakes. Plus, no more than 115 winners in Florida or New York, no matter how many people enter.
- Total Prize Value: $15,330 across all daily prizes.
There are no bigger or tiered prizes here — every winner gets the same reward. The beauty of this one is in the volume: Zig-Zag is actually awarding up to 365 winners, which is more than most sweepstakes out there.
What You Can Do With the Prize if You Win
Let’s be honest: $42 on Uber Eats is a sweet spot. It’s not just a snack budget — it’s “treat yourself” money. Here’s how you could flex that prize if your name gets drawn:
- Dinner for Two: Cover sushi for you and your roommate, plus miso soup, and still sneak in dessert.
- Late-Night Feast: Think Domino’s pizza, cheesy bread, and a 2-liter. Done.
- Grocery Fill-In: Plenty of people forget Uber Eats now delivers groceries. That $42 could stock your fridge with snacks and essentials.
- Solo Indulgence: No judgment here — wings, fries, and a milkshake all to yourself.
Who is this sweepstakes for? Anyone who loves free food (so basically everyone), but especially:
- College students running on ramen.
- Busy parents who need a break from cooking.
- Night owls scrolling Uber Eats at midnight.
- Foodies who never say no to free delivery credit.
And let’s not ignore the cultural wink here — Zig-Zag timed this sweepstakes around “420” branding, so it’s basically designed for people who love munchies. The Uber Eats code is a perfect fit for that crowd.
Q&A
Is this legitimate?
Yes. The Zig-Zag 420 Sweepstakes is officially sponsored by Zig-Zag Rolling Papers and administered by Million Dollar Media, a well-known sweepstakes management firm. It’s governed by U.S. sweepstakes laws, with full rules and disclosures available online.
How many entries are allowed?
One entry per person/email for the entire sweepstakes period. This is not a daily entry sweepstakes. Once you’ve entered, you’re in the pool for the entire year of daily drawings.
Are there bonus entries?
No. There are no bonus entries for sharing, referring friends, or making a purchase. In fact, the rules are very clear: “No purchase necessary. Making a purchase does not improve chances of winning.”
How many prizes can you win?
Only one prize per household. Even if multiple people in your household enter, you can only win once total.
Is it an instant win game?
No. Winners are selected by daily random drawings conducted by the administrator. You won’t know right after entering — instead, winners are contacted by phone or email within 48 hours of being drawn.
How to Enter the Zig-Zag 420 Sweepstakes
Prizes: 365 winners total, each receives a $42 Uber Eats e-gift code. Total ARV: $15,330.
Entry Frequency: One-time entry only. You’re in the pool for all daily drawings once you enter.
Eligibility: U.S. residents, 21+. Limit one prize per household.
➡ Enter at ZigZagOffers.com
const confettiCanvas = document.getElementById(‘confetti-canvas’);
const ctx = confettiCanvas.getContext(‘2d’);
confettiCanvas.width = window.innerWidth;
confettiCanvas.height = window.innerHeight;
let pieces = [];
function initConfetti(){
pieces=[];
for(let i=0;i{
ctx.beginPath();
ctx.arc(p.x,p.y,p.r,0,Math.PI*2);
ctx.fillStyle=p.color;
ctx.fill();
});
updateConfetti();
}
function updateConfetti(){
pieces.forEach(p=>{
p.y += p.d;
if(p.y > confettiCanvas.height){
p.y = -10;
p.x = Math.random()*confettiCanvas.width;
}
});
}
function animateConfetti(){
drawConfetti();
requestAnimationFrame(animateConfetti);
}
// ✅ Launch function (called from Box 2 once arrived at Box 3)
function launchConfetti(){
initConfetti();
animateConfetti();
setTimeout(()=>{pieces=[];}, 8000); // stop after 8s
}
Helpful Freebie Mom Guides
Keep going