@import url('https://fonts.googleapis.com/css2?family=Saira+Extra+Condensed:wght@200&display=swap');

#countdown {
    display: inline-block;
    background: radial-gradient(ellipse at center, #e8e8e8 0%, #c8c8c8 100%);
    padding: 32px 40px 36px;
    border-radius: 12px;
    text-align: center;
    font-family: 'Saira Extra Condensed', Arial, Helvetica, sans-serif;
}
#countdown-timer {
    position: absolute;
    top: 15%;
    left: 13.5%;
    font-size: max(1.8vw, 17px);
}

.countdown-title {
    color: #cc0000;
    font-size: 1em;
    font-weight: 200;
    text-align: center;
    margin-bottom: 0.5em;
    line-height: 1;
}

.countdown-tiles {
    display: flex;
    gap: 0.35em;
    justify-content: center;
    align-items: flex-start;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15em;
}

.countdown-tile {
    width: 1.1em;
    height: 1.1em;
    background: #e00918;
    border-radius: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 100;
    font-family: 'Saira Extra Condensed', 'Open Sans', Arial, Helvetica, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Gloss highlight */
.countdown-tile::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    right: 0;
    height: 90%;
    background: linear-gradient(-45deg, rgba(255, 255, 255, 0) 53%, rgba(255, 255, 255, 1) 100%);
    border-radius: 10%;
    pointer-events: none;
    width: 90%;
    opacity: 0.7;
}

.countdown-label {
    color: #cc0000;
    font-size: 0.35em;
    line-height: 1em;
    text-transform: uppercase;
}

.countdown-finished {
    color: #cc0000;
    font-size: 1.6em;
    font-weight: 700;
    padding: 0.35em;
}

@media screen and (max-width: 768px) {
    #countdown-timer {
        font-size: 3.8vw;
    }
}