<!DOCTYPE html>
<html lang='de'>
<head>
    <meta charset='UTF-8'>
    <meta name='viewport' content='width=device-width, initial-scale=1.0'>
    <title>Deine IP-Adresse</title>
    <style>
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #121214;
            color: #e1e1e6;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }
        .container {
            text-align: center;
            background: #202024;
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }
        h1 { font-size: 1.2rem; color: #8257e5; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
        .ip { font-size: 2.5rem; font-weight: bold; font-family: monospace; color: #00e676; margin: 1rem 0; word-break: break-all; }
        .info { font-size: 0.9rem; color: #7c7c8a; }
    </style>
</head>
<body>
    <div class='container'>
        <h1>Deine öffentliche IP-Adresse</h1>
        <div class='ip'>216.73.216.82</div>
        <div class='info'>Protokoll: Nginx | Domain: ip.j6p.org</div>
    </div>
</body>
</html>
