
    <!DOCTYPE html>
    <html lang="de">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Obey The Lady - Coming Soon</title>
        <style>
            body { 
                font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; 
                background-color: #121212; 
                color: #ffffff; 
                display: flex; 
                justify-content: center; 
                align-items: center; 
                height: 100vh; 
                margin: 0; 
                text-align: center; 
            }
            .container { padding: 20px; }
            
            .logo {
                max-width: 450px; /* Macht den eleganten Schriftzug gut lesbar */
                width: 100%;
                height: auto;
                margin-bottom: 20px;
            }

            p { 
                font-size: 1.2rem; 
                color: #b0b0b0; 
                letter-spacing: 2px; 
                text-transform: uppercase;
                margin-top: 10px;
            }
        </style>
    </head>
    <body>
        <div class="container">
            <!-- Das Logo wird direkt über den gemappten Pfad gezogen -->
            <img src="/var/www/images/obeythelady_logo.png" alt="Obey The Lady Logo" class="logo">
            <p>Under Construction</p>
        </div>
    </body>
    </html>
    