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

body {
    font-family: 'Fredoka', sans-serif;
    background: linear-gradient(135deg, #e0f7ff 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.logo {
    max-width: 300px;
    margin-bottom: 2rem;
}

h1 {
    color: #0066cc;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tagline {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.description {
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.description p {
    margin-bottom: 1rem;
}

.notify-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.notify-box p {
    color: #333;
    margin-bottom: 1rem;
}

.notify-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

input[type="email"] {
    padding: 0.8rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    min-width: 250px;
    outline: none;
    transition: border-color 0.3s;
}

input[type="email"]:focus {
    border-color: #0066cc;
}

button {
    background: linear-gradient(45deg, #00cc66, #0066cc);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

button:hover {
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .notify-form {
        flex-direction: column;
        align-items: center;
    }
    
    input[type="email"] {
        width: 100%;
    }
} 