.footer-running-time {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 15px 0;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(90deg, #ffc0fa, #f375f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  transition: all 0.3s ease;
  position: relative;
}

.footer-running-time::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.footer-running-time i.fas.fa-hourglass {
  font-size: 20px;
  margin-right: 6px;
  color: #ffffff;
  background: #ffc0cb;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  animation: bounce 1.2s infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.05);
  }
}