* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.countdown-title-text {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.countdown-boxes-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Blue Box, Orange Text, Labels on Top */
.time-unit {
    display: flex;
    flex-direction: column-reverse; /* Places label above number */
    align-items: center;
    justify-content: center;
    background-color: #1d4ed8;     /* Blue Box */
    color: #ff6b00;                /* Orange Text */
    min-width: 65px;
    padding: 10px 12px;
    border-radius: 8px;
    text-align: center;
}

.time-unit .value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ff6b00;
}

.time-unit .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ff6b00;
    margin-bottom: 4px;
    font-weight: 600;
}
