
#countdown {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    perspective: 1000px;
}

.time-section {
    text-align: center;
    margin: 0 10px;
   /* transform-style: preserve-3d;*/
}

.time {
    font-size: 24px;
    font-weight: bold;
    transform: rotateX(0deg);
    transition: transform 0.5s ease;
}

.label {
    font-size: 12px;
}

#close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    margin-left: 20px;
    cursor: pointer;
}

#countdown:hover .time {
    transform: rotateX(360deg);
}