Sweeps

New Year, Richer You? Win Big!

View saved
How does this find feel?

New Year, Richer You? Win $20,000 Cash in the Blue Diamond Sweepstakes

/* — GLOBAL STYLES (Blue Diamond Theme) — */
:root {
–primary: #005eb8; /* Blue Diamond Brand Blue */
–secondary: #111111; /* Black */
–accent: #76c043; /* Fresh Green */
–gray: #f4f8fb;
–text: #333;
–alert: #e3f2fd;
}

body { margin: 0; padding: 0; box-sizing: border-box; background: #fff; }

/* Main Container */
.lp-container {
font-family: ‘Helvetica Neue’, Helvetica, Arial, sans-serif;
line-height: 1.7;
color: var(–text);
max-width: 880px;
margin: 20px auto;
padding: 0 15px;
overflow-x: hidden;
font-size: 19px;
}

/* IMAGE STYLE */
.lp-featured-img {
width: 100%;
max-width: 700px;
height: auto;
display: block;
margin: 40px auto;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* HEADLINES */
.lp-h1 {
font-size: 2.6rem;
font-weight: 800;
line-height: 1.1;
color: var(–secondary);
margin-bottom: 20px;
text-align: center;
letter-spacing: -0.5px;
}

.lp-meta {
text-align: center;
font-size: 13px;
color: #888;
text-transform: uppercase;
font-weight: 700;
letter-spacing: 1px;
margin-bottom: 40px;
border-bottom: 2px solid #eee;
padding-bottom: 20px;
}

.lp-h2 {
font-size: 2rem;
font-weight: 700;
color: var(–secondary);
margin-top: 50px;
margin-bottom: 20px;
border-left: 5px solid var(–primary);
padding-left: 20px;
}

.lp-p { margin-bottom: 25px; font-size: 1.05rem; }

/* CALLOUT BOXES */
.alert-box {
background: var(–alert);
border: 1px solid #bbdefb;
border-radius: 8px;
padding: 25px;
margin: 35px 0;
color: #0d47a1;
font-size: 1em;
font-weight: 500;
}

.upc-box {
background-color: #f0f4c3;
border: 2px dashed #76c043;
padding: 20px;
border-radius: 10px;
margin: 20px 0;
font-family: monospace;
font-size: 18px;
color: #333;
text-align: center;
}

/* GIVEAWAY SECTION STYLES */
#sweeps-box {
margin-top: 80px;
background: #fff;
border: 4px solid var(–primary);
border-radius: 20px;
padding: 50px 20px;
box-shadow: 0 20px 60px rgba(0, 94, 184, 0.15);
text-align: center;
scroll-margin-top: 50px;
position: relative;
overflow: hidden;
}

/* Striped Bar */
#sweeps-box::before {
content: “”;
position: absolute; top:0; left:0; right:0; height: 15px;
background: repeating-linear-gradient(
45deg,
var(–primary),
var(–primary) 10px,
var(–accent) 10px,
var(–accent) 20px
);
}

#sweeps-box h3 {
font-size: 34px;
font-weight: 800;
color: var(–secondary);
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: -1px;
}

/* PRIZE LIST inside box */
.prize-list {
text-align: left;
background: var(–gray);
padding: 30px;
border-radius: 12px;
margin: 30px auto;
max-width: 550px;
border: 1px solid #dcebf7;
}
.prize-item { display: flex; align-items: flex-start; margin-bottom: 15px; font-size: 18px; font-weight: 600; color: #444; }
.prize-icon { margin-right: 15px; color: var(–primary); font-size: 22px;}
.highlight-blue { color: var(–primary); font-weight: 800; }

/* TIMER */
#sweeps-timer {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
margin-bottom: 30px;
max-width: 400px;
margin-left: auto;
margin-right: auto;
}
#sweeps-timer .cell {
background: var(–secondary);
border-radius: 8px;
padding: 10px;
color: #fff;
}
#sweeps-timer .num { font-size: 32px; font-weight: 700; line-height: 1; color: #fff; }
#sweeps-timer .lbl { font-size: 10px; text-transform: uppercase; margin-top: 5px; color: #bbb; }

/* ENTER BUTTON */
#final-enter {
display: block;
background: var(–primary);
color: #fff;
font-size: 22px;
font-weight: 800;
padding: 22px 30px;
border-radius: 50px;
text-decoration: none;
margin: 20px auto;
max-width: 500px;
box-shadow: 0 10px 20px rgba(0, 94, 184, 0.3);
transition: transform 0.1s;
text-transform: uppercase;
letter-spacing: 0.5px;
animation: pulse 2s infinite;
}
#final-enter:active { transform: scale(0.98); }
#final-enter:hover { background: #004485; }

