/* Basic Reset and Variables */
body, html {
    margin: 0;
    padding: 0;
    font-family: sans-serif; /* Use your preferred font */
    background-color: #f0f4f8; /* Light background */
    color: #333;
    height: 100%;
}

:root {
    --primary-color: #007bff; /* Main brand color */
    --text-dark: #333;
    --text-light: #555;
}

/* Center Content on the Page */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

/* Header/Logo */
.logo {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Main Message/Hero */
.hero h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.hero p {
    font-size: 1.1em;
    max-width: 600px;
    margin-bottom: 40px;
    color: var(--text-light);
}

/* Countdown Section */
.countdown {
    margin: 30px 0;
}

.countdown h3 {
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-light);
}

#countdown-timer {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.time-block span {
    font-size: 3em;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.time-block label {
    font-size: 0.8em;
    text-transform: uppercase;
    margin-top: 5px;
    color: var(--text-light);
}

/* Footer */
footer {
    width: 100%;
    margin-top: 40px;
}

footer p {
    font-size: 0.9em;
    color: #999;
}