The Switchmas Free Game Chain
#snow-container {
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
pointer-events: none; z-index: 9999;
}
.snowflake {
position: fixed;
top: -10px;
color: white;
opacity: 0.8;
font-size: 14px;
animation-name: snowfall;
animation-timing-function: linear;
}
@keyframes snowfall {
0% {transform: translateY(0);}
100% {transform: translateY(110vh);}
}
(function createSnow(){
const container = document.getElementById(“snow-container”);
for(let i=0;i<80;i++){
let flake=document.createElement("div");
flake.className="snowflake";
flake.innerHTML="•";
flake.style.left=Math.random()*100+"%";
flake.style.fontSize=(10+Math.random()*14)+"px";
flake.style.animationDuration=(4+Math.random()*8)+"s";
flake.style.animationDelay=(Math.random()*8)+"s";
container.appendChild(flake);
}
})();
The Switchmas Free Game Chain Begins Soon
The first free Nintendo Switch title unlocks exactly at midnight on December 12 — stay ready and stay in the chain.
const targetDate = new Date(“December 12, 2025 00:00:00 PST”).getTime();
setInterval(function(){
const now = new Date().getTime();
const diff = targetDate – now;
if(diff <= 0){
document.getElementById("countdown").innerHTML = "The event is live!";
return;
}
const d = Math.floor(diff/(1000*60*60*24));
const h = Math.floor((diff%(1000*60*60*24))/(1000*60*60));
const m = Math.floor((diff%(1000*60*60))/(1000*60));
const s = Math.floor((diff%(1000*60))/1000);
document.getElementById("countdown").innerHTML =
d+"d "+h+"h "+m+"m "+s+"s";
},1000);
How the Daily Free Game Chain Actually Works
Switchmas is built on a simple rule: each day’s free game requires that you already claimed the one before it.
Skip a day and the chain breaks — but you can rejoin by purchasing the missed title at a steep discount.
To enter the event, your Nintendo account must own at least one No Gravity Games title. The fastest method is
signing up for their newsletter, grabbing a starter game for free, and adding it to your Nintendo library.
Daily Free Game Unlock Schedule
Each title becomes free at 12:00 AM PST and remains available for 24 hours.
FAQ
Why can’t I claim the free game?
Only North American-region accounts can redeem the titles. You must also own the previous game in the chain.
What if I miss a game?
Rejoin the chain by purchasing the missed game at a discount.
My code didn’t arrive.
Check spam and allow processing time. If still missing, email pr@nogravitygames.com.
window.addEventListener(“scroll”, function(){
const bar = document.getElementById(“floating-cta”);
if(window.scrollY > 600){
bar.style.bottom = “0”;
} else {
bar.style.bottom = “-80px”;
}
});
Helpful Freebie Mom Guides
Keep going