#thxpcw-progress-bar {
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  z-index: 999999;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, #0f766e 0%, #06b6d4 100%);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
  transition: width 0.9s ease, opacity 0.25s ease;
}

#thxpcw-progress-bar.is-active {
  opacity: 1;
  width: 88%;
}