@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.02); }
100% { transform: scale(1); }
}

/* OVERLAY & POPUP */
#sweeps-overlay {
position: fixed; inset: 0; background: rgba(25, 25, 25, 0.96);
display: flex; align-items: center; justify-content: center;
z-index: 99999;
cursor: pointer;
}
#sweeps-overlay .box {
background: #fff;
border-bottom: 6px solid var(–primary);
border-radius: 12px;
padding: 45px;
width: 90%; max-width: 450px;
text-align: center;
cursor: default;
box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
#sweeps-start {
background: var(–primary); color: #fff;
font-size: 20px; font-weight: 800; border: none;
padding: 18px 40px; border-radius: 50px; cursor: pointer;
margin-top: 25px; width: 100%;
text-transform: uppercase;
box-shadow: 0 5px 15px rgba(0, 94, 184, 0.3);
transition: background 0.3s;
}
#sweeps-start:hover { background: #004485; }

/* Floating Popup Toast */
#sweeps-popup {
display: none; position: fixed; top: 50%; left: 50%;
transform: translate(-50%, -50%);
background: #fff; padding: 30px; border-radius: 12px;
box-shadow: 0 20px 50px rgba(0,0,0,0.5);
z-index: 9998; font-size: 22px; font-weight: 800;
color: var(–secondary); text-align: center; border: 3px solid var(–primary);
width: 80%; max-width: 380px;
}

