diff --git a/index.html b/index.html
index 7438a49..e82e91b 100644
--- a/index.html
+++ b/index.html
@@ -18,7 +18,7 @@
@@ -91,10 +126,17 @@
Complete Tasks to Boost Mining Rate
-
-
Daily Rewards
-
-
+
+
Daily Rewards
+
+
Day 1: 100 CosmicCoin
+
Day 2: 200 CosmicCoin
+
Day 3: 300 CosmicCoin
+
Day 4: 400 CosmicCoin
+
Day 5: 500 CosmicCoin
+
Day 6: 600 CosmicCoin
+
Day 7: 700 CosmicCoin
+
Referral Program
@@ -208,7 +250,19 @@ Wallet
localStorage.setItem('balance', currentBalance + 15); // Daily reward amount
updateBalanceDisplay();
}
-
+ // Tasks button event listeners
+ const tasks = document.querySelectorAll('.task-button');
+ tasks.forEach((taskButton, index) => {
+ taskButton.addEventListener('click', () => {
+ let reward = (index + 1) * 100;
+ cosmicBalance += reward;
+ balanceDisplay.textContent = `${cosmicBalance} CosmicCoin`;
+ taskButton.disabled = true;
+ taskButton.textContent = "Task Completed";
+ notifyUser(`You earned ${reward} CosmicCoin!`);
+ });
+ });
+
function inviteFriend() {
alert('Invite sent!');
// Add logic for inviting friends