
<style>
#transfer-bg {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9997;
    background: url("/img-back-k.webp") center center / cover no-repeat;
}
#transfer-bg::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(0,0,0,0.35);
}
#transfer-banner {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    padding: 40px 50px;
    z-index: 9999;
    max-width: 500px;
    width: 90%;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #fff;
}
</style>

<div id="transfer-bg"></div>

<div id="transfer-banner">
    <p style="margin:0 0 24px 0; font-size:22px; font-weight:700; text-shadow:0 2px 8px rgba(0,0,0,0.5);">
       Перейти на сайт?
    </p>
    <button onclick="goToMainSite()" style="padding:14px 40px; background:#228CA8; color:white; border:none; border-radius:8px; font-size:17px; cursor:pointer; box-shadow:0 4px 15px rgba(0,0,0,0.3);">
        → ВХОД НА САЙТ →
    </button>
    <p id="timer" style="margin:20px 0 0 0; font-size:14px; color:rgba(255,255,255,0.75);">
        Автоматически закроется через <span id="seconds">15</span> сек...
    </p>
</div>

<script>
let timeLeft = 15;
const timerEl = document.getElementById("seconds");
const banner = document.getElementById("transfer-banner");
const bg = document.getElementById("transfer-bg");

function startTimer() {
    banner.style.display = "block";
    bg.style.display = "block";
    const interval = setInterval(() => {
        timeLeft--;
        timerEl.textContent = timeLeft;
        if (timeLeft <= 0) {
            clearInterval(interval);
            closeBanner();
        }
    }, 1000);
}
function goToMainSite() {
    window.location.href = "https://m-slon4.lat" + window.location.pathname;
}
function closeBanner() {
    banner.style.display = "none";
    bg.style.display = "none";
}
window.addEventListener("load", () => {
    setTimeout(startTimer, 750);
});
</script>
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://slon4-at-4at.ru/</loc>
    <lastmod>2026-06-29</lastmod>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
</urlset>
