Get Your Free Content!

To unlock the download, please complete the following steps. Your support helps me create more content!

// --- START: CUSTOMIZE YOUR VARIABLES HERE --- const soundcloudUrl = 'https://soundcloud.com/cassiohenrique'; const youtubeUrl = 'https://www.youtube.com/@cassiohenrique-official'; const instagramUrl = 'https://www.instagram.com/cassiohenriqueofc'; // <-- ADD THIS LINE const downloadFileUrl = 'https://cassiohenrique.com/path/to/your-file.zip'; // --- END: CUSTOMIZATION --- const soundcloudBtn = document.getElementById('soundcloudFollow'); const youtubeBtn = document.getElementById('youtubeFollow'); const instagramBtn = document.getElementById('instagramFollow'); // <-- ADD THIS LINE const downloadBtn = document.getElementById('downloadLink'); let isSoundcloudFollowed = false; let isYoutubeFollowed = false; let isInstagramFollowed = false; // <-- ADD THIS LINE // ... (soundcloudBtn and youtubeBtn code remains the same) ... // Add click event listener for the Instagram button if (instagramBtn) { // <-- COPY AND PASTE THIS ENTIRE BLOCK instagramBtn.addEventListener('click', function(e) { e.preventDefault(); if (!isInstagramFollowed) { window.open(instagramUrl, '_blank'); isInstagramFollowed = true; this.classList.add('completed'); this.querySelector('.elementor-button-text').innerText = '✔️ Instagram Followed'; checkCompletion(); } }); } function checkCompletion() { // UPDATE THIS LINE to include the new condition if (isSoundcloudFollowed && isYoutubeFollowed && isInstagramFollowed) { console.log('All steps completed. Unlocking download.'); downloadBtn.classList.remove('disabled'); downloadBtn.href = downloadFileUrl; } }