.turbo-progress-bar {
  background: linear-gradient(90deg, #ff6b6b, #feca57);
  height: 7px;
  border-radius: 8px;
  animation: color-change 1s infinite alternate;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
}

@keyframes color-change {
  from {
    background-color: red;
  }
  to {
    background-color: yellow;
  }
}