.timer_block{
  padding: 50px 0; 
  box-sizing: border-box;  
  text-align: right;
} 



.timer {
   width: 100%; 
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
 padding: 40px 15px;
  border-radius: 14px;
  background: #1A1A1A;
  backdrop-filter: blur(6px);
  color: #fff;
     box-shadow: 0px 3px 11px #00bfbf; 
}

.timer__label {
 font-size: 20px;
text-transform: uppercase;
letter-spacing: .06em;
 font-weight: 700;
}

.timer__value {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.timer__phase {
  font-size: 13px;
  opacity: .9;
}

.timer--buy .timer__label { color: #00bfbf; }       /* зелёный */
.timer--waiting .timer__label { color: #e03c61; }   /* оранжевый */

.timer--waiting .timer__value {
  animation: pulse 1s infinite; /* мигаем последнюю минуту */
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: .75; }
  100% { transform: scale(1); opacity: 1; }
}
