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

body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    text-align: center;
}

.container {
    background: rgba(0,0,0,0.5);
    padding: 40px;
    border-radius: 12px;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 1.5em;
}

#countdown div {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
}

#subscribe-form input {
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-right: 10px;
}

#subscribe-form button {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    background: #ff4b2b;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

#subscribe-form button:hover {
    background: #ff416c;
}
