/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-image: url('./bg.png'); /* Replace with your background image */
    background-size: cover;
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
    padding: 40px;
    background: #252525;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 3em;
    font-weight: bold;
    color: #ffd700; /* Gold-like color for emphasis */
    margin-bottom: 20px;
}

.headline {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.sub-headline {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 40px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-box span {
    font-size: 3em;
    font-weight: bold;
    color: #ffd700;
}

.timer-box label {
    font-size: 1em;
    text-transform: uppercase;
    margin-top: 5px;
    color: #aaa;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.subscribe-form input[type="email"] {
    padding: 15px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
    background: #333;
    color: #f0f0f0;
}

.subscribe-form button {
    padding: 15px 30px;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    background-color: #ffd700;
    color: #1a1a1a;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #ffc000;
}

footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #777;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    .logo {
        font-size: 2em;
    }
    .headline {
        font-size: 1.8em;
    }
    .sub-headline {
        font-size: 1em;
    }
    .countdown-timer {
        gap: 10px;
    }
    .timer-box span {
        font-size: 2em;
    }
    .subscribe-form {
        flex-direction: column;
        align-items: center;
    }
    .subscribe-form input[type="email"] {
        width: 100%;
        max-width: none;
    }
}