body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.countdown {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.countdown h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.countdown p {
    font-size: 1.5em;
    margin: 10px 0;
}

.countdown .time {
    font-size: 3em;
    font-weight: bold;
    color: #e74c3c;
}

#days, #seconds {
    font-size: 2.5em;
    font-weight: bold;
}

.countdown-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 30px 20px;
    min-width: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card span {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #3498db;
    letter-spacing: 2px;
}

.card .label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.1em;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Center logo above the heading */
#site-logo {
    position: static;
    display: block;
    margin: 0 auto 18px auto; /* center horizontally, space below */
    width: 140px;
    max-width: 22vw;
    height: auto;
    filter: none;
    z-index: 1;
}

/* adjust container spacing to accommodate logo */
.countdown-container {
    width: 100%;
    max-width: 880px;
    padding: 60px 24px 36px; /* reduced top padding */
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* responsive: smaller screens */
@media (max-width: 520px) {
    #site-logo {
        top: 12px;
        left: 12px;
        width: 100px;
        max-width: 40vw;
    }
    .theme-switcher {
        right: 12px;
        top: 80px;
    }
    .countdown-container {
        padding-top: 120px;
    }
}