.close-hint { font-size: 13px; color: #999; margin-top: 20px; }

canvas#sweeps-confetti { position: fixed; inset: 0; pointer-events: none; z-index: 9997; display: none; }

WANT $20,000? 💰

Start the New Year with a massive cash prize. We have the secret UPC codes you need to enter for free.

(Click outside to cancel & read article)

New Year, Richer You? Win $20,000 Cash in the Blue Diamond Sweepstakes

December 22, 2025 · Money Saving · Sweepstakes · News

Blue Diamond New Year New You Sweepstakes

It is December 22nd. If your house is anything like mine, you are currently existing in that weird limbo between Christmas and New Year’s where time doesn’t exist, and your main food group is “leftover cookies.”

We all start thinking about resolutions right about now. “New Year, New Me,” right? Usually, that means joining a gym we won’t go to or promising to stop drinking Starbucks. But Blue Diamond has a different idea for 2026.

Their version of “New Year, New You” involves giving you $20,000 in cash for a “Wardrobe Makeover.”

I don’t know about you, but for $20k, I will reinvent my entire life, not just my wardrobe! And the best part? There are over 3,000 winners in this sweepstakes, which gives us amazing odds compared to the usual lotteries.

⚠️ THE STRATEGY:
This sweepstakes requires a UPC code to enter. You do NOT have to buy the product. I have listed the valid codes below so you can copy/paste and enter for free!

1. The “Secret” Codes (Enter for Free)

The rules state you need a UPC from any Blue Diamond product 1.5oz or larger. You don’t need to run to the store. Just use one of these codes I pulled from my pantry:

Use Any of These Codes:

041570130605

Simply copy one of those numbers, head to the entry site (link at the bottom), and paste it in. You can do this once every single day!

2. The Prizes: Not Just the Big One

While we are all aiming for that $20,000 Grand Prize (sent via PayPal!), Blue Diamond is actually being really generous with the secondary prizes.

  • Grand Prize (1 Winner): $20,000 Cash (labeled as a Wardrobe Makeover).
  • First Prize (1,500 Winners): A $20 Digital Gift Card to a clothing retailer.
  • Second Prize (1,500 Winners): A free can of Blue Diamond Almonds.

That is 3,001 total winners. Winning a $20 gift card is a nice little post-holiday pick-me-up, and with that many prizes, your chances are solid if you enter daily.

3. Entry Frequency

You can enter once per day until April 30, 2026. My advice? Set a daily alarm on your phone for “Freebie Time.” It takes 10 seconds to enter, and consistency is how people actually win these things.

4. Ready to Win?

Stop doom-scrolling and go enter! I’ve put the direct link and all the details in the box below. Good luck, and if you win the $20k, I expect a thank you card (or at least a shoutout)!

Blue Diamond Prize

NEW YEAR NEW YOU SWEEPS

Sponsored by Blue Diamond

🏆 Grand Prize: $20,000 Cash
💳 (1,500) $20 Clothing Gift Cards
🥜 (1,500) Free Product Coupons
📅 Enter Daily w/ UPC Code

Days
Hours
Mins
Secs

(Ends April 30, 2026)

CLICK TO ENTER NOW

(Use UPC: 041570130605)

*NO PURCHASE NECESSARY. Open to legal residents of the 50 US/DC, 18+. Begins 12/15/25 and ends 4/30/26. To enter without purchase, see Official Rules for mail-in method. Grand Prize awarded as $20k cash. Sponsored by Blue Diamond Growers.

document.addEventListener(“DOMContentLoaded”,()=>{
const overlay = document.getElementById(“sweeps-overlay”);
const startBtn = document.getElementById(“sweeps-start”);
const popup = document.getElementById(“sweeps-popup”);
const confetti = document.getElementById(“sweeps-confetti”);
const targetBox = document.getElementById(“sweeps-box”);
const overlayBox = overlay.querySelector(‘.box’);

// VARIABLES FOR STOPPING ANIMATION
let isScrolling = false;
let activeTimeouts = [];

// TIMER: ENDS APRIL 30, 2026 at 11:59PM ET
const end = new Date(“2026-05-01T00:00:00-04:00”).getTime();

setInterval(()=>{
let t = end – Date.now(); if(t<0)t=0;
let d=Math.floor(t/86400000), h=Math.floor(t%86400000/3600000),
m=Math.floor(t%3600000/60000), s=Math.floor(t%60000/1000);
document.getElementById("d").innerText=d<10?"0"+d:d;
document.getElementById("h").innerText=h<10?"0"+h:h;
document.getElementById("m").innerText=m<10?"0"+m:m;
document.getElementById("s").innerText=s {
if (e.target === overlay) {
overlay.style.display = “none”;
}
});

overlayBox.addEventListener(“click”, (e) => {
e.stopPropagation();
});

// EMERGENCY STOP FUNCTION
function stopEverything() {
if (!isScrolling) return; // Only run if currently animating
isScrolling = false;

// Clear all future popups
activeTimeouts.forEach(id => clearTimeout(id));
activeTimeouts = [];

// Hide current popup
popup.style.display = “none”;
}

// LISTEN FOR USER INTERACTION TO STOP SCROLL
[‘mousedown’, ‘wheel’, ‘touchstart’].forEach(evt =>
window.addEventListener(evt, stopEverything, {passive: true})
);

// CONFETTI SCRIPT
function fireConfetti(){
const c=confetti, ctx=c.getContext(“2d”);
c.width=window.innerWidth; c.height=window.innerHeight; c.style.display=”block”;
let p=[];
for(let i=0;i{
ctx.fillStyle=part.color;
ctx.fillRect(part.x, part.y, 8, 8);
part.x+=part.vx; part.y+=part.vy; if(part.y>c.height) part.y=-10;
});
requestAnimationFrame(draw);
}
draw();
}

// START BUTTON CLICK
startBtn.addEventListener(“click”, ()=>{
overlay.style.display=”none”;
fireConfetti();
isScrolling = true;

// POPUP MESSAGES
const facts = [
“WIN $20,000 CASH! 💰”,
“3,000+ Winners!”,
“Free Codes Inside”,
“Enter Below 👇”,
“Enter Daily!”,
“Good Luck!”
];

facts.forEach((txt, i) => {
let tId = setTimeout(() => {
if (!isScrolling) return; // Don’t show if stopped
popup.innerText = txt;
popup.style.display = “block”;
let hId = setTimeout(() => popup.style.display=”none”, 4500);
activeTimeouts.push(hId);
}, i * 5000);
activeTimeouts.push(tId);
});

// SLOW SCROLL
setTimeout(() => {
if (!isScrolling) return;
const startY = window.pageYOffset || document.documentElement.scrollTop;
const targetY = targetBox.getBoundingClientRect().top + startY – 20;
const distance = targetY – startY;

const duration = 30000;
let startTime = null;

function loop(currentTime) {
if (!isScrolling) return; // STOP if flag is false
if (!startTime) startTime = currentTime;
const timeElapsed = currentTime – startTime;
const run = linearTween(timeElapsed, startY, distance, duration);
window.scrollTo(0, run);
if (timeElapsed < duration) requestAnimationFrame(loop);
}

function linearTween(t, b, c, d) {
return c * t / d + b;
}

requestAnimationFrame(loop);
}, 1500);
});
});

Helpful Freebie Mom Guides

Keep going

More Freebie Mom guides worth checking

Instant Win GamesQuick plays, fast prizes, and daily chances.Best Sweepstakes to Enter TodayStart with the strongest current prizes.Sweepstakes DatabaseSearch active sweeps by prize, deadline, and entry type.