Nutricost ‘Back to School with Shaq’ Giveaway — Win $2,000+
#shaq-b1 .wrap{background:#ffffff; border:1px solid #e5e7eb; border-radius:18px; padding:22px; box-shadow:0 8px 30px rgba(2,6,23,.08)}
#shaq-b1 h2{margin:6px 0 4px; font-size:26px; font-weight:800; color:#0b1220}
#shaq-b1 .value{margin-top:10px; font-weight:700; font-size:18px}
#shaq-b1 .timer{display:flex; gap:10px; margin-top:14px}
#shaq-b1 .tbox{flex:1; background:#0b1220; color:#fff; border-radius:14px; padding:12px 8px; text-align:center}
#shaq-b1 .num{font-size:22px; font-weight:900}
#shaq-b1 .lbl{font-size:11px; opacity:.8}
#shaq-b1 .ended{display:none; margin-top:12px; font-weight:700; color:#b91c1c}
Nutricost Back to School with Shaq Giveaway
(function(){
const end = new Date(‘2025-09-22T23:59:00-06:00’).getTime();
const d=document.getElementById(‘shaq-d’),
h=document.getElementById(‘shaq-h’),
m=document.getElementById(‘shaq-m’),
s=document.getElementById(‘shaq-s’),
ended=document.getElementById(‘shaq-ended’);
function pad(n){return n<10?'0'+n:n}
function tick(){
const now=Date.now(); let diff=end-now;
if(diff<=0){d.textContent=h.textContent=m.textContent=s.textContent='00';ended.style.display='block';return}
const days=Math.floor(diff/86400000); diff%=86400000;
const hrs=Math.floor(diff/3600000); diff%=3600000;
const mins=Math.floor(diff/60000); diff%=60000;
const secs=Math.floor(diff/1000);
d.textContent=pad(days);h.textContent=pad(hrs);m.textContent=pad(mins);s.textContent=pad(secs);
}
tick(); setInterval(tick,1000);
})();
#shaq-b2x .card{background:#f8fafc;border:1px solid #e5e7eb;border-radius:22px;padding:28px;box-shadow:0 8px 30px rgba(2,6,23,.08)}
#shaq-b2x h3{font-size:24px;margin-bottom:12px;color:#0b1220}
#shaq-b2x .blurb{font-size:14px;color:#334155;margin-bottom:20px}
#shaq-b2x .cta{display:inline-block;margin:auto;padding:16px 28px;border-radius:999px;background:linear-gradient(90deg,#0ea5e9,#22d3ee);color:#fff;font-weight:800;font-size:18px;text-decoration:none;box-shadow:0 10px 20px rgba(14,165,233,.25)}
/* Centered popups: transparent backdrop, non-blocking for ads/clicks */
#shaq-b2x .overlay{
position:fixed; inset:0; display:none; align-items:center; justify-content:center;
z-index:99999; background:transparent; pointer-events:none;
}
#shaq-b2x .overlay.show{display:flex}
#shaq-b2x .toast{
pointer-events:none;
background:#ffffff; color:#0b1220; border:1px solid #e5e7eb; border-radius:14px;
padding:16px 18px; max-width:520px; width:calc(100vw – 32px);
box-shadow:0 16px 48px rgba(2,6,23,.18);
text-align:center; font-size:15px; line-height:1.45; font-weight:600;
animation:pop .25s ease;
}
#shaq-b2x .toast .hd{display:block; font-weight:900; font-size:14px; letter-spacing:.04em; text-transform:uppercase; margin-bottom:6px; color:#0f172a}
@keyframes pop{0%{transform:scale(.96);opacity:0}100%{transform:scale(1);opacity:1}}
/* Confetti canvas */
#shaq-b2x canvas.confetti{position:fixed; inset:0; pointer-events:none; z-index:99998}
Enter to Win the $2,000+ Back-to-School Bundle
(function(){
‘use strict’;
const BTN = document.getElementById(‘shaq-b2x-enter’);
const OV = document.getElementById(‘shaq-b2x-ov’);
const HD = document.getElementById(‘shaq-b2x-hd’);
const MSG = document.getElementById(‘shaq-b2x-msg’);
const DURATION_MS = 28000; // ~28s guided scroll
// Tip schedule (ms offsets before arrival). Last three land BEFORE reaching Box 3.
const TIP_SCHEDULE = [0, 6000, 11000, 16000, 21000]; // show at these elapsed times
const HIDE_AT = 27000; // hide tip ~1s before arrival
const ARRIVAL_AT = DURATION_MS + 100; // arrival toast time
const TIPS = [
“Plan your routine a week early — sleep, meals, rides dial in smoother first weeks.”,
“Protein at breakfast can improve focus during morning classes.”,
“Shared calendars for assignments & activities prevent last-minute scrambles.”,
“Weekly budgets for supplies/snacks keep spending in check.”,
“Noise-isolating headphones help maintain study focus in busy spaces.”
];
let timers = [];
function confettiBurst(durationMs=1100,count=160){
const c=document.createElement(‘canvas’); c.className=’confetti’; document.body.appendChild(c);
const ctx=c.getContext(‘2d’); let W,H;
function resize(){W=c.width=innerWidth;H=c.height=innerHeight;}
resize(); addEventListener(‘resize’,resize);
const parts=Array.from({length:count},()=>({x:Math.random()*W,y:-20-Math.random()*H*0.3,r:6+Math.random()*10,
vx:-1+Math.random()*2,vy:2+Math.random()*3,rot:Math.random()*Math.PI,vr:-0.2+Math.random()*0.4,
col:`hsl(${Math.floor(Math.random()*360)},90%,55%)`}));
const t0=performance.now();
(function frame(t){
const dt=(t-(frame.t||t))/16; frame.t=t; ctx.clearRect(0,0,W,H);
for(const p of parts){p.vy+=0.07;p.x+=p.vx*dt;p.y+=p.vy*dt;p.rot+=p.vr*dt;
ctx.save();ctx.translate(p.x,p.y);ctx.rotate(p.rot);
ctx.fillStyle=p.col;ctx.fillRect(-p.r/2,-p.r/2,p.r,p.r);ctx.restore();}
if(t-t0clearTimeout(t)); timers=[]; }
function scheduleTips(){
clearTimers();
// Show the timed tips
TIP_SCHEDULE.forEach((ms,i)=>{
timers.push(setTimeout(()=>{ show(TIPS[i % TIPS.length], false); }, ms));
});
// Hide just before arrival
timers.push(setTimeout(()=>{ hide(); }, HIDE_AT));
// Arrival toast + confetti
timers.push(setTimeout(()=>{
confettiBurst(1000,120);
show(“We’re there — time to enter below!”, true);
timers.push(setTimeout(hide, 2200));
}, ARRIVAL_AT));
}
function smoothScrollTo(el,ms){
// Temporarily disable native smooth scrolling that some themes add
const html = document.documentElement;
const prevScrollBehavior = html.style.scrollBehavior;
html.style.scrollBehavior = ‘auto’;
const start=window.scrollY||document.documentElement.scrollTop;
const end=el.getBoundingClientRect().top+start-8;
const ease=t=>t<.5?4*t*t*t:1-Math.pow(-2*t+2,3)/2;
const t0=performance.now();
(function step(t){
const p=Math.min(1,(t-t0)/ms);
window.scrollTo(0,start+(end-start)*ease(p));
if(p<1) requestAnimationFrame(step);
else html.style.scrollBehavior = prevScrollBehavior || '';
})(t0);
}
BTN.addEventListener('click',function(e){
e.preventDefault();
const target=document.getElementById('shaq-b3');
if(!target){ window.location.href=this.getAttribute('href'); return; }
confettiBurst(); // initial flair
scheduleTips(); // schedule the center popups
smoothScrollTo(target, DURATION_MS); // long guided scroll
}, {passive:false});
})();
Ever wondered what it would feel like to start a new school year with a $2,000+ upgrade in your corner? Nutricost, teaming up with none other than Shaquille O’Neal, is making that happen with their Back to School with Shaq Giveaway.
This isn’t some “win a notebook and pencil set” type of promotion—it’s a high-value sweepstakes with a bundle worth over $2,000. The kind of prize that could cover your tech refresh, your gym restart, or just that adulting list of “things you swear you’ll buy when you have extra cash.” Spoiler: it’s one winner only, and it’s a one-time entry sweepstakes.
Let’s break it down.
Prize Breakdown
Nutricost is putting up one monster prize:
- Back to School Bundle (Total Value: $2,000+)
The rules don’t publish a product-by-product list, but expect Nutricost to pack this with wellness, nutrition, and lifestyle gear. Think premium supplements, fitness essentials, and possibly tech or school-year necessities to make that “back to school” feel a little more VIP.
There’s no tier of winners here—it’s one bundle, one winner, and bragging rights that you started your semester with Shaq in your corner.
What You Can Do If You Win
A $2,000+ bundle can change your whole back-to-school vibe. Here’s where it gets fun:
- Parents: Cover sports equipment, tutoring, and health supplies without draining your savings.
- College Students: Imagine upgrading your dorm setup, loading your shelves with Nutricost fuel, and finally splurging on that laptop or headphones.
- Teachers & Coaches: Stock up on classroom wellness products, gym gear, or just reward yourself for surviving another back-to-school grind.
The flexibility is the best part: it’s a curated bundle, but that $2,000+ valuation means Nutricost isn’t skimping. Whoever wins won’t just get “back to school ready”—they’ll get leveled up.
Q&A
Is this legitimate?
Yes. This sweepstakes is sponsored directly by Nutricost, a major supplement brand. You can review the full
How many entries are allowed?
This is a one-time entry sweepstakes. Limit one per person/email/household.
Are there bonus entries?
No. There are no referrals, no daily plays, and no bonus tasks. One email = one shot.
How many prizes can you win?
Only one prize will be awarded: the $2,000+ back-to-school bundle.
/* ========== THEME PRIMITIVES ========== */
#shaq-b3 { –bg:#0a0f1a; –glass:rgba(255,255,255,0.08); –stroke:rgba(255,255,255,0.18);
–muted:#cbd5e1; –ink:#eef2ff; –accent:#38bdf8; –accent2:#a78bfa; –accent3:#22d3ee; }
#shaq-b3 * { box-sizing: border-box; }
/* Background aura + floating shapes */
#shaq-b3 .stage{
position:relative; overflow:hidden; border-radius:28px; padding:28px;
background: radial-gradient(1200px 600px at -10% -20%, rgba(56,189,248,.25), transparent 60%),
radial-gradient(900px 500px at 110% 10%, rgba(167,139,250,.22), transparent 60%),
linear-gradient(180deg,#0b1220 0%,#09101b 100%);
border:1px solid #1f2a44; box-shadow:0 20px 60px rgba(2,6,23,.35), inset 0 0 0 1px rgba(255,255,255,.05);
}
#shaq-b3 .floaty{ position:absolute; inset:auto; filter:blur(0.2px); opacity:.25; pointer-events:none; }
#shaq-b3 .f1{ width:220px; height:220px; left:-60px; top:-40px; background:radial-gradient(circle at 30% 30%, #60a5fa, transparent 55%);
animation: drift1 16s linear infinite; }
#shaq-b3 .f2{ width:180px; height:180px; right:-40px; bottom:-30px; background:radial-gradient(circle at 60% 60%, #22d3ee, transparent 55%);
animation: drift2 18s linear infinite; }
@keyframes drift1 { 0%{transform:translate(0,0) rotate(0)} 100%{transform:translate(20px,10px) rotate(360deg)} }
@keyframes drift2 { 0%{transform:translate(0,0) rotate(0)} 100%{transform:translate(-18px,-12px) rotate(-360deg)} }
/* Header band */
#shaq-b3 .hdr{
display:flex; flex-wrap:wrap; gap:12px; align-items:center; justify-content:center; margin-bottom:18px;
color:var(–ink);
}
#shaq-b3 .tag{
font-size:12px; letter-spacing:.08em; text-transform:uppercase; font-weight:900;
padding:8px 12px; border-radius:999px; background:linear-gradient(90deg,var(–accent),var(–accent3)); color:#001018;
box-shadow:0 8px 22px rgba(34,211,238,.25);
}
#shaq-b3 .title{
width:100%; font-size:22px; font-weight:900; line-height:1.2; color:var(–ink);
text-shadow:0 1px 0 rgba(255,255,255,.05);
}
#shaq-b3 .subtitle{ font-size:14px; color:var(–muted) }
/* Glass panel with shine */
#shaq-b3 .panel{
position:relative; margin-top:16px; padding:18px;
background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
border:1px solid var(–stroke); border-radius:18px; backdrop-filter:blur(8px);
}
#shaq-b3 .shine{
position:absolute; inset:0; background:
linear-gradient(120deg, rgba(255,255,255,.0) 30%, rgba(255,255,255,.12) 50%, rgba(255,255,255,0) 70%);
transform:translateX(-100%); pointer-events:none; border-radius:18px; filter:blur(.3px);
animation: shine 7s ease-in-out infinite;
}
@keyframes shine { 0%,12%{transform:translateX(-100%)} 26%{transform:translateX(100%)} 100%{transform:translateX(100%)} }
/* Info grid */
#shaq-b3 .grid{
display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:10px;
}
@media (max-width:900px){ #shaq-b3 .grid{grid-template-columns:1fr 1fr} }
@media (max-width:620px){ #shaq-b3 .grid{grid-template-columns:1fr} }
#shaq-b3 .item{
position:relative; padding:14px; border-radius:14px; background:var(–glass); border:1px solid var(–stroke);
color:var(–muted); text-align:left; overflow:hidden;
}
#shaq-b3 .item .hd{ font-size:12px; letter-spacing:.08em; text-transform:uppercase; font-weight:900; color:#e2e8f0; margin-bottom:6px }
#shaq-b3 .item b{ color:#e5f2ff }
#shaq-b3 .item:hover{ box-shadow:0 10px 28px rgba(56,189,248,.12), inset 0 0 0 1px rgba(56,189,248,.25); transform:translateY(-1px); transition:all .18s ease }
/* CTA — centered, chunky, with pulse halo */
#shaq-b3 .cta-wrap{ margin:22px 0 8px; display:flex; align-items:center; justify-content:center }
#shaq-b3 .cta{
display:inline-flex; align-items:center; justify-content:center; gap:10px;
padding:16px 28px; border-radius:999px; font-weight:900; font-size:18px; text-decoration:none;
background:linear-gradient(90deg,var(–accent),var(–accent2)); color:#001018;
box-shadow:0 16px 40px rgba(56,189,248,.35);
position:relative; isolation:isolate;
}
#shaq-b3 .cta::after{
content:””; position:absolute; inset:-6px; border-radius:999px;
background: radial-gradient(60% 60% at 50% 50%, rgba(56,189,248,.25), transparent 60%);
animation:pulse 2.2s ease-in-out infinite; z-index:-1;
}
@keyframes pulse { 0%,100%{opacity:.45; transform:scale(.97)} 50%{opacity:.9; transform:scale(1)} }
#shaq-b3 .cta:hover{ transform:translateY(-1px); box-shadow:0 22px 50px rgba(56,189,248,.45); transition:all .12s ease }
/* Fine print */
#shaq-b3 .fine{ color:#9fb0c7; font-size:12px; margin-top:12px }
/* Overlay toast (center) */
#shaq-b3 .overlay{ position:fixed; inset:0; display:none; align-items:center; justify-content:center; z-index:99999; backdrop-filter:blur(6px) }
#shaq-b3 .toast{
width:min(92vw,560px); background:#0b1220; border:1px solid #23304d; border-radius:16px; padding:18px 20px; color:#e6f1ff;
box-shadow:0 24px 80px rgba(0,0,0,.5);
}
#shaq-b3 .toast h4{ margin:0 0 6px; font-size:16px; font-weight:900 }
#shaq-b3 .toast p{ margin:0; font-size:14px; color:#cbd5e1 }
#shaq-b3 .toast .row{ display:flex; gap:10px; justify-content:flex-end; margin-top:14px }
#shaq-b3 .toast button{
background:#16a34a; color:#fff; border:none; padding:10px 14px; border-radius:999px; font-weight:800; cursor:pointer
}
#shaq-b3 .toast .ghost{ background:#374151 }
/* Confetti canvas */
#shaq-b3 canvas.confetti{ position:fixed; inset:0; pointer-events:none; z-index:99998 }
(function loadAds(){
if(!window.__adsbygoogleLoaded){
var s=document.createElement(‘script’);
s.async=true; s.src=”https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1453338770643188″;
s.crossOrigin=”anonymous”;
document.currentScript.parentNode.insertBefore(s, document.currentScript);
window.__adsbygoogleLoaded = true;
}
})();
window.adsbygoogle = window.adsbygoogle || [];
try{ window.adsbygoogle.push({}); }catch(e){}
(function(){
const cta = document.getElementById(‘shaq3-cta’);
const ov = document.getElementById(‘shaq3-ov’);
const closeBtn = document.getElementById(‘shaq3-close’);
const openBtn = document.getElementById(‘shaq3-open’);
const targetURL = cta.getAttribute(‘href’);
function confettiBurst(durationMs=1200, count=170){
const c=document.createElement(‘canvas’); c.className=’confetti’; document.body.appendChild(c);
const ctx=c.getContext(‘2d’); let W,H;
function resize(){ W=c.width=innerWidth; H=c.height=innerHeight; }
resize(); addEventListener(‘resize’,resize);
const parts = Array.from({length:count}, ()=>({
x: Math.random()*W, y: -20 – Math.random()*H*0.3,
r: 6+Math.random()*10, vx: -1+Math.random()*2, vy: 2+Math.random()*3,
rot: Math.random()*Math.PI, vr: -0.2+Math.random()*0.4,
col: `hsl(${Math.floor(Math.random()*360)},90%,55%)`
}));
const t0=performance.now();
(function frame(t){
const dt=(t-(frame.t||t))/16; frame.t=t;
ctx.clearRect(0,0,W,H);
for(const p of parts){
p.vy+=0.07; p.x+=p.vx*dt; p.y+=p.vy*dt; p.rot+=p.vr*dt;
ctx.save(); ctx.translate(p.x,p.y); ctx.rotate(p.rot);
ctx.fillStyle=p.col; ctx.fillRect(-p.r/2,-p.r/2,p.r,p.r); ctx.restore();
}
if(t-t0<durationMs) requestAnimationFrame(frame); else{
removeEventListener('resize',resize); c.remove();
}
})(0);
}
function openOfficial(){
window.open(targetURL, '_blank', 'noopener');
}
cta.addEventListener('click', function(e){
// open immediately to dodge popup blockers; then run flair
openOfficial();
// visual flair
confettiBurst(1200, 170);
ov.style.display='flex';
});
closeBtn.addEventListener('click', function(){ ov.style.display='none'; });
openBtn.addEventListener('click', function(){
openOfficial();
confettiBurst(900, 120);
});
})();
Helpful Freebie Mom Guides
Keep going