.timer-panel {
  margin: 0 0 10px;
  padding: 9px 12px;
  border: 1px solid #5f699f;
  border-radius: 13px;
  background: #090e25;
}

.timer-panel > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #abb3d1;
  font-size: 10px;
  font-weight: 900;
}

.timer-panel strong {
  min-width: 35px;
  color: #f2d174;
  font-size: 24px;
  line-height: 1;
}

.timer-panel small { color: #8e98bd; }

.timer-track {
  height: 5px;
  margin-top: 8px;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: #ffffff14;
  direction: ltr;
}

.timer-track b {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #7759d8, #e5c15d);
  transform-origin: left center;
  transition: transform .1s linear;
}

.timer-panel.warning { border-color: #d5a94b; }
.timer-panel.warning strong { color: #ffca5d; }
.timer-panel.critical { border-color: #d96c6c; background: #2b101c; }
.timer-panel.critical strong { color: #ff7d7d; }

@media (max-width: 560px) {
  .timer-panel { margin-bottom: 7px; padding: 7px 10px; }
  .timer-panel strong { font-size: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  .timer-track b { transition: none; }
}
