<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Site Maintenance</title>
    <style>
        body {
            font-family: sans-serif;
            text-align: center;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4; /* Light grey background */
            color: #333; /* Dark grey text */
        }

        header {
            background-color: #876bb8; /* Purple header */
            color: white;
            padding: 20px 0;
            margin-bottom: 20px;
        }

        main {
            padding: 50px 20px;
        }

        footer {
            background-color: #ecf0f1; /* Lighter grey footer */
            padding: 20px 0;
            position: fixed;
            bottom: 0;
            width: 100%;
        }

        h1 {
            color: #2c3e50; /* Darker blue heading */
        }

        p {
            font-size: 1.1em;
            line-height: 1.6;
        }

        .adsense-container {
            margin-top: 30px;
        }

    </style>
    <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8696469560648595" crossorigin="anonymous"></script>
</head>
<body>

    <header>
        <h1>Site Maintenance</h1>
    </header>

    <main>
        <h1>We're still performing maintenance.</h1>
        <p>We'll be back shortly. Thank you for your patience.</p>

        <div class="adsense-container">
            <ins class="adsbygoogle"
                 style="display:block"
                 data-ad-client="ca-pub-8696469560648595"
                 data-ad-slot="5364969041"
                 data-ad-format="auto"
                 data-full-width-responsive="true"></ins>
            <script>
                 (adsbygoogle = window.adsbygoogle || []).push({});
            </script>
        </div>

    </main>

    <footer>
        <p>&copy; 2026 Warped Systems. All rights reserved.</p>
    </footer>

</body>
</html>
