<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Worship.com | Scheduled Maintenance</title>
    <meta name="robots" content="noindex, nofollow">

    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #ffffff;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .container {
            max-width: 700px;
            padding: 50px 35px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 18px;
            backdrop-filter: blur(10px);
            box-shadow: 0 15px 45px rgba(0,0,0,0.35);
        }

        .logo {
            font-size: 42px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 20px;
            color: #f8fafc;
        }

        .icon {
            width: 85px;
            height: 85px;
            margin: 0 auto 25px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon svg {
            width: 42px;
            height: 42px;
            stroke: #e2e8f0;
        }

        h1 {
            font-size: 34px;
            margin-bottom: 18px;
            color: #ffffff;
        }

        p {
            font-size: 18px;
            line-height: 1.7;
            color: #cbd5e1;
            margin-bottom: 16px;
        }

        .notice {
            margin: 28px 0;
            padding: 16px 20px;
            background: rgba(255,255,255,0.08);
            border-left: 4px solid #38bdf8;
            border-radius: 10px;
            text-align: left;
            color: #e2e8f0;
        }

        .status {
            display: inline-block;
            margin-top: 12px;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(56, 189, 248, 0.15);
            color: #7dd3fc;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.5px;
        }

        .footer {
            margin-top: 35px;
            font-size: 14px;
            color: #94a3b8;
        }

        @media (max-width: 640px) {
            .container {
                margin: 20px;
                padding: 40px 25px;
            }

            .logo {
                font-size: 34px;
            }

            h1 {
                font-size: 28px;
            }

            p {
                font-size: 16px;
            }
        }
    </style>
</head>
<body>

    <div class="container">
        <div class="logo">Worship.com</div>

        <div class="icon">
            <svg fill="none" viewBox="0 0 24 24" stroke-width="1.8">
                <path stroke-linecap="round" stroke-linejoin="round"
                      d="M11.25 3v2.25m0 13.5V21m8.25-9h-2.25M4.5 12H2.25m14.47-5.47-1.59 1.59M6.37 17.63l-1.59 1.59m0-12.69 1.59 1.59m10.34 10.34 1.59 1.59M12 8.25A3.75 3.75 0 1 1 8.25 12 3.75 3.75 0 0 1 12 8.25Z" />
            </svg>
        </div>

        <h1>We&rsquo;re Performing Scheduled Maintenance</h1>

        <p>
            Worship.com is currently undergoing scheduled maintenance and system improvements.
            We are working to enhance the performance, reliability, and security of our platform.
        </p>

        <div class="notice">
            <strong>What&rsquo;s happening?</strong><br>
            Our technical team is deploying updates and performing routine maintenance to ensure a better experience for all visitors.
        </div>

        <p>
            We expect the website to be available again shortly. Thank you for your patience and understanding while we complete this work.
        </p>

        <div class="status">Maintenance in progress</div>

        <div class="footer">
            &copy; 2026 Worship.com &mdash; All Rights Reserved
        </div>
    </div>

</body>
</html>