.Timer_timer__viBwW {
  width: 100%;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.Timer_progressBarWrapper__NERca {
  width: 100%;
  height: 0.5rem;
  background: var(--sub-color);
  border-radius: 0.25rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.Timer_progressBar___2Mf_ {
  height: 100%;
  border-radius: 0.25rem;
  transition: width 0.3s ease, background 0.3s ease;
  background: linear-gradient(90deg, var(--accent-color), var(--positive-color));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.Timer_timerText__PezXW {
  display: block;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  height: 2.5rem;
  line-height: 2.5rem;
  min-width: 4rem;
  transition: all 0.2s ease;
  color: var(--text-color);
  font-family: 'Roboto Mono', monospace;
}

.Timer_danger__OzWfQ {
  color: var(--negative-color);
  font-size: 1.75rem;
  animation: Timer_pulse__2KCT8 0.6s infinite alternate;
  text-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
}

@keyframes Timer_pulse__2KCT8 {
  0% { 
    transform: scale(1);
    opacity: 1;
  }
  100% { 
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* 响应式调整 */
@media (max-width: 768px) {
  .Timer_timer__viBwW {
    padding: 0 1rem;
    margin-bottom: 0.75rem;
  }
  
  .Timer_timerText__PezXW {
    font-size: 1.1rem;
    height: 2.2rem;
    line-height: 2.2rem;
  }
  
  .Timer_danger__OzWfQ {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .Timer_timer__viBwW {
    padding: 0 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .Timer_timerText__PezXW {
    font-size: 1rem;
    height: 2rem;
    line-height: 2rem;
  }
  
  .Timer_danger__OzWfQ {
    font-size: 1.25rem;
  }
}

