.bra-countdown-eclipse {
    display: flex;
    justify-content: center;
    width: 100%;
}

.bra-cd-block {
    text-align: center;
    position: relative;
    margin: 0 5px;
}

.bra-cd-value {
    background: #111;
    color: #f5c542;
    font-size: 1.8rem;
    font-weight: 600;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid #f5c542;
    box-shadow: 0 0 20px rgba(245,197,66,0.4);
    transition: all 0.3s ease;
}

.bra-cd-label {
    margin-top: 10px;
    font-size: 0.9rem;
	font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #AAA;
}

.bra-flip {
    transform: translateY(-6px);
    opacity: 0.6;
}

.bra-cd-during .bra-cd-value {
    box-shadow: 0 0 25px 5px rgba(245,197,66,0.7),
                0 0 50px 10px rgba(245,197,66,0.4);
    transform: scale(1.05);
    transition: all 0.5s ease;
}

.bra-cd-phase-text {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #f5c542;
}

@media (max-width: 600px) {
    .bra-cd-value {
        width: 80px;
        height: 80px;
        font-size: 1.6rem;
    }
}