.vt-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 10, 9, 0.72);
}

.vt-modal[hidden] {
  display: none;
}

.vt-modal-box {
  position: relative;
  width: min(420px, 100%);
  padding: 28px 24px 22px;
  border-radius: 22px;
  border: 1px solid rgba(212, 181, 106, 0.28);
  background: linear-gradient(180deg, #141816, #0e1210);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  color: var(--text, #f3efe6);
}

.vt-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--muted, #9aa39c);
  font-size: 22px;
  line-height: 1;
}

.vt-modal-close:hover {
  color: var(--text, #f3efe6);
}

.vt-modal-box h3 {
  font-family: Outfit, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.vt-progress-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 14px;
}

.vt-progress {
  flex: 1;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.vt-progress-bar {
  position: relative;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #c9a45a, #ecd9a0);
  transition: width 0.2s linear;
}

.vt-progress-bar.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
  animation: vtSheen 1.1s ease-in-out infinite;
}

.vt-progress-pct {
  flex-shrink: 0;
  min-width: 2.6em;
  color: var(--gold, #d4b56a);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: right;
}

@keyframes vtSheen {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
  .vt-progress-bar.is-active::after {
    animation: none;
  }
}

.vt-status-text,
.vt-modal-box p {
  color: #c5cdc7;
  font-size: 14.5px;
  line-height: 1.5;
}

.vt-modal-box p + p {
  margin-top: 10px;
}

.vt-modal-box a {
  color: var(--gold, #d4b56a);
  text-decoration: underline;
  text-underline-offset: 3px;
}
