/**
 * Countdown Clock Styles
 * Modeled after the "premium" design in the reference screenshot.
 */

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
}

.countdown-unit {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

/* No decorative brackets as requested */

.countdown-box {
    background: linear-gradient(135deg, #2c2520 0%, #1a1512 100%);
    border: 1px solid #3d352e;
    border-radius: 8px;
    padding: 0.25rem 1rem;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #f0e6d2;
    /* Off-white/cream */
    line-height: 1;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #8c7a66;
    /* Muted bronze */
    letter-spacing: 0.1em;
}

/* Responsive adjustments */
@media screen and (max-width: 736px) {
    .countdown-container {
        gap: 0.75rem;
    }

    .countdown-unit {
        min-width: 70px;
    }

    .countdown-number {
        font-size: 1.25rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
}

@media screen and (max-width: 480px) {
    .countdown-container {
        flex-wrap: wrap;
    }
}