.jump-load {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(56, 189, 220, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(14, 116, 144, 0.18), transparent 50%),
    linear-gradient(180deg, #07101c 0%, #04080f 100%);
  color: #e8f4ff;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.jump-load.is-on {
  opacity: 1;
  pointer-events: auto;
}

.jump-load[hidden] {
  display: none !important;
}

.jump-load__card {
  width: min(420px, 92vw);
  text-align: center;
}

.jump-load__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: rgba(125, 211, 252, 0.55);
  text-transform: uppercase;
}

.jump-load__title {
  margin: 0 0 22px;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #f0f8ff;
}

.jump-load__status {
  margin: 0 0 18px;
  min-height: 1.4em;
  font-size: clamp(15px, 2.6vw, 18px);
  letter-spacing: 0.12em;
  color: #7dd3fc;
}

.jump-load__bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.12);
  overflow: hidden;
  margin-bottom: 20px;
}

.jump-load__bar-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #38bdf8, #a5f3fc);
  box-shadow: 0 0 16px rgba(56, 189, 220, 0.55);
  transition: width 0.45s ease;
}

.jump-load__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  text-align: left;
}

.jump-load__steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(125, 211, 252, 0.12);
  background: rgba(8, 20, 36, 0.55);
  color: rgba(186, 230, 253, 0.45);
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.jump-load__steps li.is-done {
  color: rgba(186, 230, 253, 0.82);
  border-color: rgba(125, 211, 252, 0.22);
}

.jump-load__steps li.is-active {
  color: #e8f8ff;
  border-color: rgba(125, 211, 252, 0.5);
  background: rgba(14, 48, 72, 0.72);
  box-shadow: 0 0 24px rgba(56, 189, 220, 0.18);
}

.jump-load__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(125, 211, 252, 0.25);
  box-shadow: none;
}

.jump-load__steps li.is-done .jump-load__dot {
  background: #38bdf8;
}

.jump-load__steps li.is-active .jump-load__dot {
  background: #fff;
  box-shadow: 0 0 10px rgba(125, 211, 252, 0.95);
  animation: jump-load-pulse 1.1s ease-in-out infinite;
}

@keyframes jump-load-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.25); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .jump-load,
  .jump-load__bar-fill,
  .jump-load__steps li,
  .jump-load__steps li.is-active .jump-load__dot {
    transition: none !important;
    animation: none !important;
  }
}
