 /* ====== MODERN COUNTDOWN ====== */
.countdown-container {
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 20px;
    margin: 20px auto;
    max-width: 700px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
}

.countdown-title {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    /* margin-top: 10px; */
}

.countdown-item {
    width: 80px;
    height: 80px;
    perspective: 1000px;
}

.countdown-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: var(--transition);
}

.countdown-face {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-light);
    backface-visibility: hidden;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-top: 5px;
}
.countdown-separator{
    display: flex;
    align-items:center;
}

@media (max-width: 768px) {        
    .countdown-item {
        width: 70px;
        height: 70px;
    }
    
    .countdown-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {   
    .countdown-grid {
        gap: 10px;
    }
    
    .countdown-item {
        width: 60px;
        height: 60px;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
}

.short-label {
    display: none;
}

/* On mobile screens, show short labels and hide full labels */
@media (max-width: 768px) {
    .full-label {
        display: none;
    }
    .short-label {
        display: inline;
    }
}