
                <html>
                        <head>
                        <title>IP</title>
                        <meta name='viewport' content='width=device-width, initial-scale=1'>
                        </head>
                <body style='font-family:sans-serif; display:flex; flex-direction:column; align-items:center; justify-content:center; height:100vh; margin:0; background:#f5f5f7;'>
                        <h1 style='color:#1d1d1f; margin-bottom:10px;'>IP</h1>
                        <div id='ip' style='font-size:3rem; font-weight:bold; color:#0066cc; margin-bottom:20px;'>216.73.216.110</div>
                        <div style='display: flex; gap: 10px;'>
                        <button onclick='copyIp()' style='padding:12px 24px; font-size:1rem; cursor:pointer; background:#0071e3; color:white; border:none; border-radius:8px; transition: 0.2s;'>
                                Copy
                        </button>

                        <button onclick='window.location.reload();' style='padding:12px 24px; font-size:1rem; cursor:pointer; background:#8e8e93; color:white; border:none; border-radius:8px; transition: 0.2s;'>
                                Refresh
                        </button>
                        </div>

                        <script>
                                function copyIp() {
                                const ip = document.getElementById('ip').innerText;
                                navigator.clipboard.writeText(ip).then(() => {
                                const btn = document.querySelector('button'); // Находит первую кнопку (Copy)
                                const originalText = btn.innerText;
                                btn.innerText = 'Copied!';
                                btn.style.background = '#34c759';
                                setTimeout(() => {
                                btn.innerText = originalText;
                                btn.style.background = '#0071e3';
                                }, 2000);
                                });
                        }
                        </script>
                </body>
                </html>
                