.countdown-wrapper {
    margin-top: 30px;
    text-align: center;
}
.countdown-title {
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #f0f0f0;
    text-transform: uppercase;
}
.countdown-grid {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.countdown-box {
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid #ff2e2e;
    box-shadow: 0 0 15px #ff2e2e66;
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 80px;
}
.countdown-box .count-number {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
}
.countdown-box .count-label {
    font-size: 12px;
    color: #ffbbbb;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
