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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0a0a, #1f1f1f);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    overflow: hidden;
}

.container {
    animation: fadeIn 1.5s ease-in-out;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

h2 {
    font-size: 2rem;
    color: #00ff88;
}

p {
    margin: 15px 0;
    font-size: 1.1rem;
}

#countdown {
    font-size: 1.5rem;
    margin: 20px 0;
    font-weight: bold;
    color: #00ff88;
}

.subscribe-form {
    margin: 20px 0;
}

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

.subscribe-form button {
    padding: 10px 20px;
    border: none;
    background: #00ff88;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.subscribe-form button:hover {
    background: #00cc6e;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

  