body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: ‘Arial’, sans-serif;
background: #ffffff;
display: flex;
justify-content: center;
align-items: center;
}
#quiz-container {
width: 100%;
max-width: 500px;
padding: 30px 20px;
box-sizing: border-box;
text-align: center;
border-radius: 15px;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
h1 {
font-size: 1.8em;
margin-bottom: 25px;
color: #333333;
}
p {
font-size: 1em;
color: #555555;
margin-bottom: 20px;
}
button {
width: 100%;
padding: 15px 0;
margin: 10px 0;
font-size: 1em;
border: none;
border-radius: 10px;
cursor: pointer;
transition: all 0.2s;
background-color: #ff4b2b;
color: #ffffff;
font-weight: bold;
}
button:hover {
background-color: #ff704b;
}
.hidden {
display: none;
}
🎮 Qual jogo você quer skins grátis? 🎁
✨ Qual recompensa você prefere? 💎
🚀 Quase lá!
Clique no botão abaixo para acessar sua recompensa agora 🏆
let selectedGame = ”;
function nextStep(step, game) {
if(game) selectedGame = game;
document.querySelectorAll(‘#quiz-container > div’).forEach(div => div.classList.add(‘hidden’));
if(step === 2) {
document.getElementById(‘step-2’).classList.remove(‘hidden’);
if(selectedGame === ‘roblox’) document.getElementById(‘roblox-options’).classList.remove(‘hidden’);
if(selectedGame === ‘csgo’) document.getElementById(‘csgo-options’).classList.remove(‘hidden’);
if(selectedGame === ‘freefire’) document.getElementById(‘freefire-options’).classList.remove(‘hidden’);
} else if(step === 3) {
document.getElementById(‘step-3’).classList.remove(‘hidden’);
}
}
document.getElementById(‘final-cta’).addEventListener(‘click’, function(){
if(selectedGame === ‘roblox’) {
window.location.href = ‘https://explorandoideias.com/uncategorized/como-conseguir-robux-gratis-no-roblox/’;
} else if(selectedGame === ‘csgo’) {
window.location.href = ‘https://explorandoideias.com/game/como-conquistar-csgo-skins-de-graca-guia-completo-e-simples/’;
} else if(selectedGame === ‘freefire’) {
window.location.href = ‘https://explorandoideias.com/uncategorized/codigos-de-skins-no-free-fire-lista-atualizada-para-resgatar-agora/’;
}
});