body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #1a001a, #660066); /* Black to purple gradient */
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.coming-soon-container {
    max-width: 600px;
    padding: 40px;
    background-color: rgba(20, 0, 30, 0.5); /* Deep purple-black translucent */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
}

.email-signup {
    margin-top: 30px;
}

input[type="email"] {
    padding: 10px;
    width: 70%;
    max-width: 300px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

input[type="submit"] {
    padding: 10px 20px;
    background-color: #800080; /* Purple */
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #4b004b; /* Darker purple on hover */
}
