
        <!DOCTYPE html>
        <html lang="de">
        <head>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <title>Umleitung</title>
            <style>
                @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

                body {
                    margin: 0;
                    padding: 0;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    height: 100vh;
                    font-family: "Poppins", sans-serif;
                    color: #ffffff;
                    background: url("https://i.imgur.com/9slUsac.png") no-repeat center center/cover;
                    text-align: center;
                }

                .container {
                    background: rgba(0, 0, 0, 0.7);
                    padding: 20px 40px;
                    border-radius: 10px;
                }

                .container img {
                    width: 100px;
                    margin-bottom: 20px;
                }

                .container h1 {
                    font-size: 2.5rem;
                    margin-bottom: 20px;
                }

                .container p {
                    font-size: 1.2rem;
                    line-height: 1.5;
                }

                .container a {
                    color: #00ffcc;
                    font-weight: 600;
                    text-decoration: none;
                }

                #countdown {
                    font-size: 1.5rem;
                    margin-top: 10px;
                }

                footer {
                    position: absolute;
                    bottom: 10px;
                    font-size: 0.9rem;
                }

                footer a {
                    color: #00ffcc;
                    text-decoration: none;
                }
            </style>
            <script>
                let countdown = 10;
                const timer = setInterval(() => {
                    document.getElementById("countdown").textContent = countdown;
                    countdown--;
                    if (countdown < 0) {
                        clearInterval(timer);
                        window.location.href = "https://pv-q.de";
                    }
                }, 1000);
            </script>
        </head>
        <body>
            <div class="container">
                <img src="https://i.imgur.com/gs7ICm1.png" alt="Icon">
                <h1>Zeit für was neues!</h1>
                <p>Wir haben uns entschieden, dass unser Panel nun über eine neue Domain erreichbar ist.<br>
                Mehr dazu auf unserem Discord Server unter <a href="https://discordapp.com/channels/1238482727477579806/1239660479291330632/1312165042849972356" target="_blank"><strong>#infos</strong></a>.</p>
                <p>Du wirst in <span id="countdown">10</span> Sekunden auf die neue Seite weitergeleitet.<br>
                <a href="https://pv-q.de">panel.pavl21.de → pv-q.de</a></p>
            </div>
            <footer>
                <a href="https://pv-q.de/impressum" target="_blank">Impressum</a>
            </footer>
        </body>
        </html>