
    <!DOCTYPE html>
    <html lang="de">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>wippaunig.at</title>
        <style>
            body { 
                background-color: black; 
                color: #FF9900; 
                font-family: "Arial Sans", sans-serif; 
                text-transform: uppercase; 
                margin: 0; 
                display: flex; 
                justify-content: center; 
                align-items: center; 
                height: 100vh; 
            }
            .content { 
                text-align: center;
                padding: 40px;
                border: 1px solid #333; /* Dezenter Rahmen statt Balken */
                border-radius: 20px;
            }
            h1 { 
                color: #99CCFF; 
                font-size: 3rem; 
                margin: 0 0 20px 0; 
                letter-spacing: 6px; 
            }
            p { 
                color: #FF9900; 
                font-size: 1.3rem; 
                line-height: 1.6; 
                margin-bottom: 50px; 
                max-width: 600px; 
            }
            .status-badge { 
                display: inline-flex; 
                align-items: center; 
                background-color: #111; 
                padding: 15px 35px; 
                border-radius: 40px; 
                border: 2px solid #00FF00; 
                color: #00FF00; 
                font-weight: bold; 
                letter-spacing: 2px;
            }
            .status-dot { 
                width: 16px; 
                height: 16px; 
                background-color: #00FF00; 
                border-radius: 50%; 
                margin-right: 20px; 
                box-shadow: 0 0 12px #00FF00; 
                animation: blink 2s infinite;
            }
            @keyframes blink {
                0% { opacity: 1; }
                50% { opacity: 0.4; }
                100% { opacity: 1; }
            }
        </style>
    </head>
    <body>
        <div class="content">
            <h1>WIPPAUNIG.AT</h1>
            <p>Dieses System wird derzeit gewartet oder ist nur für private Zwecke konfiguriert.</p>
            <div class="status-badge">
                <div class="status-dot"></div>
                SYSTEM ONLINE
            </div>
        </div>
    </body>
    </html>