Your Browser Is Currently Set To Block Cookies ((top)) May 2026
.enable-btn:hover { background: #f57c00; }
modal.innerHTML = ` <div style="background: white; border-radius: 12px; max-width: 450px; width: 90%; padding: 25px; box-shadow: 0 20px 60px rgba(0,0,0,0.3);"> <h3 style="margin-top: 0;">Enable Cookies in ${instructions.browser}</h3> <ol style="margin: 20px 0; padding-left: 20px;"> ${instructions.steps.map(step => `<li style="margin: 12px 0;">${step}</li>`).join('')} </ol> <div style="display: flex; justify-content: flex-end; gap: 10px;"> <button id="close-modal-btn" style="padding: 8px 16px; background: #2196f3; color: white; border: none; border-radius: 6px; cursor: pointer;">Got it</button> </div> </div> `; your browser is currently set to block cookies
if (userAgent.includes('chrome')) { return { browser: 'Chrome', steps: [ 'Click the lock icon 🔒 in the address bar', 'Go to "Site settings" or "Cookies"', 'Change "Cookies" setting to "Allow"', 'Refresh the page' ] }; } else if (userAgent.includes('firefox')) { return { browser: 'Firefox', steps: [ 'Click the shield icon 🛡️ in the address bar', 'Toggle off "Enhanced Tracking Protection" for this site', 'Or click "Clear cookies and site data"', 'Refresh the page' ] }; } else if (userAgent.includes('safari')) { return { browser: 'Safari', steps: [ 'Go to Safari > Preferences > Privacy', 'Uncheck "Block all cookies"', 'Under "Cookies and website data", select "Allow"', 'Refresh the page' ] }; } else if (userAgent.includes('edge')) { return { browser: 'Edge', steps: [ 'Click the lock icon 🔒 in the address bar', 'Go to "Cookies"', 'Change to "Allow"', 'Refresh the page' ] }; } else { return { browser: 'your browser', steps: [ 'Open browser settings', 'Search for "cookies"', 'Enable cookies for this site', 'Refresh the page' ] }; } } .enable-btn:hover { background: #f57c00