#helixDialogsRoot {
  position: fixed;
  inset: 0;
  z-index: 50000;
  pointer-events: none;
}

.helix-dialog-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(1px);
  pointer-events: auto;
  padding: 20px;
}

.helix-dialog-card {
  width: 100%;
  max-width: 500px;
  background: linear-gradient(180deg, #161616, #0f0f10);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
  padding: 20px 20px 18px 20px;
  color: #f1f1f1;
  position: relative;
  z-index: 50001;
}

.helix-dialog-title {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  line-height: 1.15;
  white-space: nowrap;
}

.helix-dialog-message {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
  margin-bottom: 14px;
}

.helix-dialog-field-wrap {
  margin-bottom: 16px;
}

.helix-dialog-input {
  width: 100%;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(232, 165, 76, 0.65);
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  padding: 0 16px;
  box-sizing: border-box;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.helix-dialog-input:focus {
  border-color: rgba(232, 165, 76, 0.95);
  box-shadow: 0 0 0 2px rgba(232, 165, 76, 0.08);
}

.helix-dialog-input::placeholder {
  color: rgba(255,255,255,0.28);
}

.helix-dialog-helper {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.helix-dialog-error {
  min-height: 18px;
  margin-top: 8px;
  font-size: 13px;
  color: #ff9b9b;
}

.helix-dialog-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.helix-dialog-btn {
  min-width: 136px;
  height: 48px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.helix-dialog-btn-primary {
  background: linear-gradient(180deg, #efc36f, #d68d3f);
  color: #111;
}

.helix-dialog-btn:disabled {
  opacity: 0.55;
  cursor: default;
}