<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Coming Soon</title>
    <style>
        /* Base page resets */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            /* Uses your existing dark background image */
            background: url('body.jpg') no-repeat center center fixed;
            background-size: cover;
            color: #ffffff;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            overflow: hidden;
        }

        /* Frosted glass content card */
        .container {
            text-align: center;
            max-width: 500px;
            padding: 2.5rem;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            margin: 20px;
        }

        /* Text formatting */
        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ffffff, #a3a3a3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        p {
            font-size: 1.05rem;
            color: #b3b3b3;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        /* Subscription email layout */
        .cta-form {
            display: flex;
            gap: 10px;
            width: 100%;
        }
        input[type="email"] {
            flex: 1;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(0, 0, 0, 0.4);
            color: #ffffff;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s;
        }
        input[type="email"]:focus {
            border-color: #ffffff;
        }
        button {
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            border: none;
            background: #ffffff;
            color: #000000;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: opacity 0.2s;
        }
        button:hover {
            opacity: 0.9;
        }
    </style>
</head>
<body>

    <div class="container">
        <h1>Something is brewing.</h1>
        <p>Our new digital space is currently under construction. Leave your email address below to be the first to know when we launch.</p>
        
        <form class="cta-form" action="#" method="POST">
            <input type="email" placeholder="Enter your email" required>
            <button type="submit">Notify Me</button>
        </form>
    </div>

</body>
</html>
