* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f7fa;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-box {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 50px 40px;
    text-align: center;
    backdrop-filter: blur(5px);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #7f8c8d;
}

.coming-soon {
    display: inline-block;
    background: linear-gradient(90deg, #4A89DC 0%, #00A5E3 100%);
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    margin: 20px 0;
    letter-spacing: 2px;
}

.description {
    font-size: 1.1rem;
    color: #555;
    margin: 0 auto 40px;
    max-width: 600px;
    line-height: 1.8;
}

.notification {
    background-color: rgba(236, 240, 241, 0.8);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
}

.notification h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 30px 0 0 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

input[type="email"]:focus {
    border-color: #4A89DC;
    box-shadow: 0 0 0 2px rgba(74, 137, 220, 0.2);
}

button {
    background: linear-gradient(90deg, #4A89DC 0%, #00A5E3 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

button:hover {
    background: linear-gradient(90deg, #3a79cc 0%, #0095d3 100%);
    transform: translateY(-2px);
}

.hidden {
    display: none;
}

#thank-you {
    margin-top: 15px;
    color: #27ae60;
    font-weight: 600;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    form {
        flex-direction: column;
    }
    
    input[type="email"] {
        border-radius: 30px;
        margin-bottom: 10px;
    }
    
    button {
        border-radius: 30px;
    }
}