* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 500px;
    padding: 2rem;
}

.logo {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

p {
    font-size: 1.1rem;
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 10px;
    background: #dfe6e9;
    border-radius: 5px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 65%; /* Change this to show current progress */
    background: #0984e3;
    border-radius: 5px;
    transition: width 0.5s ease-in;
}

/* Form Styles */
.notify-me {
    display: flex;
    gap: 10px;
}

input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

button {
    padding: 12px 25px;
    background-color: #2d3436;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

button:hover {
    background-color: #0984e3;
}

.footer {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #b2bec3;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .notify-me {
        flex-direction: column;
    }
    h1 {
        font-size: 1.8rem;
    }
}