.embed-loading {
  gap: 18px;
}
.embed-load-domain {
  margin: 0;
  font-size: clamp(1.15rem, 3.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #E5E7EB;
  line-height: 1.2;
}
.embed-load-domain-s {
  color: #3BD380;
}
.embed-load-progress {
  width: min(260px, 72vw);
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.embed-load-progress-bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3BD380 0%, #5FE8A0 100%);
  transition: none;
  will-change: width;
}
.embed-load-progress-bar.is-finishing {
  transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
