/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #f06, #f90);
    color: #fff;
    text-align: center;
}

.coming-soon-container {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.coming-soon-container h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.coming-soon-container p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

#countdown {
    font-size: 2em;
    margin: 20px 0;
}

.notify-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.notify-form input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
}

.notify-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #f06;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
}

.notify-form button:hover {
    background: #d04;
}
