body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
}

body {
    background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3') center/cover no-repeat; /* Replace with your own background image */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
}

.container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    color: white;
    padding: 2rem;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Countdown Styles */
#countdown {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

#countdown div {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    min-width: 100px;
    backdrop-filter: blur(10px);
}

#countdown span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.label {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Styles */
#notify-form {
    display: flex;
    max-width: 500px;
    width: 100%;
    gap: 10px;
}

#email {
    flex-grow: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

button {
    padding: 15px 30px;
    background-color: #ffcc00; /* Your brand color */
    color: #333;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e6b800;
}

#message {
    margin-top: 1rem;
    height: 1.5rem;
}