* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1e1e2f 0%, #121212 100%);
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 800px;
}

.logo {
    font-size: 2.5rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
    color: #4facfe;
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.content p {
    color: #b0b0b0;
    margin-bottom: 40px;
}

/* Countdown Styles */
#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #00f2fe;
}

/* Form Styles */
.notify-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

input[type="email"] {
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    outline: none;
    width: 250px;
}

button {
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    background: #4facfe;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background: #00f2fe;
    transform: translateY(-2px);
}