#countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#countdown {
    font-size: 3rem;
    font-weight: bold;
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(206, 156, 235, 0.2);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(162, 0, 255, 0.8);
    min-width: 80px;
}

.number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffcc00;
}

.label {
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
    margin-top: 5px;
}

@keyframes glowText {
    from {
        text-shadow: 0 0 10px #ff0000, 0 0 20px #ff7300;
    }
    to {
        text-shadow: 0 0 20px #ff7300, 0 0 30px #ff0000;
    }
}
