// Check if the website is being loaded within an iframe
if (window !== window.parent) {
// Website is being loaded within an iframe (e.g., Instagram in-app browser)
// Redirect to the same URL in the top-level window
window.top.location.href = window.location.href;
}